@prefix bob: <http://data.ashrae.org/standard223/si-builder#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix ex1: <http://data.ashrae.org/standard223/data/scb-vrf#> .
@prefix ns1: <http://www.linkedmodel.org/schema/vaem#> .
@prefix ns2: <http://www.linkedmodel.org/schema/dtype#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix quantitykind: <http://qudt.org/vocab/quantitykind/> .
@prefix qudt: <http://qudt.org/schema/qudt/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@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 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/data/scb-vrf> ;
                    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/data/scb-vrf> ;
                    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/data/scb-vrf> ;
                    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/data/scb-vrf> ;
                    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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 ] .

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,
        ns2: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 ;
    ns1: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,
        ns2: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,
        ns2:Enumeration ;
    sh:class ns2: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns2: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 .

sh:AbstractResult a rdfs:Class ;
    rdfs:label "Abstract result"@en ;
    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 ;
    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 ;
    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 ;
    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 ;
    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 ;
    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 ;
    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 ;
    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 ;
    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 .

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/data/scb-vrf> ;
            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: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 <http://data.ashrae.org/bacnet/2020#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 <http://data.ashrae.org/bacnet/2020#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 <http://data.ashrae.org/bacnet/2020#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 <http://data.ashrae.org/bacnet/2020#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 <http://data.ashrae.org/bacnet/2020#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 <http://data.ashrae.org/bacnet/2020#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 <http://data.ashrae.org/bacnet/2020#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/data/scb-vrf> ;
            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/data/scb-vrf> ;
            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: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/data/scb-vrf> ] ;
    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/data/scb-vrf> ] ;
    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/data/scb-vrf> ],
        [ 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/data/scb-vrf> ],
        [ 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/data/scb-vrf> ],
        [ 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/data/scb-vrf> ],
        [ 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/data/scb-vrf> ],
        [ 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/data/scb-vrf> ],
        [ 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/data/scb-vrf> ],
        [ 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/data/scb-vrf> ],
        [ 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/data/scb-vrf> ],
        [ 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/data/scb-vrf> ] ;
    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/data/scb-vrf> ] ;
    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/data/scb-vrf> ],
        [ 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/data/scb-vrf> ],
        [ 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/data/scb-vrf> ],
        [ 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/data/scb-vrf> ],
        [ 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/data/scb-vrf> ] ;
    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/data/scb-vrf> ;
                    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 ( quantitykind: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/data/scb-vrf> ] ;
    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 ( quantitykind: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/data/scb-vrf> ;
            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/data/scb-vrf> ],
        [ 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/data/scb-vrf> ] ;
    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: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: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 quantitykind: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 ( quantitykind:RelativeHumidity quantitykind: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 ( quantitykind: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/data/scb-vrf> ;
            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:Luminaire a s223:Class,
        sh:NodeShape ;
    rdfs:label "Luminaire"^^xsd:string ;
    rdfs:comment "A piece of `Equipment` consisting of a light source(s) and ballast(s) or driver(s) (when applicable), together with the parts designed to distribute the light, to position and protect the light source(s), and to connect the light source(s) to the power supply. Also known as a light fixture."^^xsd:string ;
    rdfs:subClassOf s223:Equipment ;
    sh:property [ rdfs:comment "A `Luminaire` shall have at least one inlet using the medium `Constituent-Electricity`."^^xsd:string ;
            sh:message "s223: A `Luminaire` 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 `Luminaire` shall have at least one outlet using the medium `EM-Light`."^^xsd:string ;
            sh:message "s223: A `Luminaire` shall have at least one outlet using the medium `EM-Light`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:OutletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:EM-Light ;
                                    sh:path s223:hasMedium ] ] ] ] .

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 ( quantitykind:Population ) ;
                            sh:maxCount 1 ;
                            sh:path qudt:hasQuantityKind ],
                        [ sh:in ( unit:NUM ) ;
                            sh:maxCount 1 ;
                            sh:path qudt:hasUnit ] ] ;
            sh:path s223:observes ] .

s223:OccupantMotionSensor a s223:Class,
        sh:NodeShape ;
    rdfs:label "Occupant motion sensor"^^xsd:string ;
    rdfs:comment "An `OccupancySensor` that `observes` a `ObservableProperty` that represents motion within a sensing region."^^xsd:string ;
    rdfs:subClassOf s223:OccupancySensor ;
    sh:property [ rdfs:comment "An `OccupantMotionSensor` shall always observe an `EnumeratedObservableProperty` that has an `EnumerationKind` of `Occupancy-Motion`."^^xsd:string ;
            sh:class s223:EnumeratedObservableProperty ;
            sh:message "s223: An `OccupantMotionSensor` shall always observe an `EnumeratedObservableProperty` that has an `EnumerationKind` of `Occupancy-Motion`."^^xsd:string ;
            sh:minCount 1 ;
            sh:node [ sh:property [ sh:class s223:Occupancy-Motion ;
                            sh:maxCount 1 ;
                            sh:path s223:hasEnumerationKind ] ] ;
            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/data/scb-vrf> ;
                    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/data/scb-vrf> ],
        [ 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/data/scb-vrf> ],
        [ 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/data/scb-vrf> ],
        [ 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/data/scb-vrf> ] ;
    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/data/scb-vrf> ] ;
    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/data/scb-vrf> ;
            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/data/scb-vrf> ;
            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/data/scb-vrf> ;
            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/data/scb-vrf> ;
            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/data/scb-vrf> ;
            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/data/scb-vrf> ;
            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/data/scb-vrf> ;
            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/data/scb-vrf> ] ;
    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/data/scb-vrf> ] ;
    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/data/scb-vrf> ] ;
    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 ( quantitykind: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/data/scb-vrf> ;
                    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/data/scb-vrf> ],
        [ 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/data/scb-vrf> ] ;
    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 .

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 ;
    ns2:code 106 ;
    ns2: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/data/scb-vrf> ;
            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 ;
    ns2:code 1 ;
    ns2: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 ;
    ns2:code "800"^^xsd:string ;
    ns2: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 ;
    ns2: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 ;
    ns2: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 ;
    ns2: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 ;
    ns2: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 ;
    ns2: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/data/scb-vrf> ;
            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 ;
    ns2:code 255 ;
    ns2: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 ;
    ns2:code 101 ;
    ns2: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 ;
    ns2: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 ns1: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/data/scb-vrf> ;
            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/data/scb-vrf> ;
            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 ;
    ns2:code 10 ;
    ns2:literal "EC-EMEP"^^xsd:string ;
    ns1: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 ;
    ns2:code 12 ;
    ns2: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 ;
    ns2:code 14 ;
    ns2: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 ;
    ns2:code 16 ;
    ns2: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 ;
    ns2: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 ;
    ns2:code 100 ;
    ns2: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 ;
    ns2: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 ;
    ns2:code 2 ;
    ns2: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 ;
    ns2: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 ) ;
    ns2: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 ;
    ns2:code 803 ;
    ns2: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 ;
    ns2: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 ;
    ns2:code 104 ;
    ns2: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 ;
    ns2:code 40 ;
    ns2: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 ;
    ns2:code 42 ;
    ns2: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 ;
    ns2:code 42 ;
    ns2: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 ;
    ns2: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 ;
    ns2: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 ;
    ns2:code 50 ;
    ns2: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 ;
    ns2:code 52 ;
    ns2: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 ;
    ns2: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 ;
    ns2:code 101 ;
    ns2: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 ;
    ns2:code "0"^^xsd:string ;
    ns2: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 ;
    ns2:code "800"^^xsd:string ;
    ns2:literal "octet"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:OFF a qudt:OnOffStateType ;
    rdfs:label "Off"^^xsd:string ;
    ns2:code "0"^^xsd:string ;
    ns2:literal "off"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:OFFstate a qudt:OnOffState ;
    rdfs:label "Off"^^xsd:string ;
    ns2:code "0"^^xsd:string ;
    ns2:literal "off"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:ON a qudt:OnOffStateType ;
    rdfs:label "On"^^xsd:string ;
    ns2:code "1"^^xsd:string ;
    ns2:literal "on"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:ONstate a qudt:OnOffState ;
    rdfs:label "On"^^xsd:string ;
    ns2:code "0"^^xsd:string ;
    ns2: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 ;
    ns2: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 ;
    ns2: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 ;
    ns2: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 ) ;
    ns2: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 ;
    ns2:code 76 ;
    ns2: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 ;
    ns2: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 ;
    ns2:code 109 ;
    ns2: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 ;
    ns2:code 105 ;
    ns2: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 ;
    ns2: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 ;
    ns2:code 103 ;
    ns2: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 ;
    ns2: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 ;
    ns2:code "1"^^xsd:string ;
    ns2: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 ;
    ns2:code 20 ;
    ns2: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 ;
    ns2:code 92 ;
    ns2: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 ;
    ns2:code 20 ;
    ns2: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 ;
    ns2:code 92 ;
    ns2: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 ;
    ns2: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 ;
    ns2:code "1"^^xsd:string ;
    ns2: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 ;
    ns2:code 117 ;
    ns2: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 ;
    ns2:code 113 ;
    ns2: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 ;
    ns2:code 115 ;
    ns2: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 ;
    ns2:code 111 ;
    ns2: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 ;
    ns2:code 79 ;
    ns2: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 ;
    ns2: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 ;
    ns2: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 ;
    ns2:code "2"^^xsd:string ;
    ns2: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 ;
    ns2:code 30 ;
    ns2: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 ;
    ns2:code 32 ;
    ns2: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/data/scb-vrf> ;
            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 ;
    ns2:code "2"^^xsd:string ;
    ns2: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 ;
    ns2:code "1"^^xsd:string ;
    ns2: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 ;
    ns2:code 215 ;
    ns2:literal "YDT"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:YES a qudt:YesNoType ;
    rdfs:label "Yes"^^xsd:string ;
    ns2:literal "Y"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:Yes a qudt:YesNoType ;
    rdfs:label "Yes"^^xsd:string ;
    ns2: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 ;
    ns2:code "1"^^xsd:string ;
    ns2: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 ;
    ns2:code "2"^^xsd:string ;
    ns2: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 ;
    ns1: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 ;
    ns1: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 quantitykind: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 ;
    ns1: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 ;
    ns1: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 quantitykind: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 quantitykind: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> .

quantitykind: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 quantitykind:Length .

quantitykind: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 quantitykind:Acceleration .

quantitykind: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 quantitykind:NumberDensity .

quantitykind: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 quantitykind:Time .

quantitykind: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 quantitykind:InstantaneousPower ;
    skos:broader quantitykind:Energy .

quantitykind: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 quantitykind:MassicActivity .

quantitykind: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 quantitykind:Energy .

quantitykind: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 quantitykind:Pressure .

quantitykind: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> .

quantitykind: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 quantitykind:Concentration .

quantitykind: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 quantitykind:Angle .

quantitykind: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 quantitykind:Angle .

quantitykind: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 quantitykind:Angle .

quantitykind: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 quantitykind:Radius .

quantitykind: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 quantitykind:ElectricChargePerArea .

quantitykind: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 quantitykind:MassPerArea .

quantitykind: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> .

quantitykind: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> .

quantitykind: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 quantitykind:PowerPerArea .

quantitykind: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 quantitykind:PowerPerArea ;
    skos:closeMatch <http://dbpedia.org/resource/Heat_transfer> .

quantitykind: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 quantitykind:MassPerArea .

quantitykind: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> .

quantitykind: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 quantitykind:Pressure .

quantitykind: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 quantitykind:Area ;
    skos:closeMatch quantitykind:MolarAttenuationCoefficient .

quantitykind: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 quantitykind:ElectricCharge .

quantitykind: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 quantitykind:Energy .

quantitykind: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 quantitykind:Mass .

quantitykind: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> .

quantitykind: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 quantitykind:Energy .

quantitykind: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 quantitykind:HeadEndPressure .

quantitykind: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 quantitykind:SpecificImpulse .

quantitykind: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 quantitykind:VacuumThrust .

quantitykind: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 quantitykind:Angle .

quantitykind: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> .

quantitykind: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> .

quantitykind: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 quantitykind:Energy .

quantitykind: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 quantitykind:Angle .

quantitykind: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> .

quantitykind: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> .

quantitykind: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 quantitykind:BitRate .

quantitykind: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 quantitykind: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 quantitykind:BloodGlucoseLevel .

quantitykind: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 quantitykind:Angle .

quantitykind: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 quantitykind:Dimensionless .

quantitykind: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 quantitykind:Length .

quantitykind: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 quantitykind:Time .

quantitykind: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 quantitykind:Count .

quantitykind: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 quantitykind:ByteRate .

quantitykind:CENTER-OF-GRAVITY_X a qudt:QuantityKind ;
    rdfs:label "Center of Gravity in the X axis"@en ;
    dcterms:isReplacedBy quantitykind: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 quantitykind:Length .

quantitykind:CENTER-OF-GRAVITY_Y a qudt:QuantityKind ;
    rdfs:label "Center of Gravity in the Y axis"@en ;
    dcterms:isReplacedBy quantitykind: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 quantitykind:Length .

quantitykind:CENTER-OF-GRAVITY_Z a qudt:QuantityKind ;
    rdfs:label "Center of Gravity in the Z axis"@en ;
    dcterms:isReplacedBy quantitykind: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 quantitykind:Length .

quantitykind: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 quantitykind:PositionVector .

quantitykind: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 quantitykind:Mass .

quantitykind: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 quantitykind:Mass .

quantitykind: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> .

quantitykind: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 quantitykind:Time .

quantitykind: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 quantitykind:Area ;
    skos:closeMatch quantitykind:Area .

quantitykind: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> ;
    ns1: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 quantitykind:AcousticImpedance .

quantitykind: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 quantitykind:Dimensionless .

quantitykind: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 quantitykind:Velocity .

quantitykind: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 quantitykind:SpecificVolume .

quantitykind: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 quantitykind:Radius .

quantitykind: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 quantitykind:Length .

quantitykind: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 quantitykind:ThermodynamicTemperature .

quantitykind: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 quantitykind:Frequency .

quantitykind: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 quantitykind:Frequency .

quantitykind: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 quantitykind: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 quantitykind:ElectricCurrentPhasor,
        quantitykind:VoltagePhasor ;
    skos:broader quantitykind:ElectricPower .

quantitykind: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 quantitykind:PlaneAngle .

quantitykind: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 quantitykind: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> .

quantitykind: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 quantitykind:Area .

quantitykind: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> .

quantitykind: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> .

quantitykind: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 quantitykind:AngularFrequency .

quantitykind: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 quantitykind:Velocity .

quantitykind: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 quantitykind:Mass .

quantitykind: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> .

quantitykind: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> .

quantitykind: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 quantitykind:AngularFrequency .

quantitykind: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 quantitykind:Temperature .

quantitykind: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 quantitykind:MassDensity .

quantitykind: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 quantitykind: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> .

quantitykind: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 quantitykind:Density .

quantitykind: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 quantitykind:Length .

quantitykind: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 quantitykind:Area .

quantitykind: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 quantitykind:Length .

quantitykind: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 quantitykind:Length .

quantitykind: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 quantitykind:Length .

quantitykind: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 quantitykind:Distance .

quantitykind: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 quantitykind:NumberDensity .

quantitykind: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> .

quantitykind: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 quantitykind:Dimensionless .

quantitykind: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 quantitykind:Force .

quantitykind: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 quantitykind:Temperature .

quantitykind: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 quantitykind:FrictionCoefficient .

quantitykind:DynamicPressure a qudt:QuantityKind ;
    rdfs:label "Dynamic Pressure"@en ;
    dcterms:description "Dynamic Pressure (indicated with q, or Q, and sometimes called velocity pressure) is the quantity defined by: $q = 1/2 * \\rho v^{2}$, where (using SI units),  $q$ is dynamic pressure in $pascals$, $\\rho$ is fluid density in $kg/m^{3}$ (for example, density of air) and $v $ is fluid velocity in $m/s$."^^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/Dynamic_pressure"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-2D0> ;
    qudt:symbol "q"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q949674> ;
    rdfs:comment "Applicable units are those of quantitykind:ForcePerArea"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader quantitykind:Pressure .

quantitykind: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 quantitykind:VehicleVelocity .

quantitykind: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 quantitykind:DimensionlessRatio .

quantitykind: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 quantitykind:Velocity .

quantitykind: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 quantitykind:Mass .

quantitykind: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> .

quantitykind:ElectricDipoleMoment_CubicPerEnergy_Squared a qudt:QuantityKind ;
    rdfs:label "Cubic Electric Dipole Moment per Square Energy"@en ;
    dcterms:isReplacedBy quantitykind:CubicElectricDipoleMomentPerSquareEnergy ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E3L-3I0M-2H0T7D0> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:ElectricDipoleMoment_QuarticPerEnergy_Cubic a qudt:QuantityKind ;
    rdfs:label "Quartic Electric Dipole Moment per Cubic Energy"@en ;
    dcterms:isReplacedBy quantitykind:QuarticElectricDipoleMomentPerCubicEnergy ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E4L-2I0M-3H0T10D0> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind: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 quantitykind:PropellantMass .

quantitykind: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 quantitykind:SpecificPower .

quantitykind: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 quantitykind:Energy .

quantitykind: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 quantitykind:NumberDensity .

quantitykind: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 quantitykind:Length .

quantitykind: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 quantitykind:Mobility .

quantitykind: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 quantitykind:Length .

quantitykind: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 quantitykind:VehicleVelocity .

quantitykind: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 quantitykind:VehicleVelocity .

quantitykind: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 quantitykind:Energy .

quantitykind: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> .

quantitykind: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 quantitykind:PowerPerArea .

quantitykind: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 quantitykind:Energy .

quantitykind: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 quantitykind:Energy .

quantitykind: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 quantitykind:Energy .

quantitykind: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 quantitykind: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> .

quantitykind:Energy_Squared a qudt:QuantityKind ;
    rdfs:label "Square Energy"@en ;
    dcterms:isReplacedBy quantitykind:SquareEnergy ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L4I0M2H0T-4D0> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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 quantitykind:Length .

quantitykind: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> .

quantitykind: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> ;
    ns1: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 quantitykind:Area .

quantitykind: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 quantitykind:Concentration .

quantitykind: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 quantitykind:Density .

quantitykind: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 quantitykind: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 quantitykind:Mass .

quantitykind: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 quantitykind: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 quantitykind:AmountOfSubstance .

quantitykind: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> .

quantitykind: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 quantitykind:SpecificHeatCapacity .

quantitykind: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 quantitykind:Power .

quantitykind: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 quantitykind:Area .

quantitykind: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 quantitykind:Pressure .

quantitykind: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 quantitykind:Temperature .

quantitykind: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> .

quantitykind: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> .

quantitykind: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 quantitykind:Mass .

quantitykind: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 quantitykind:Dimensionless .

quantitykind: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 quantitykind:Temperature .

quantitykind: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 quantitykind:Incidence .

quantitykind: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 quantitykind:Energy .

quantitykind: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 quantitykind:Temperature .

quantitykind: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 quantitykind:Mass .

quantitykind: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 quantitykind:Volume .

quantitykind: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 quantitykind:MassRatio .

quantitykind: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 quantitykind:DimensionlessRatio .

quantitykind: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 quantitykind:Dimensionless .

quantitykind: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 quantitykind:Dimensionless .

quantitykind: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 quantitykind:Angle .

quantitykind: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> .

quantitykind: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 quantitykind:LatticeVector .

quantitykind: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 quantitykind:AngularReciprocalLatticeVector .

quantitykind: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 quantitykind:Mass .

quantitykind: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 quantitykind:DimensionlessRatio .

quantitykind: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> .

quantitykind: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 quantitykind:CanonicalPartitionFunction .

quantitykind: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 quantitykind: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 quantitykind:DimensionlessRatio .

quantitykind: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 quantitykind: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 quantitykind:TimeTemperature .

quantitykind: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 quantitykind:Time .

quantitykind: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 quantitykind:Length .

quantitykind: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 quantitykind:ThermalEnergy .

quantitykind: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 quantitykind:PowerPerArea .

quantitykind: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 quantitykind:SpecificEnergy .

quantitykind: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 quantitykind:Length .

quantitykind: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 quantitykind:NumberDensity .

quantitykind: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 quantitykind:Velocity .

quantitykind: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 quantitykind:Mass .

quantitykind: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 quantitykind:Time .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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 quantitykind:ExpansionRatio .

quantitykind: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 quantitykind:NozzleThroatDiameter .

quantitykind: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 quantitykind:Mass .

quantitykind: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 quantitykind:Velocity .

quantitykind: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 quantitykind:NumberDensity .

quantitykind:InverseEnergy_Squared a qudt:QuantityKind ;
    rdfs:label "Inverse Square Energy"@en ;
    dcterms:isReplacedBy quantitykind:InverseSquareEnergy ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-4I0M-2H0T4D0> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:InverseMass_Squared a qudt:QuantityKind ;
    rdfs:label "Inverse Square Mass"@en ;
    dcterms:isReplacedBy quantitykind:InverseSquareMass ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M-2H0T0D0> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:InverseTime_Squared a qudt:QuantityKind ;
    rdfs:label "Inverse Square Time"@en ;
    dcterms:isReplacedBy quantitykind:InverseSquareTime ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-2D0> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind: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 quantitykind:ElectricCurrent .

quantitykind: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 quantitykind:ElectricCharge .

quantitykind: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 quantitykind:SpecificVolume .

quantitykind: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> .

quantitykind: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 quantitykind:Energy .

quantitykind: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 quantitykind:Energy .

quantitykind: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 quantitykind:AngularFrequency .

quantitykind: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 quantitykind:Length .

quantitykind: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 quantitykind:Dimensionless .

quantitykind: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 quantitykind:Force .

quantitykind: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> .

quantitykind: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 quantitykind:ForcePerLength .

quantitykind: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> .

quantitykind: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 quantitykind:ForcePerLength .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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 quantitykind:MagneticFlux .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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 quantitykind: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> .

quantitykind: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 quantitykind: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> .

quantitykind: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 quantitykind: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> .

quantitykind: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 quantitykind:Length .

quantitykind: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 quantitykind:Angle .

quantitykind: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 quantitykind:Dimensionless .

quantitykind: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 quantitykind:Dimensionless .

quantitykind: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 quantitykind:LuminousFluxPerArea .

quantitykind: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 quantitykind:Mass .

quantitykind: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 quantitykind:Mass .

quantitykind: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 quantitykind:Mass .

quantitykind: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 quantitykind:Mass .

quantitykind: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 quantitykind: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 quantitykind:MomentOfInertia .

quantitykind: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 quantitykind: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 quantitykind:MomentOfInertia .

quantitykind: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 quantitykind:CrossSection .

quantitykind: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 quantitykind:CrossSection .

quantitykind: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> .

quantitykind: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 quantitykind: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 quantitykind:ElectricCurrentPerLength .

quantitykind: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 quantitykind: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> .

quantitykind: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 quantitykind:Mass .

quantitykind: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 quantitykind:MassPerAreaTime .

quantitykind: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 quantitykind:Mass .

quantitykind: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 quantitykind:Mass .

quantitykind: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 quantitykind:Mass .

quantitykind: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> .

quantitykind: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 quantitykind:SpecificPower .

quantitykind: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> .

quantitykind: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 quantitykind:MaxOperatingThrust .

quantitykind: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 quantitykind:Thrust .

quantitykind: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 quantitykind:Energy .

quantitykind: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 quantitykind:Pressure .

quantitykind: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 quantitykind:Pressure .

quantitykind: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 quantitykind:Energy .

quantitykind: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 quantitykind:Length .

quantitykind: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 quantitykind:Time .

quantitykind: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 quantitykind:Length .

quantitykind: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> .

quantitykind: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 quantitykind:ForcePerArea .

quantitykind: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 quantitykind:CanonicalPartitionFunction .

quantitykind: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> .

quantitykind: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 quantitykind:Area .

quantitykind: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 quantitykind:Length .

quantitykind: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 quantitykind:VolumeFlowRate .

quantitykind: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> .

quantitykind: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 quantitykind: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> .

quantitykind: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 quantitykind:MolarEnergy .

quantitykind: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> .

quantitykind: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> .

quantitykind: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 quantitykind:MolarEnergy .

quantitykind: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 quantitykind:DimensionlessRatio .

quantitykind: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 quantitykind:NumberDensity .

quantitykind: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> .

quantitykind: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 quantitykind:Mass .

quantitykind: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 quantitykind:DimensionlessRatio .

quantitykind: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 quantitykind:Length .

quantitykind: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 quantitykind:DimensionlessRatio .

quantitykind: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 quantitykind:Area .

quantitykind: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 quantitykind:Pressure .

quantitykind: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 quantitykind:Force .

quantitykind: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 quantitykind:Energy .

quantitykind: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 quantitykind:Length .

quantitykind: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> .

quantitykind: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 quantitykind:Length .

quantitykind: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> .

quantitykind: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 quantitykind:Pressure .

quantitykind: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 quantitykind:Length .

quantitykind: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 quantitykind:Mass .

quantitykind: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 quantitykind: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 quantitykind:PRODUCT-OF-INERTIA .

quantitykind: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 quantitykind: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 quantitykind:PRODUCT-OF-INERTIA .

quantitykind: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 quantitykind: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 quantitykind:PRODUCT-OF-INERTIA .

quantitykind: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 quantitykind:Pressure .

quantitykind: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 quantitykind:Frequency .

quantitykind: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> .

quantitykind: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 quantitykind:NumberDensity .

quantitykind: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 quantitykind:Length .

quantitykind: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 quantitykind:Mass .

quantitykind: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 quantitykind:DimensionlessRatio .

quantitykind: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> .

quantitykind: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 quantitykind:Length .

quantitykind: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> .

quantitykind: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 quantitykind:Count .

quantitykind: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 quantitykind:ForcePerArea .

quantitykind: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 quantitykind:DimensionlessRatio .

quantitykind: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 quantitykind:NonNegativeLength .

quantitykind: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 quantitykind:PlaneAngle .

quantitykind: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 quantitykind:Energy .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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 quantitykind:Dimensionless .

quantitykind: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 quantitykind:Dimensionless .

quantitykind: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> .

quantitykind: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 quantitykind:PropellantTemperature .

quantitykind: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> .

quantitykind: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 quantitykind:Mass .

quantitykind: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 quantitykind:SignalStrength .

quantitykind: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 quantitykind:PowerPerArea .

quantitykind: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> .

quantitykind: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 quantitykind:EnergyPerArea .

quantitykind: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 quantitykind:PowerPerArea .

quantitykind: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 quantitykind:InverseTime .

quantitykind: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> .

quantitykind: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 quantitykind:ThermodynamicTemperature .

quantitykind: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> .

quantitykind: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 quantitykind:Energy .

quantitykind: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 quantitykind:Time .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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 quantitykind:Reflectance .

quantitykind: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 quantitykind:DimensionlessRatio .

quantitykind: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 quantitykind:MassDefect ;
    skos:broader quantitykind:DimensionlessRatio .

quantitykind: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 quantitykind:DimensionlessRatio .

quantitykind:RelativePermittivity qudt:wikidataMatch <http://www.wikidata.org/entity/Q4027242> .

quantitykind: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 quantitykind:Time .

quantitykind: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> .

quantitykind: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 quantitykind:Energy .

quantitykind: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 quantitykind:Dimensionless .

quantitykind: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 quantitykind:Energy .

quantitykind: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 quantitykind:Mass .

quantitykind: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> ;
    ns1: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 quantitykind:Time .

quantitykind: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> .

quantitykind: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 quantitykind:Force .

quantitykind: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> .

quantitykind: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 quantitykind:TorquePerAngle .

quantitykind: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> .

quantitykind: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 quantitykind:MassRatio .

quantitykind: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 quantitykind:AmountOfSubstancePerVolume .

quantitykind: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 quantitykind:InformationEntropy .

quantitykind: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 quantitykind:MassRatio .

quantitykind: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 quantitykind:Area .

quantitykind: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 quantitykind:Length .

quantitykind: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 quantitykind:Length .

quantitykind: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 quantitykind: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 quantitykind:AmountOfSubstancePerVolume .

quantitykind: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> ;
    ns1: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 quantitykind:Length .

quantitykind:SoundPressure a qudt:QuantityKind ;
    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> ;
    ns1: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 quantitykind:Pressure .

quantitykind: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 quantitykind:Voltage .

quantitykind: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 quantitykind:Length .

quantitykind: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 quantitykind:SpecificEnergy .

quantitykind: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 quantitykind:DimensionlessRatio .

quantitykind: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> .

quantitykind: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 quantitykind:SpecificImpulse .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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 quantitykind:DimensionlessRatio .

quantitykind: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 quantitykind:AngularMomentum .

quantitykind: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 quantitykind:Mass .

quantitykind: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 quantitykind:Mass .

quantitykind: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 quantitykind:ChemicalPotential .

quantitykind: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> .

quantitykind: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> .

quantitykind: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 quantitykind:FrictionCoefficient .

quantitykind:StaticPressure a qudt:QuantityKind ;
    rdfs:label "Static pressure"@en ;
    dcterms:description "\"Static Pressure\" is the pressure at a nominated point in a fluid. Every point in a steadily flowing fluid, regardless of the fluid speed at that point, has its own static pressure $P$, dynamic pressure $q$, and total pressure $P_0$. The total pressure is the sum of the dynamic and static pressures, that is $P_0 = P + q$."^^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:symbol "p"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q2406217> ;
    ns1: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 quantitykind:Pressure .

quantitykind: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 quantitykind:EnergyDensity .

quantitykind: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 quantitykind:Dimensionless .

quantitykind: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 quantitykind:GapEnergy .

quantitykind: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 quantitykind:EnergyPerArea .

quantitykind: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> .

quantitykind: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> .

quantitykind: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 quantitykind:Mass .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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 quantitykind:Temperature .

quantitykind:TemperaturePerTime_Squared a qudt:QuantityKind ;
    rdfs:label "Temperature per Time Squared"@en ;
    dcterms:isReplacedBy quantitykind:TemperaturePerSquareTime ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H1T-2D0> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind: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 quantitykind:TemperaturePerTime .

quantitykind: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> .

quantitykind: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> .

quantitykind: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 quantitykind: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> .

quantitykind: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 quantitykind:ForceMagnitude .

quantitykind: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 quantitykind:CoefficientOfHeatTransfer .

quantitykind: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> .

quantitykind: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 quantitykind:DimensionlessRatio .

quantitykind: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> .

quantitykind: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 quantitykind:CoefficientOfHeatTransfer .

quantitykind: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 quantitykind:Dimensionless .

quantitykind: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 quantitykind:MagneticFluxDensity .

quantitykind: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 quantitykind:EnergyPerTemperature .

quantitykind: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> .

quantitykind: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 quantitykind:DimensionlessRatio .

quantitykind: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 quantitykind:Angle .

quantitykind: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> ;
    ns1: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 quantitykind:SoundIntensity .

quantitykind:TimeConstant_Inductance a qudt:QuantityKind ;
    rdfs:label "time constant (inductance based)"^^xsd:string ;
    dcterms:isReplacedBy quantitykind: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> .

quantitykind: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> .

quantitykind:Time_Squared a qudt:QuantityKind ;
    rdfs:label "Time Squared"@en ;
    dcterms:isReplacedBy quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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 quantitykind:AngularMomentum .

quantitykind: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 quantitykind:CrossSection .

quantitykind: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 quantitykind:Pressure .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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 quantitykind:Velocity .

quantitykind: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 quantitykind: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> .

quantitykind: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 quantitykind: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> .

quantitykind: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 quantitykind:Velocity .

quantitykind: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 quantitykind:Energy ;
    skos:closeMatch quantitykind:LuminousEnergy .

quantitykind: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> .

quantitykind:VolumeFlowRate_SurfaceRelated a qudt:QuantityKind ;
    rdfs:label "surface‑related volume flow rate"^^xsd:string ;
    dcterms:isReplacedBy quantitykind: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> .

quantitykind: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 quantitykind:DimensionlessRatio .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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 quantitykind:AngularVelocity .

quantitykind: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 quantitykind:Power .

quantitykind: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> .

quantitykind: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> ;
    ns1: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 quantitykind:Length .

quantitykind: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 quantitykind:AngularWavenumber ;
    skos:altLabel "Wellenzahl"@de ;
    skos:broader quantitykind:InverseLength .

quantitykind: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 quantitykind:Time .

quantitykind: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 quantitykind:Pressure .

quantitykind: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 quantitykind:Thrust .

quantitykind: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 quantitykind:Temperature .

quantitykind: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 quantitykind:Length .

quantitykind: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 quantitykind:Energy .

<http://qudt.org/vocab/soqk/CGS> a qudt:SystemOfQuantityKinds ;
    rdfs:label "CGS System of Quantity Kinds"^^xsd:string ;
    qudt:hasBaseQuantityKind quantitykind:Dimensionless,
        quantitykind:Length,
        quantitykind:Mass,
        quantitykind:Time ;
    qudt:hasQuantityKind quantitykind:Length ;
    qudt:hasUnitSystem <http://qudt.org/vocab/sou/CGS> ;
    qudt:systemDerivedQuantityKind quantitykind:AngularAcceleration,
        quantitykind:AngularMomentum,
        quantitykind:AngularVelocity,
        quantitykind:Area,
        quantitykind:AreaAngle,
        quantitykind:AreaTime,
        quantitykind:Curvature,
        quantitykind:Density,
        quantitykind:DynamicViscosity,
        quantitykind:Energy,
        quantitykind:EnergyDensity,
        quantitykind:EnergyPerArea,
        quantitykind:Force,
        quantitykind:ForcePerArea,
        quantitykind:ForcePerLength,
        quantitykind:Frequency,
        quantitykind:LengthMass,
        quantitykind:LinearAcceleration,
        quantitykind:LinearMomentum,
        quantitykind:LinearVelocity,
        quantitykind:MassPerArea,
        quantitykind:MassPerLength,
        quantitykind:MassPerTime,
        quantitykind:MomentOfInertia,
        quantitykind:Power,
        quantitykind:PowerPerArea,
        quantitykind:PowerPerAreaAngle,
        quantitykind:Pressure,
        quantitykind:RadiantIntensity,
        quantitykind:SpecificEnergy,
        quantitykind:SquareTime,
        quantitykind:Stress,
        quantitykind:Torque,
        quantitykind:Volume,
        quantitykind: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 quantitykind:Dimensionless,
        quantitykind:Length,
        quantitykind:Mass,
        quantitykind:Time ;
    qudt:hasQuantityKind quantitykind:Length ;
    qudt:hasUnitSystem <http://qudt.org/vocab/sou/CGS-EMU> ;
    qudt:systemDerivedQuantityKind quantitykind:AuxillaryMagneticField,
        quantitykind:Capacitance,
        quantitykind:ElectricCharge,
        quantitykind:ElectricConductivity,
        quantitykind:ElectricCurrent,
        quantitykind:ElectricCurrentDensity,
        quantitykind:ElectricCurrentPerLength,
        quantitykind:ElectricDipoleMoment,
        quantitykind:ElectricDisplacementField,
        quantitykind:ElectricField,
        quantitykind:ElectricFlux,
        quantitykind:ElectricPotential,
        quantitykind:ElectromotiveForce,
        quantitykind:EnergyPerElectricCharge,
        quantitykind:Inductance,
        quantitykind:LengthPerElectricCurrent,
        quantitykind:MagneticDipoleMoment,
        quantitykind:MagneticField,
        quantitykind:MagneticFlux,
        quantitykind:MagneticFluxPerLength,
        quantitykind:MagnetizationField,
        quantitykind:MagnetomotiveForce,
        quantitykind:Permeability,
        quantitykind:Permittivity,
        quantitykind: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 quantitykind:Dimensionless,
        quantitykind:Length,
        quantitykind:Mass,
        quantitykind:Time ;
    qudt:hasQuantityKind quantitykind:Length ;
    qudt:hasUnitSystem <http://qudt.org/vocab/sou/CGS-ESU> ;
    qudt:systemDerivedQuantityKind quantitykind:AuxillaryMagneticField,
        quantitykind:Capacitance,
        quantitykind:ElectricCharge,
        quantitykind:ElectricCurrent,
        quantitykind:ElectricCurrentDensity,
        quantitykind:ElectricCurrentPerLength,
        quantitykind:ElectricDipoleMoment,
        quantitykind:ElectricDisplacementField,
        quantitykind:ElectricField,
        quantitykind:ElectricFlux,
        quantitykind:ElectricPotential,
        quantitykind:ElectromotiveForce,
        quantitykind:EnergyPerElectricCharge,
        quantitykind:Inductance,
        quantitykind:LengthPerElectricCurrent,
        quantitykind:MagneticDipoleMoment,
        quantitykind:MagneticField,
        quantitykind:MagneticFlux,
        quantitykind:MagneticFluxPerLength,
        quantitykind:MagnetizationField,
        quantitykind:MagnetomotiveForce,
        quantitykind:Permeability,
        quantitykind:Permittivity,
        quantitykind: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 quantitykind:Dimensionless,
        quantitykind:Length,
        quantitykind:Mass,
        quantitykind:Time ;
    qudt:hasQuantityKind quantitykind:Length ;
    qudt:hasUnitSystem <http://qudt.org/vocab/sou/CGS-GAUSS> ;
    qudt:systemDerivedQuantityKind quantitykind:AuxillaryMagneticField,
        quantitykind:Capacitance,
        quantitykind:ElectricCharge,
        quantitykind:ElectricCurrent,
        quantitykind:ElectricCurrentDensity,
        quantitykind:ElectricCurrentPerLength,
        quantitykind:ElectricDipoleMoment,
        quantitykind:ElectricDisplacementField,
        quantitykind:ElectricField,
        quantitykind:ElectricFlux,
        quantitykind:ElectricPotential,
        quantitykind:ElectromotiveForce,
        quantitykind:EnergyPerElectricCharge,
        quantitykind:Inductance,
        quantitykind:LengthPerElectricCurrent,
        quantitykind:MagneticDipoleMoment,
        quantitykind:MagneticField,
        quantitykind:MagneticFlux,
        quantitykind:MagneticFluxPerLength,
        quantitykind:MagnetizationField,
        quantitykind:Permeability,
        quantitykind:Permittivity,
        quantitykind: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 quantitykind:AngularAcceleration,
        quantitykind:AngularVelocity,
        quantitykind:Area,
        quantitykind:AreaTemperature,
        quantitykind:AreaTime,
        quantitykind:AreaTimeTemperature,
        quantitykind:CoefficientOfHeatTransfer,
        quantitykind:Density,
        quantitykind:DynamicViscosity,
        quantitykind:Energy,
        quantitykind:EnergyPerArea,
        quantitykind:Force,
        quantitykind:ForcePerArea,
        quantitykind:ForcePerLength,
        quantitykind:HeatCapacity,
        quantitykind:HeatFlowRate,
        quantitykind:KinematicViscosity,
        quantitykind:Length,
        quantitykind:LinearAcceleration,
        quantitykind:LinearVelocity,
        quantitykind:LiquidVolume,
        quantitykind:Mass,
        quantitykind:MassPerArea,
        quantitykind:MassPerLength,
        quantitykind:MassPerTime,
        quantitykind:MassTemperature,
        quantitykind:MolarHeatCapacity,
        quantitykind:Power,
        quantitykind:PowerPerArea,
        quantitykind:SpecificEnergy,
        quantitykind:SpecificHeatCapacity,
        quantitykind:ThermalConductivity,
        quantitykind:ThermalDiffusivity,
        quantitykind:ThermalEnergy,
        quantitykind:ThermalEnergyLength,
        quantitykind:ThermalInsulance,
        quantitykind:ThermalResistance,
        quantitykind:ThermalResistivity,
        quantitykind:ThermodynamicTemperature,
        quantitykind:ThrustToMassRatio,
        quantitykind:Time,
        quantitykind:Torque,
        quantitykind:Volume,
        quantitykind: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 quantitykind:AmountOfSubstance,
        quantitykind:ElectricCurrent,
        quantitykind:Length,
        quantitykind:LuminousIntensity,
        quantitykind:Mass,
        quantitykind:ThermodynamicTemperature,
        quantitykind:Time ;
    qudt:hasQuantityKind quantitykind:Absorptance,
        quantitykind:AcousticImpedance,
        quantitykind:Action,
        quantitykind:ActivePower,
        quantitykind:ActivityThresholds,
        quantitykind:Adaptation,
        quantitykind:Admittance,
        quantitykind:AngularFrequency,
        quantitykind:AngularImpulse,
        quantitykind:AngularWavenumber,
        quantitykind:ApparentPower,
        quantitykind:AuditoryThresholds,
        quantitykind:BendingMomentOfForce,
        quantitykind:Breadth,
        quantitykind:BulkModulus,
        quantitykind:Capacitance,
        quantitykind:CartesianCoordinates,
        quantitykind:CartesianVolume,
        quantitykind:CelsiusTemperature,
        quantitykind:CoefficientOfHeatTransfer,
        quantitykind:Coercivity,
        quantitykind:ColdReceptorThreshold,
        quantitykind:CombinedNonEvaporativeHeatTransferCoefficient,
        quantitykind:Compressibility,
        quantitykind:CompressibilityFactor,
        quantitykind:Conductance,
        quantitykind:ConductionSpeed,
        quantitykind:ConductiveHeatTransferRate,
        quantitykind:Conductivity,
        quantitykind:ConvectiveHeatTransfer,
        quantitykind:CouplingFactor,
        quantitykind:CubicExpansionCoefficient,
        quantitykind:CurrentLinkage,
        quantitykind:CurvatureFromRadius,
        quantitykind:DewPointTemperature,
        quantitykind:Diameter,
        quantitykind:Displacement,
        quantitykind:DisplacementCurrent,
        quantitykind:DisplacementCurrentDensity,
        quantitykind:Distance,
        quantitykind:DynamicFriction,
        quantitykind:Efficiency,
        quantitykind:EinsteinTransitionProbability,
        quantitykind:ElectricCharge,
        quantitykind:ElectricChargeDensity,
        quantitykind:ElectricChargeLinearDensity,
        quantitykind:ElectricChargeSurfaceDensity,
        quantitykind:ElectricChargeVolumeDensity,
        quantitykind:ElectricCurrent,
        quantitykind:ElectricCurrentDensity,
        quantitykind:ElectricCurrentPhasor,
        quantitykind:ElectricDipoleMoment,
        quantitykind:ElectricDisplacement,
        quantitykind:ElectricFieldStrength,
        quantitykind:ElectricFlux,
        quantitykind:ElectricFluxDensity,
        quantitykind:ElectricPolarization,
        quantitykind:ElectricPotential,
        quantitykind:ElectricPotentialDifference,
        quantitykind:ElectricSusceptibility,
        quantitykind:ElectromagneticEnergyDensity,
        quantitykind:ElectromagneticWavePhaseSpeed,
        quantitykind:Emissivity,
        quantitykind:Energy,
        quantitykind:EnergyDensity,
        quantitykind:Entropy,
        quantitykind:EvaporativeHeatTransfer,
        quantitykind:EvaporativeHeatTransferCoefficient,
        quantitykind:Force,
        quantitykind:ForcePerAreaTime,
        quantitykind:ForcePerLength,
        quantitykind:Friction,
        quantitykind:GeneralizedCoordinate,
        quantitykind:GeneralizedForce,
        quantitykind:GeneralizedMomentum,
        quantitykind:GeneralizedVelocity,
        quantitykind:GibbsEnergy,
        quantitykind:GravitationalAttraction,
        quantitykind:GustatoryThreshold,
        quantitykind:HamiltonFunction,
        quantitykind:HeatCapacity,
        quantitykind:HeatCapacityRatio,
        quantitykind:HeatFlowRate,
        quantitykind:HeatFlowRatePerArea,
        quantitykind:HelmholtzEnergy,
        quantitykind:Impedance,
        quantitykind:Inductance,
        quantitykind:InstantaneousPower,
        quantitykind:InverseEnergy,
        quantitykind:InverseSquareEnergy,
        quantitykind:IsentropicCompressibility,
        quantitykind:IsentropicExponent,
        quantitykind:IsothermalCompressibility,
        quantitykind:LagrangeFunction,
        quantitykind:LeakageFactor,
        quantitykind:LengthByForce,
        quantitykind:LinearAbsorptionCoefficient,
        quantitykind:LinearAttenuationCoefficient,
        quantitykind:LinearElectricCurrentDensity,
        quantitykind:LinearExpansionCoefficient,
        quantitykind:LinearMomentum,
        quantitykind:LinearStrain,
        quantitykind:LogarithmicFrequencyInterval,
        quantitykind:LossFactor,
        quantitykind:LuminousEmittance,
        quantitykind:LuminousIntensity,
        quantitykind:MagneticAreaMoment,
        quantitykind:MagneticDipoleMoment,
        quantitykind:MagneticFlux,
        quantitykind:MagneticFluxDensity,
        quantitykind:MagneticMoment,
        quantitykind:MagneticPolarization,
        quantitykind:MagneticSusceptability,
        quantitykind:MagneticTension,
        quantitykind:MagneticVectorPotential,
        quantitykind:Magnetization,
        quantitykind:MagnetomotiveForce,
        quantitykind:MassAbsorptionCoefficient,
        quantitykind:MassAttenuationCoefficient,
        quantitykind:MassConcentrationOfWater,
        quantitykind:MassConcentrationOfWaterVapour,
        quantitykind:MassFlowRate,
        quantitykind:MassFractionOfDryMatter,
        quantitykind:MassFractionOfWater,
        quantitykind:MassPerArea,
        quantitykind:MassPerAreaTime,
        quantitykind:MassPerLength,
        quantitykind:MassPerTime,
        quantitykind:MassRatioOfWaterToDryMatter,
        quantitykind:MassRatioOfWaterVapourToDryGas,
        quantitykind:MassicActivity,
        quantitykind:MassieuFunction,
        quantitykind:MechanicalEnergy,
        quantitykind:MechanicalSurfaceImpedance,
        quantitykind:ModulusOfAdmittance,
        quantitykind:ModulusOfElasticity,
        quantitykind:ModulusOfImpedance,
        quantitykind:MolarAbsorptionCoefficient,
        quantitykind:MolarAngularMomentum,
        quantitykind:MomentOfInertia,
        quantitykind:Momentum,
        quantitykind:MutualInductance,
        quantitykind:NapierianAbsorbance,
        quantitykind:NonActivePower,
        quantitykind:NormalStress,
        quantitykind:OlfactoryThreshold,
        quantitykind:PathLength,
        quantitykind:Permeability,
        quantitykind:Permeance,
        quantitykind:Permittivity,
        quantitykind:PermittivityRatio,
        quantitykind:PhaseCoefficient,
        quantitykind:PhaseDifference,
        quantitykind:PhaseSpeedOfSound,
        quantitykind:PhotoThresholdOfAwarenessFunction,
        quantitykind:PlanckFunction,
        quantitykind:PoissonRatio,
        quantitykind:PolarMomentOfInertia,
        quantitykind:PositionVector,
        quantitykind:Power,
        quantitykind:PowerArea,
        quantitykind:PowerAreaPerSolidAngle,
        quantitykind:PowerFactor,
        quantitykind:PowerPerArea,
        quantitykind:PowerPerAreaAngle,
        quantitykind:PoyntingVector,
        quantitykind:Pressure,
        quantitykind:PressureCoefficient,
        quantitykind:PropagationCoefficient,
        quantitykind:QualityFactor,
        quantitykind:RadialDistance,
        quantitykind:Radiance,
        quantitykind:RadianceFactor,
        quantitykind:RadiantEnergyDensity,
        quantitykind:RadiantFluence,
        quantitykind:RadiantFlux,
        quantitykind:RadiantIntensity,
        quantitykind:RadiativeHeatTransfer,
        quantitykind:Radiosity,
        quantitykind:Radius,
        quantitykind:RadiusOfCurvature,
        quantitykind:RatioOfSpecificHeatCapacities,
        quantitykind:Reactance,
        quantitykind:ReactivePower,
        quantitykind:Reflectance,
        quantitykind:ReflectanceFactor,
        quantitykind:RefractiveIndex,
        quantitykind:RelativeHumidity,
        quantitykind:RelativeMassConcentrationOfVapour,
        quantitykind:RelativeMassRatioOfVapour,
        quantitykind:RelativePartialPressure,
        quantitykind:RelativePressureCoefficient,
        quantitykind:Reluctance,
        quantitykind:Resistance,
        quantitykind:Resistivity,
        quantitykind:ScalarMagneticPotential,
        quantitykind:SecondAxialMomentOfArea,
        quantitykind:SecondPolarMomentOfArea,
        quantitykind:SectionModulus,
        quantitykind:ShearModulus,
        quantitykind:ShearStrain,
        quantitykind:ShearStress,
        quantitykind:SoundEnergyDensity,
        quantitykind:SoundExposure,
        quantitykind:SoundExposureLevel,
        quantitykind:SoundParticleAcceleration,
        quantitykind:SoundParticleVelocity,
        quantitykind:SoundPower,
        quantitykind:SoundPowerLevel,
        quantitykind:SoundPressureLevel,
        quantitykind:SoundReductionIndex,
        quantitykind:SoundVolumeVelocity,
        quantitykind:SourceVoltage,
        quantitykind:SpecificEnergy,
        quantitykind:SpecificEnthalpy,
        quantitykind:SpecificEntropy,
        quantitykind:SpecificGibbsEnergy,
        quantitykind:SpecificHeatCapacity,
        quantitykind:SpecificHeatCapacityAtConstantPressure,
        quantitykind:SpecificHeatCapacityAtConstantVolume,
        quantitykind:SpecificHeatCapacityAtSaturation,
        quantitykind:SpecificHelmholtzEnergy,
        quantitykind:SpecificImpulseByMass,
        quantitykind:SpecificImpulseByWeight,
        quantitykind:SpecificInternalEnergy,
        quantitykind:SpecificVolume,
        quantitykind:SpectralLuminousEfficiency,
        quantitykind:SpeedOfLight,
        quantitykind:SpeedOfSound,
        quantitykind:SphericalIlluminance,
        quantitykind:SquareEnergy,
        quantitykind:StandardGravitationalParameter,
        quantitykind:StaticFriction,
        quantitykind:Susceptance,
        quantitykind:TemporalSummationFunction,
        quantitykind:ThermalConductance,
        quantitykind:ThermalConductivity,
        quantitykind:ThermalDiffusivity,
        quantitykind:ThermalInsulance,
        quantitykind:ThermalResistance,
        quantitykind:ThermodynamicEnergy,
        quantitykind:Thickness,
        quantitykind:Thrust,
        quantitykind:ThrustToMassRatio,
        quantitykind:Torque,
        quantitykind:TotalCurrent,
        quantitykind:TotalCurrentDensity,
        quantitykind:TouchThresholds,
        quantitykind:Transmittance,
        quantitykind:TransmittanceDensity,
        quantitykind:Turns,
        quantitykind:VisionThresholds,
        quantitykind:Voltage,
        quantitykind:VoltagePhasor,
        quantitykind:VolumeFlowRate,
        quantitykind:VolumeStrain,
        quantitykind:VolumicElectromagneticEnergy,
        quantitykind:WarmReceptorThreshold,
        quantitykind:Weight,
        quantitykind: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 quantitykind: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 quantitykind:AmountOfSubstance,
        quantitykind:Dimensionless,
        quantitykind:ElectricCurrent,
        quantitykind:Length,
        quantitykind:LuminousIntensity,
        quantitykind:Mass,
        quantitykind:ThermodynamicTemperature,
        quantitykind:Time ;
    qudt:systemDerivedQuantityKind quantitykind:AbsorbedDose,
        quantitykind:AbsorbedDoseRate,
        quantitykind:Activity,
        quantitykind:AmountOfSubstancePerMass,
        quantitykind:AmountOfSubstancePerVolume,
        quantitykind:AngularAcceleration,
        quantitykind:AngularMomentum,
        quantitykind:AngularVelocity,
        quantitykind:Area,
        quantitykind:AreaAngle,
        quantitykind:AreaPerTime,
        quantitykind:AreaTemperature,
        quantitykind:AreaThermalExpansion,
        quantitykind:AreaTime,
        quantitykind:AuxillaryMagneticField,
        quantitykind:Capacitance,
        quantitykind:CatalyticActivity,
        quantitykind:CoefficientOfHeatTransfer,
        quantitykind:CubicElectricDipoleMomentPerSquareEnergy,
        quantitykind:Density,
        quantitykind:DoseEquivalent,
        quantitykind:DynamicViscosity,
        quantitykind:ElectricCharge,
        quantitykind:ElectricChargeLineDensity,
        quantitykind:ElectricChargePerAmountOfSubstance,
        quantitykind:ElectricChargePerArea,
        quantitykind:ElectricChargePerMass,
        quantitykind:ElectricChargeVolumeDensity,
        quantitykind:ElectricConductivity,
        quantitykind:ElectricCurrentDensity,
        quantitykind:ElectricCurrentPerAngle,
        quantitykind:ElectricCurrentPerEnergy,
        quantitykind:ElectricDipoleMoment,
        quantitykind:ElectricDisplacement,
        quantitykind:ElectricFieldStrength,
        quantitykind:ElectricFlux,
        quantitykind:ElectricPotential,
        quantitykind:ElectricQuadrupoleMoment,
        quantitykind:ElectromotiveForce,
        quantitykind:Energy,
        quantitykind:EnergyDensity,
        quantitykind:EnergyPerArea,
        quantitykind:EnergyPerAreaElectricCharge,
        quantitykind:EnergyPerElectricCharge,
        quantitykind:EnergyPerSquareMagneticFluxDensity,
        quantitykind:Exposure,
        quantitykind:Force,
        quantitykind:ForcePerArea,
        quantitykind:ForcePerAreaTime,
        quantitykind:ForcePerElectricCharge,
        quantitykind:ForcePerLength,
        quantitykind:Frequency,
        quantitykind:GravitationalAttraction,
        quantitykind:HeatCapacity,
        quantitykind:HeatFlowRate,
        quantitykind:HeatFlowRatePerArea,
        quantitykind:Illuminance,
        quantitykind:Inductance,
        quantitykind:InverseAmountOfSubstance,
        quantitykind:InverseEnergy,
        quantitykind:InverseLength,
        quantitykind:InverseLengthTemperature,
        quantitykind:InverseMagneticFlux,
        quantitykind:InversePermittivity,
        quantitykind:InverseSquareEnergy,
        quantitykind:InverseTimeTemperature,
        quantitykind:InverseVolume,
        quantitykind:KinematicViscosity,
        quantitykind:LengthEnergy,
        quantitykind:LengthMass,
        quantitykind:LengthMolarEnergy,
        quantitykind:LengthPerElectricCurrent,
        quantitykind:LengthTemperature,
        quantitykind:LinearAcceleration,
        quantitykind:LinearElectricCurrent,
        quantitykind:LinearMomentum,
        quantitykind:LinearThermalExpansion,
        quantitykind:LinearVelocity,
        quantitykind:Luminance,
        quantitykind:LuminousEfficacy,
        quantitykind:LuminousEnergy,
        quantitykind:LuminousFlux,
        quantitykind:LuminousFluxPerArea,
        quantitykind:MagneticDipoleMoment,
        quantitykind:MagneticFlux,
        quantitykind:MagneticFluxDensity,
        quantitykind:MagneticFluxPerLength,
        quantitykind:MagneticReluctivity,
        quantitykind:Magnetization,
        quantitykind:MagnetomotiveForce,
        quantitykind:MassPerArea,
        quantitykind:MassPerAreaTime,
        quantitykind:MassPerElectricCharge,
        quantitykind:MassPerLength,
        quantitykind:MassPerTime,
        quantitykind:MassTemperature,
        quantitykind:MolarAngularMomentum,
        quantitykind:MolarEnergy,
        quantitykind:MolarHeatCapacity,
        quantitykind:MolarMass,
        quantitykind:MolarVolume,
        quantitykind:MomentOfInertia,
        quantitykind:Permeability,
        quantitykind:Permittivity,
        quantitykind:PlaneAngle,
        quantitykind:Polarizability,
        quantitykind:PolarizationField,
        quantitykind:Power,
        quantitykind:PowerArea,
        quantitykind:PowerAreaPerSolidAngle,
        quantitykind:PowerPerArea,
        quantitykind:PowerPerAreaAngle,
        quantitykind:PowerPerAreaQuarticTemperature,
        quantitykind:PowerPerElectricCharge,
        quantitykind:QuarticElectricDipoleMomentPerCubicEnergy,
        quantitykind:RadiantIntensity,
        quantitykind:Resistance,
        quantitykind:SolidAngle,
        quantitykind:SpecificEnergy,
        quantitykind:SpecificHeatCapacity,
        quantitykind:SpecificHeatPressure,
        quantitykind:SpecificHeatVolume,
        quantitykind:SpecificImpulseByMass,
        quantitykind:SpecificVolume,
        quantitykind:SquareEnergy,
        quantitykind:SquareTime,
        quantitykind:StandardGravitationalParameter,
        quantitykind:Stress,
        quantitykind:TemperatureAmountOfSubstance,
        quantitykind:TemperaturePerMagneticFluxDensity,
        quantitykind:TemperaturePerTime,
        quantitykind:ThermalConductivity,
        quantitykind:ThermalDiffusivity,
        quantitykind:ThermalInsulance,
        quantitykind:ThermalResistance,
        quantitykind:ThermalResistivity,
        quantitykind:ThrustToMassRatio,
        quantitykind:TimeTemperature,
        quantitykind:Torque,
        quantitykind:Volume,
        quantitykind:VolumePerTime,
        quantitykind:VolumeThermalExpansion,
        quantitykind: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 quantitykind:AngularAcceleration,
        quantitykind:AngularVelocity,
        quantitykind:Area,
        quantitykind:AreaTemperature,
        quantitykind:AreaTime,
        quantitykind:AreaTimeTemperature,
        quantitykind:CoefficientOfHeatTransfer,
        quantitykind:Density,
        quantitykind:DynamicViscosity,
        quantitykind:EnergyPerArea,
        quantitykind:Force,
        quantitykind:ForcePerArea,
        quantitykind:ForcePerLength,
        quantitykind:HeatCapacity,
        quantitykind:HeatFlowRate,
        quantitykind:KinematicViscosity,
        quantitykind:Length,
        quantitykind:LinearAcceleration,
        quantitykind:LinearVelocity,
        quantitykind:LiquidVolume,
        quantitykind:Mass,
        quantitykind:MassPerArea,
        quantitykind:MassPerLength,
        quantitykind:MassPerTime,
        quantitykind:MassTemperature,
        quantitykind:MolarHeatCapacity,
        quantitykind:Power,
        quantitykind:PowerPerArea,
        quantitykind:SpecificEnergy,
        quantitykind:SpecificHeatCapacity,
        quantitykind:ThermalConductivity,
        quantitykind:ThermalDiffusivity,
        quantitykind:ThermalEnergy,
        quantitykind:ThermalEnergyLength,
        quantitykind:ThermalInsulance,
        quantitykind:ThermalResistance,
        quantitykind:ThermalResistivity,
        quantitykind:ThermodynamicTemperature,
        quantitykind:ThrustToMassRatio,
        quantitykind:Time,
        quantitykind:Torque,
        quantitykind:Volume,
        quantitykind: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 quantitykind:Angle,
        quantitykind:PlaneAngle ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CAL_15_DEG_C a qudt:ContextualUnit,
        qudt:Unit ;
    rdfs:label "Calorie (15 Degrees C)"^^xsd:string,
        "Calorie (15 Degrees C)"@en ;
    dcterms:description "unit for the quantity of heat which is required to warm up 1 g  of water, which is free of air, at a constant pressure of 101.325 kPa (the pressure of the standard atmosphere on sea level) from 14.5 degrees Celsius to 15.5 degrees Celsius"^^rdf:HTML ;
    dcterms:isReplacedBy unit:CAL_15DEG_C ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 4.1858 ;
    qudt:conversionMultiplierSN 4.1858e+00 ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:hasQuantityKind quantitykind:ThermalEnergy ;
    qudt:iec61360Code "0112/2///62720#UAB139"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB139"^^xsd:anyURI,
        "https://physics.nist.gov/cuu/pdf/sp811.pdf"^^xsd:anyURI ;
    qudt:plainTextDescription "unit for the quantity of heat which is required to warm up 1 g  of water, which is free of air, at a constant pressure of 101.325 kPa (the pressure of the standard atmosphere on sea level) from 14.5 degrees Celsius to 15.5 degrees Celsius"^^xsd:string ;
    qudt:scalingOf unit:J ;
    qudt:symbol "cal{15 °C}"^^xsd:string ;
    qudt:ucumCode "cal_[15]"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "A1"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q99488743> ;
    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 quantitykind: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:CM_H2O a qudt:ContextualUnit,
        qudt:Unit ;
    rdfs:label "Centimetre of Water"^^xsd:string,
        "Centimetre of Water"@en ;
    dcterms:isReplacedBy unit:CentiM_H2O ;
    qudt:conversionMultiplier 0.0 ;
    qudt:conversionMultiplierSN 0e+00 ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-2D0> ;
    qudt:hasQuantityKind quantitykind:Pressure ;
    qudt:scalingOf unit:PA ;
    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 quantitykind: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:Da a qudt:Unit ;
    rdfs:label "Dalton"^^xsd:string,
        "Dalton"@en ;
    dcterms:description "The unified atomic mass unit (symbol: $\\mu$) or dalton (symbol: Da) is a unit that is used for indicating mass on an atomic or molecular scale. It is defined as one twelfth of the rest mass of an unbound atom of carbon-12 in its nuclear and electronic ground state, and has a value of $1.660538782(83) \\times 10^{-27} kg$. One $Da$ is approximately equal to the mass of one proton or one neutron. The CIPM have categorised it as a \"non-SI unit whose values in SI units must be obtained experimentally\"."^^qudt:LatexString ;
    dcterms:isReplacedBy unit:DA ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS> ;
    qudt:conversionMultiplier 0.00000000000000000000000000166053878283 ;
    qudt:conversionMultiplierSN 1.660539e-27 ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Dalton"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:exactMatch unit:AMU,
        unit:U ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T0D0> ;
    qudt:hasQuantityKind quantitykind:MolecularMass ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Atomic_mass_unit"^^xsd:anyURI,
        "http://en.wikipedia.org/wiki/Dalton?oldid=495038954"^^xsd:anyURI ;
    qudt:scalingOf unit:KiloGM ;
    qudt:siExactMatch <https://si-digital-framework.org/SI/units/dalton> ;
    qudt:symbol "Da"^^xsd:string ;
    qudt:ucumCode "u"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "D43"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q483261> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> ;
    skos:altLabel "atomic-mass-unit"^^xsd:string .

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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind:MagneticField,
        quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind:Activity,
        quantitykind: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 a qudt:Unit ;
    rdfs:label "Kilovolt Ampere"^^xsd:string,
        "Kilovolt Ampér"@cs,
        "Kilovolt Ampere"@de,
        "Kilovolt Ampere"@en,
        "Kilovoltio Amperio"@es,
        "Kilovolt Ampère"@fr,
        "Chilovolt Ampere"@it,
        "Kilovolt Ampere"@ms,
        "Kilowolt Amper"@pl,
        "Kilovolt Amper"@ro,
        "Kilovolt Amper"@sl,
        "Kilovolt Amper"@tr ;
    dcterms:description "1 000-fold of the product of the SI derived unit volt and the SI base unit ampere"^^rdf:HTML ;
    dcterms:isReplacedBy unit:KiloVA ;
    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 1000.0 ;
    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:KiloV ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:A ] ;
    qudt:hasQuantityKind quantitykind:ApparentPower ;
    qudt:iec61360Code "0112/2///62720#UAA581"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA581"^^xsd:anyURI ;
    qudt:plainTextDescription "1 000-fold of the product of the SI derived unit volt and the SI base unit ampere"^^xsd:string ;
    qudt:symbol "kV·A"^^xsd:string ;
    qudt:ucumCode "kV.A"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "KVA"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q29924639> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloV-A-HR a qudt:Unit ;
    rdfs:label "Kilovolt Ampere Hour"^^xsd:string,
        "Kilovolt Ampere Hour"@en ;
    dcterms:description "product of the 1 000-fold of the unit for apparent by ampere and the unit hour"^^rdf:HTML ;
    dcterms:isReplacedBy unit: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 3600000.0 ;
    qudt:conversionMultiplierSN 3.6e+06 ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloV ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:A ] ;
    qudt:hasQuantityKind quantitykind:Energy ;
    qudt:hasReciprocalUnit unit:PER-KiloVA-HR ;
    qudt:iec61360Code "0112/2///62720#UAB160"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB160"^^xsd:anyURI ;
    qudt:plainTextDescription "product of the 1 000-fold of the unit for apparent by ampere and the unit hour"^^xsd:string ;
    qudt:symbol "kV·A·h"^^xsd:string ;
    qudt:ucumCode "kV.A.h"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "C79"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q107299873> ;
    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 quantitykind: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 a qudt:Unit ;
    rdfs:label "KiloVolt Ampere Reactive"^^xsd:string,
        "KiloVolt Ampere Reactive"@en ;
    dcterms:description "1 000-fold of the unit var"^^rdf:HTML ;
    dcterms:isReplacedBy unit:KiloVAR ;
    qudt:conversionMultiplier 1000.0 ;
    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:A_Reactive ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloV ] ;
    qudt:hasQuantityKind quantitykind:ReactivePower ;
    qudt:iec61360Code "0112/2///62720#UAA648"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA648"^^xsd:anyURI ;
    qudt:plainTextDescription "1 000-fold of the unit var"^^xsd:string ;
    qudt:symbol "kV·A{Reactive}"^^xsd:string ;
    qudt:ucumCode "kV.A{reactive}"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "KVR"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q107299747> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloV-A_Reactive-HR a qudt:Unit ;
    rdfs:label "KiloVolt Ampere Reactive Hour"^^xsd:string,
        "KiloVolt Ampere Reactive Hour"@en ;
    dcterms:description "product of the 1,000-fold of the unit volt ampere reactive and the unit hour"^^rdf:HTML ;
    dcterms:isReplacedBy unit:KiloVAR-HR ;
    qudt:conversionMultiplier 3600000.0 ;
    qudt:conversionMultiplierSN 3.6e+06 ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloV ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:A_Reactive ] ;
    qudt:hasQuantityKind quantitykind:Energy ;
    qudt:iec61360Code "0112/2///62720#UAB195"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB195"^^xsd:anyURI ;
    qudt:plainTextDescription "product of the 1 000-fold of the unit volt ampere reactive and the unit hour"^^xsd:string ;
    qudt:symbol "kV·A{Reactive}·h"^^xsd:string ;
    qudt:ucumCode "kV.A.h{reactive}"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "K3"^^xsd:string ;
    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 quantitykind: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:LB-PER-GAL a qudt:Unit ;
    rdfs:label "Pound per Gallon"^^xsd:string,
        "Pound per Gallon"@en ;
    dcterms:description "\"Pound per Gallon\" is an Imperial unit for  'Density' expressed as $lb/gal$."^^qudt:LatexString ;
    dcterms:isReplacedBy unit:LB-PER-GAL_IMP ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 99.7763727 ;
    qudt:conversionMultiplierSN 9.977637e+01 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:deprecated true ;
    qudt:exactMatch unit:LB-PER-GAL_IMP,
        unit:LB-PER-GAL_UK ;
    qudt:expression "$lb/gal$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M1H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GAL ] ;
    qudt:hasQuantityKind quantitykind:Density,
        quantitykind:MassDensity ;
    qudt:symbol "lb/gal"^^xsd:string ;
    qudt:ucumCode "[lb_av].[gal_br]-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MIL a qudt:Unit ;
    rdfs:label "Mil Angle (nato)"^^xsd:string,
        "Mil Angle (nato)"@en ;
    dcterms:description "The Mil unit of plane angle, as defined by NATO to be 1/6400 of a circle."^^rdf:HTML ;
    dcterms:isReplacedBy unit:MIL_Angle ;
    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.00098174770424681038701957605727484 ;
    qudt:conversionMultiplierSN 9.817477e-04 ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Angle,
        quantitykind:PlaneAngle ;
    qudt:iec61360Code "0112/2///62720#UAB205"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB205"^^xsd:anyURI ;
    qudt:scalingOf unit:RAD ;
    qudt:symbol "mil{NATO}"^^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 quantitykind:CurrencyPerFlight ;
    qudt:symbol "$M/flight"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MegaV-A a qudt:Unit ;
    rdfs:label "Megavolt Ampere"^^xsd:string,
        "Megavolt Ampér"@cs,
        "Megavolt Ampere"@de,
        "Megavolt Ampere"@en,
        "Megavoltio Amperio"@es,
        "Megavolt Ampère"@fr,
        "Megavolt Ampere"@it,
        "Megavolt Ampere"@ms,
        "Megawolt Amper"@pl,
        "Megavolt Amper"@ro,
        "Megavolt Amper"@sl,
        "Megavolt Amper"@tr ;
    dcterms:description "1,000,000-fold of the product of the SI derived unit volt and the SI base unit ampere"^^rdf:HTML ;
    dcterms:isReplacedBy unit:MegaVA ;
    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 1000000.0 ;
    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:MegaV ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:A ] ;
    qudt:hasQuantityKind quantitykind:ApparentPower ;
    qudt:iec61360Code "0112/2///62720#UAA222"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA222"^^xsd:anyURI ;
    qudt:plainTextDescription "1,000,000-fold of the product of the SI derived unit volt and the SI base unit ampere"^^xsd:string ;
    qudt:symbol "MV·A"^^xsd:string ;
    qudt:ucumCode "MV.A"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "MVA"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q5409016> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MegaV-A-HR a qudt:Unit ;
    rdfs:label "Megavolt Ampere Hour"^^xsd:string,
        "Megavolt Ampere Hour"@en ;
    dcterms:description "product of the 1,000,000-fold of the unit for apparent by ampere and the unit hour"^^rdf:HTML ;
    dcterms:isReplacedBy unit:MegaVA-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 3600000000.0 ;
    qudt:conversionMultiplierSN 3.6e+09 ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:A ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MegaV ] ;
    qudt:hasQuantityKind quantitykind:Energy ;
    qudt:plainTextDescription "product of the 1,000,000-fold of the unit for apparent by ampere and the unit hour"^^xsd:string ;
    qudt:symbol "MV·A·h"^^xsd:string ;
    qudt:ucumCode "MV.A.h"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MegaV-A_Reactive a qudt:Unit ;
    rdfs:label "MegaVolt Ampere Reactive"^^xsd:string,
        "MegaVolt Ampere Reactive"@en ;
    dcterms:description "1,000,000-fold of the unit volt ampere reactive"^^rdf:HTML ;
    dcterms:isReplacedBy unit:MegaVAR ;
    qudt:conversionMultiplier 1000000.0 ;
    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:MegaV ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:A_Reactive ] ;
    qudt:hasQuantityKind quantitykind:ReactivePower ;
    qudt:iec61360Code "0112/2///62720#UAB199"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB199"^^xsd:anyURI ;
    qudt:plainTextDescription "1,000,000-fold of the unit volt ampere reactive"^^xsd:string ;
    qudt:symbol "MV·A{Reactive}"^^xsd:string ;
    qudt:ucumCode "MV.A{reactive}"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "MAR"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q107299751> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MegaV-A_Reactive-HR a qudt:Unit ;
    rdfs:label "MegaVolt Ampere Reactive Hour"^^xsd:string,
        "MegaVolt Ampere Reactive Hour"@en ;
    dcterms:description "product of the 1,000,000-fold of the unit volt ampere reactive and the unit hour"^^rdf:HTML ;
    dcterms:isReplacedBy unit:MegaVAR-HR ;
    qudt:conversionMultiplier 3600000000.0 ;
    qudt:conversionMultiplierSN 3.6e+09 ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:A_Reactive ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MegaV ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ] ;
    qudt:hasQuantityKind quantitykind:Energy ;
    qudt:iec61360Code "0112/2///62720#UAB198"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB198"^^xsd:anyURI ;
    qudt:plainTextDescription "product of the 1,000,000-fold of the unit volt ampere reactive and the unit hour"^^xsd:string ;
    qudt:symbol "MV·A{Reactive}·h"^^xsd:string ;
    qudt:ucumCode "MV.A{reactive}.h"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "MAH"^^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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind:Acceleration,
        quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind:Compressibility,
        quantitykind:InversePressure,
        quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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:Pennyweight a qudt:Unit ;
    rdfs:label "Pennyweight"^^xsd:string,
        "Pennyweight"@en ;
    dcterms:description "non SI-conforming unit of mass which comes from the Anglo-American Troy or Apothecaries' Weight System of units according to NIST of 1 pwt = 1.555174 10^3 kg"^^rdf:HTML ;
    dcterms:isReplacedBy unit:PENNYWEIGHT ;
    qudt:conversionMultiplier 0.00155517384 ;
    qudt:conversionMultiplierSN 1.555174e-03 ;
    qudt:deprecated true ;
    qudt:exactMatch unit:DWT ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T0D0> ;
    qudt:hasQuantityKind quantitykind:Mass ;
    qudt:iec61360Code "0112/2///62720#UAB182"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB182"^^xsd:anyURI ;
    qudt:plainTextDescription "non SI-conforming unit of mass which comes from the Anglo-American Troy or Apothecaries' Weight System of units according to NIST of 1 pwt = 1.555174 10^3 kg"^^xsd:string ;
    qudt:scalingOf unit:KiloGM ;
    qudt:symbol "dwt"^^xsd:string ;
    qudt:ucumCode "[pwt_tr]"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "DWT"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q1361854> ;
    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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 a qudt:Unit ;
    rdfs:label "Volt Ampere"^^xsd:string,
        "فولت. أمبير"@ar,
        "Волт Ампер"@bg,
        "Volt Ampér"@cs,
        "Volt Ampere"@de,
        "Βολτ Αμπέρ"@el,
        "Volt Ampere"@en,
        "Voltio Amperio"@es,
        "Volt Ampère"@fr,
        "Volt Ampere"@it,
        "Voltium Amperium"@la,
        "Volt Ampere"@ms,
        "Wolt Amper"@pl,
        "Volt Ampere"@pt,
        "Volt Amper"@ro,
        "Вольт Ампер"@ru,
        "Volt Amper"@sl,
        "Volt Amper"@tr ;
    dcterms:description "product of the SI derived unit volt and the SI base unit ampere"^^rdf:HTML ;
    dcterms:isReplacedBy unit:VA ;
    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 1.0 ;
    qudt:conversionMultiplierSN 1e+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 ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:V ] ;
    qudt:hasQuantityKind quantitykind:ApparentPower ;
    qudt:iec61360Code "0112/2///62720#UAA298"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA298"^^xsd:anyURI ;
    qudt:plainTextDescription "product of the SI derived unit volt and the SI base unit ampere"^^xsd:string ;
    qudt:symbol "V·A"^^xsd:string ;
    qudt:ucumCode "V.A"^^qudt:UCUMcs ;
    qudt:udunitsCode "VA"^^xsd:string ;
    qudt:uneceCommonCode "D46"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q550341> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:V-A-HR a qudt:Unit ;
    rdfs:label "Volt Ampere Hour"^^xsd:string,
        "Volt Ampere Hour"@en ;
    dcterms:description "product of the unit for apparent by ampere and the unit hour"^^rdf:HTML ;
    dcterms:isReplacedBy unit:VA-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 3600.0 ;
    qudt:conversionMultiplierSN 3.6e+03 ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:V ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:A ] ;
    qudt:hasQuantityKind quantitykind:Energy ;
    qudt:plainTextDescription "product of the unit for apparent by ampere and the unit hour"^^xsd:string ;
    qudt:symbol "V·A·h"^^xsd:string ;
    qudt:ucumCode "V.A.h"^^qudt:UCUMcs ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q107299861> ;
    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 quantitykind: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 a qudt:Unit ;
    rdfs:label "Volt Ampere Reactive"^^xsd:string,
        "Volt Ampere Reactive"@en ;
    dcterms:description "unit with special name for reactive power"^^rdf:HTML ;
    dcterms:isReplacedBy unit:VAR ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:V ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:A_Reactive ] ;
    qudt:hasQuantityKind quantitykind:ReactivePower ;
    qudt:iec61360Code "0112/2///62720#UAB023"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB023"^^xsd:anyURI ;
    qudt:plainTextDescription "unit with special name for reactive power"^^xsd:string ;
    qudt:symbol "V·A{Reactive}"^^xsd:string ;
    qudt:ucumCode "V.A{reactive}"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "D44"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q630369> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:V-A_Reactive-HR a qudt:Unit ;
    rdfs:label "Volt Ampere Reactive Hour"^^xsd:string,
        "Volt Ampere Reactive Hour"@en ;
    dcterms:description "product of the unit volt ampere reactive and the unit hour"^^rdf:HTML ;
    dcterms:isReplacedBy unit:VAR-HR ;
    qudt:conversionMultiplier 3600.0 ;
    qudt:conversionMultiplierSN 3.6e+03 ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:V ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:A_Reactive ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ] ;
    qudt:hasQuantityKind quantitykind:Energy ;
    qudt:plainTextDescription "product of the unit volt ampere reactive and the unit hour"^^xsd:string ;
    qudt:symbol "V·A{reactive}·h"^^xsd:string ;
    qudt:ucumCode "V.A{reactive}.h"^^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 quantitykind: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> .

unit:failures-in-time a qudt:Unit ;
    rdfs:label "Failures in Time"^^xsd:string,
        "Failures in Time"@en ;
    dcterms:description "unit of failure rate"^^rdf:HTML ;
    qudt:conversionMultiplier 0.0 ;
    qudt:conversionMultiplierSN 0e+00 ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:hasQuantityKind quantitykind:Frequency ;
    qudt:iec61360Code "0112/2///62720#UAB403"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB403"^^xsd:anyURI ;
    qudt:plainTextDescription "unit of failure rate"^^xsd:string ;
    qudt:symbol "failures/s"^^xsd:string ;
    qudt:ucumCode "s-1{failures}"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "FIT"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

<http://voag.linkedmodel.org/schema/voag#QUDT-CURRENCY-UNITS-VocabCatalogEntry> a ns1: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 ns1: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 ns1: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 ns1: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 ns1: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> ns1:namespace "http://www.linkedmodel.org/schema/dtype#"^^xsd:anyURI ;
    ns1:namespacePrefix "dtype"^^xsd:string .

ns1:ConstraintsGraph a ns1:GraphRole ;
    rdfs:label "Constraints graph"^^xsd:string ;
    dcterms:description "A \"vaem:ConstraintsGraph\" is a graph that holds SPIN constraints"^^xsd:string ;
    ns1:filePrefix "CONSTRAINTS"^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> .

ns1:ControllersGraph a ns1:GraphRole ;
    rdfs:label "Controllers graph"^^xsd:string ;
    ns1:filePrefix "CONTROLLERS"^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> .

ns1:CurationGraph a ns1: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 ;
    ns1:filePrefix "CURATION"^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> .

ns1:DataGraph a ns1:GraphRole ;
    rdfs:label "Data graph"^^xsd:string ;
    ns1:filePrefix "DATA"^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> .

ns1:DocumentationGraph a ns1:GraphRole ;
    rdfs:label "Documentation graph"^^xsd:string ;
    ns1:filePrefix "DOC"^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> .

ns1:FunctionsGraph a ns1:GraphRole ;
    rdfs:label "Functions graph"^^xsd:string ;
    ns1:filePrefix "FUNCTIONS"^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> .

ns1:LinkSetGraph a ns1: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 ;
    ns1:filePrefix "LINKSET"^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> .

ns1:MappingGraph a ns1: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 ;
    ns1:filePrefix "MAPPINGS"^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> .

ns1:ProxyGraph a ns1:GraphRole ;
    rdfs:label "Proxy graph"^^xsd:string ;
    ns1:filePrefix "PROXY"^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> .

ns1:RulesGraph a ns1:GraphRole ;
    rdfs:label "Rules Graph"^^xsd:string ;
    ns1:filePrefix "RULES"^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> .

ns1:ScriptGraph a ns1:GraphRole ;
    rdfs:label "Script graph"^^xsd:string ;
    ns1:filePrefix "SCRIPT"^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> .

ns1:TransformsGraph a ns1:GraphRole ;
    rdfs:label "Transforms graph"^^xsd:string ;
    ns1:filePrefix "TRANSFORMS"^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> .

ns1:ViewGraph a ns1:GraphRole ;
    rdfs:label "View graph"^^xsd:string ;
    ns1:filePrefix "VIEWS"^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> .

ns1:VocabularyGraph a ns1:GraphRole ;
    rdfs:label "Vocabulary graph"^^xsd:string ;
    dcterms:description "An RDF/OWL Graph that is a controlled set of instances."^^xsd:string ;
    ns1:filePrefix "VOCAB"^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> .

ns1: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> .

ns1: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 .

ns1:hasGraphMetadata a owl:AnnotationProperty ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> ;
    rdfs:range ns1:GraphMetaData .

ns1: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 .

ns1: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 .

ns1: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 .

ns1: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 .

ns1: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 .

ns1: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 .

ns1: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 .

ns1: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> .

ns1: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 ns1:date .

ns1: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 .

ns1: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 .

ns1: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 .

ns1: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:duration 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:parameter sh:ClassConstraintComponent-class .

sh:ClosedConstraintComponent a sh:ConstraintComponent ;
    rdfs:label "Closed constraint component"@en ;
    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:parameter sh:ClosedConstraintComponent-closed,
        sh:ClosedConstraintComponent-ignoredProperties .

sh:DatatypeConstraintComponent a sh:ConstraintComponent ;
    rdfs:label "Datatype constraint component"@en ;
    rdfs:comment "A constraint component that can be used to restrict the datatype of all value nodes."@en ;
    rdfs:isDefinedBy sh: ;
    sh:parameter sh:DatatypeConstraintComponent-datatype .

sh:DisjointConstraintComponent a sh:ConstraintComponent ;
    rdfs:label "Disjoint constraint component"@en ;
    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:EqualsConstraintComponent a sh:ConstraintComponent ;
    rdfs:label "Equals constraint component"@en ;
    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:parameter sh:EqualsConstraintComponent-equals .

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 ;
    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:parameter sh:HasValueConstraintComponent-hasValue .

sh:InConstraintComponent a sh:ConstraintComponent ;
    rdfs:label "In constraint component"@en ;
    rdfs:comment "A constraint component that can be used to exclusively enumerate the permitted value nodes."@en ;
    rdfs:isDefinedBy sh: ;
    sh:parameter sh:InConstraintComponent-in .

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 ;
    rdfs:comment "A constraint component that can be used to enumerate language tags that all value nodes must have."@en ;
    rdfs:isDefinedBy sh: ;
    sh:parameter sh:LanguageInConstraintComponent-languageIn .

sh:LessThanConstraintComponent a sh:ConstraintComponent ;
    rdfs:label "Less-than constraint component"@en ;
    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:parameter sh:LessThanConstraintComponent-lessThan .

sh:LessThanOrEqualsConstraintComponent a sh:ConstraintComponent ;
    rdfs:label "less-than-or-equals constraint component"@en ;
    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:parameter sh:LessThanOrEqualsConstraintComponent-lessThanOrEquals .

sh:MaxCountConstraintComponent a sh:ConstraintComponent ;
    rdfs:label "Max-count constraint component"@en ;
    rdfs:comment "A constraint component that can be used to restrict the maximum number of value nodes."@en ;
    rdfs:isDefinedBy sh: ;
    sh:parameter sh:MaxCountConstraintComponent-maxCount .

sh:MaxExclusiveConstraintComponent a sh:ConstraintComponent ;
    rdfs:label "Max-exclusive constraint component"@en ;
    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:parameter sh:MaxExclusiveConstraintComponent-maxExclusive .

sh:MaxInclusiveConstraintComponent a sh:ConstraintComponent ;
    rdfs:label "Max-inclusive constraint component"@en ;
    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:parameter sh:MaxInclusiveConstraintComponent-maxInclusive .

sh:MaxLengthConstraintComponent a sh:ConstraintComponent ;
    rdfs:label "Max-length constraint component"@en ;
    rdfs:comment "A constraint component that can be used to restrict the maximum string length of value nodes."@en ;
    rdfs:isDefinedBy sh: ;
    sh:parameter sh:MaxLengthConstraintComponent-maxLength .

sh:MinCountConstraintComponent a sh:ConstraintComponent ;
    rdfs:label "Min-count constraint component"@en ;
    rdfs:comment "A constraint component that can be used to restrict the minimum number of value nodes."@en ;
    rdfs:isDefinedBy sh: ;
    sh:parameter sh:MinCountConstraintComponent-minCount .

sh:MinExclusiveConstraintComponent a sh:ConstraintComponent ;
    rdfs:label "Min-exclusive constraint component"@en ;
    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:parameter sh:MinExclusiveConstraintComponent-minExclusive .

sh:MinInclusiveConstraintComponent a sh:ConstraintComponent ;
    rdfs:label "Min-inclusive constraint component"@en ;
    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:parameter sh:MinInclusiveConstraintComponent-minInclusive .

sh:MinLengthConstraintComponent a sh:ConstraintComponent ;
    rdfs:label "Min-length constraint component"@en ;
    rdfs:comment "A constraint component that can be used to restrict the minimum string length of value nodes."@en ;
    rdfs:isDefinedBy sh: ;
    sh:parameter sh:MinLengthConstraintComponent-minLength .

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:parameter sh:NodeConstraintComponent-node .

sh:NodeKindConstraintComponent a sh:ConstraintComponent ;
    rdfs:label "Node-kind constraint component"@en ;
    rdfs:comment "A constraint component that can be used to restrict the RDF node kind of each value node."@en ;
    rdfs:isDefinedBy sh: ;
    sh:parameter sh:NodeKindConstraintComponent-nodeKind .

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: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 ;
    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:parameter sh:PatternConstraintComponent-flags,
        sh:PatternConstraintComponent-pattern .

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: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:parameter sh:QualifiedMinCountConstraintComponent-qualifiedMinCount,
        sh:QualifiedMinCountConstraintComponent-qualifiedValueShape,
        sh:QualifiedMinCountConstraintComponent-qualifiedValueShapesDisjoint .

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 ;
    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:parameter sh:UniqueLangConstraintComponent-uniqueLang .

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:message a rdf:Property ;
    rdfs:label "message"@en ;
    rdfs:comment "A human-readable message (possibly with placeholders for variables) explaining the cause of the result."@en ;
    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: .

sh:parameter a rdf:Property ;
    rdfs:label "parameter"@en ;
    rdfs:comment "The parameters of a function or constraint component."@en ;
    rdfs:domain sh:Parameterizable ;
    rdfs:isDefinedBy sh: ;
    rdfs:range sh:Parameter .

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:severity a rdf:Property ;
    rdfs:label "severity"@en ;
    rdfs:comment "Defines the severity that validation results produced by a shape must have. Defaults to sh:Violation."@en ;
    rdfs:domain sh:Shape ;
    rdfs:isDefinedBy sh: ;
    rdfs:range sh:Severity .

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 .

<http://data.ashrae.org/bacnet/2020#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 .

<http://data.ashrae.org/bacnet/2020#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 .

<http://data.ashrae.org/bacnet/2020#object-identifier> a rdf:Property ;
    rdfs:label "Object 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 .

<http://data.ashrae.org/bacnet/2020#object-name> a rdf:Property ;
    rdfs:label "Object name"^^xsd:string ;
    rdfs:comment "The Object_Name property of the object being referenced.  For example, for the object name of an Analog Value Object, see ASHRAE 135-2024 Clause 12.4.2."^^xsd:string .

<http://data.ashrae.org/bacnet/2020#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 .

<http://data.ashrae.org/bacnet/2020#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 .

<http://data.ashrae.org/bacnet/2020#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-277VLN-1Ph-60Hz a s223:AC-277VLN-1Ph-60Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-277VLN-1Ph-60Hz"^^xsd:string ;
    s223:hasACLineNeutralVoltage s223:Voltage-277V ;
    s223:hasFrequency s223:Frequency-60Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-SinglePhase ;
    rdfs:comment "`AC-277VLN-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: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: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-Model a s223:Aspect-Model,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "Model"^^xsd:string ;
    rdfs:comment "The property value is a model identifier of the product."^^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: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: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: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-Lighting a s223:Class,
        s223:Domain-Lighting,
        sh:NodeShape ;
    rdfs:label "Lighting domain"^^xsd:string ;
    rdfs:comment "The domain that represents equipment that illuminate and manage the distribution of light within or outside of a building. Example `Domain-Lighting` equipment include `Luminaire`, `LightSensor`, and `WindowShade`."^^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 quantitykind: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 quantitykind: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 quantitykind:VolumeFraction ;
            qudt:hasUnit unit:PERCENT ] ;
    s223:hasFreezingPoint [ a s223:QuantifiableProperty ;
            rdfs:label "Freezing point"^^xsd:string ;
            qudt:hasQuantityKind quantitykind: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 quantitykind: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 quantitykind:VolumeFraction ;
            qudt:hasUnit unit:PERCENT ] ;
    s223:hasFreezingPoint [ a s223:QuantifiableProperty ;
            rdfs:label "Freezing point"^^xsd:string ;
            qudt:hasQuantityKind quantitykind: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 quantitykind: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-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-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-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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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> .

ex1:00109 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "OM.externalReference" .

ex1:00110 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "OM" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:00109 .

ex1:00111 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "UOOS.externalReference" .

ex1:00112 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "UOOS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00111 .

ex1:00113 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "AS.externalReference" .

ex1:00114 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "AS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00113 .

ex1:00115 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "SM.externalReference" .

ex1:00116 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "SM" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:00115 .

ex1:00117 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "RT.externalReference" .

ex1:00118 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "RT" ;
    s223:hasExternalReference ex1:00117 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00119 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "OCSP.externalReference" .

ex1:00120 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "OCSP" ;
    s223:hasExternalReference ex1:00119 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00121 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "OHSP.externalReference" .

ex1:00122 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "OHSP" ;
    s223:hasExternalReference ex1:00121 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00123 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "UOCSP.externalReference" .

ex1:00124 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "UOCSP" ;
    s223:hasExternalReference ex1:00123 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00125 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "UOHSP.externalReference" .

ex1:00126 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "UOHSP" ;
    s223:hasExternalReference ex1:00125 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00127 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "MCSP.externalReference" .

ex1:00128 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "MCSP" ;
    s223:hasExternalReference ex1:00127 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00129 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "MCSP.externalReference" .

ex1:00130 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "MCSP" ;
    s223:hasExternalReference ex1:00129 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00131 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "MHSP.externalReference" .

ex1:00132 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "MHSP" ;
    s223:hasExternalReference ex1:00131 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00133 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "MHSP.externalReference" .

ex1:00134 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "MHSP" ;
    s223:hasExternalReference ex1:00133 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00135 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "MSPD.externalReference" .

ex1:00136 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "MSPD" ;
    s223:hasExternalReference ex1:00135 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00137 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "CHTM.externalReference" .

ex1:00138 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "CHTM" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00137 .

ex1:00139 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "FS.externalReference" .

ex1:00141 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "AD.externalReference" .

ex1:00142 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "AD" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:00141 .

ex1:00143 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "TOO.externalReference" .

ex1:00144 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "TOO" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00143 .

ex1:00145 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "CUO.externalReference" .

ex1:00146 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "CUO" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:00145 .

ex1:00147 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "RCPON.externalReference" .

ex1:00148 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "RCPON" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:00147 .

ex1:00149 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "RCPOM.externalReference" .

ex1:00150 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "RCPOM" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00149 .

ex1:00151 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "RCPSP.externalReference" .

ex1:00152 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "RCPSP" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00151 .

ex1:00153 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "FSS.externalReference" .

ex1:00154 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "FSS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00153 .

ex1:00155 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "FSR.externalReference" .

ex1:00156 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "FSR" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00155 .

ex1:00157 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "IFS.externalReference" .

ex1:00159 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "CS.externalReference" .

ex1:00160 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "CS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00159 .

ex1:00161 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "TOS.externalReference" .

ex1:00162 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "TOS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00161 .

ex1:00163 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "CPS.externalReference" .

ex1:00164 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "CPS" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:00163 .

ex1:00165 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "AHS.externalReference" .

ex1:00166 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "AHS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00165 .

ex1:00167 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "FTO.externalReference" .

ex1:00168 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "FTO" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00167 .

ex1:00169 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "IUCO.externalReference" .

ex1:00170 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "IUCO" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00169 .

ex1:00171 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "RAT.externalReference" .

ex1:00172 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "RAT" ;
    s223:hasExternalReference ex1:00171 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00173 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "DAT.externalReference" .

ex1:00174 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "DAT" ;
    s223:hasExternalReference ex1:00173 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00175 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "LPT.externalReference" .

ex1:00176 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "LPT" ;
    s223:hasExternalReference ex1:00175 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00177 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "GPT.externalReference" .

ex1:00178 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "GPT" ;
    s223:hasExternalReference ex1:00177 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00179 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "EVP.externalReference" .

ex1:00181 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "FP.externalReference" .

ex1:00182 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "FP" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00181 .

ex1:00216 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "OM.externalReference" .

ex1:00217 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "OM" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:00216 .

ex1:00218 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "UOOS.externalReference" .

ex1:00219 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "UOOS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00218 .

ex1:00220 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "AS.externalReference" .

ex1:00221 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "AS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00220 .

ex1:00222 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "SM.externalReference" .

ex1:00223 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "SM" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:00222 .

ex1:00224 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "RT.externalReference" .

ex1:00225 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "RT" ;
    s223:hasExternalReference ex1:00224 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00226 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "OCSP.externalReference" .

ex1:00227 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "OCSP" ;
    s223:hasExternalReference ex1:00226 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00228 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "OHSP.externalReference" .

ex1:00229 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "OHSP" ;
    s223:hasExternalReference ex1:00228 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00230 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "UOCSP.externalReference" .

ex1:00231 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "UOCSP" ;
    s223:hasExternalReference ex1:00230 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00232 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "UOHSP.externalReference" .

ex1:00233 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "UOHSP" ;
    s223:hasExternalReference ex1:00232 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00234 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "MCSP.externalReference" .

ex1:00235 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "MCSP" ;
    s223:hasExternalReference ex1:00234 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00236 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "MCSP.externalReference" .

ex1:00237 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "MCSP" ;
    s223:hasExternalReference ex1:00236 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00238 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "MHSP.externalReference" .

ex1:00239 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "MHSP" ;
    s223:hasExternalReference ex1:00238 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00240 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "MHSP.externalReference" .

ex1:00241 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "MHSP" ;
    s223:hasExternalReference ex1:00240 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00242 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "MSPD.externalReference" .

ex1:00243 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "MSPD" ;
    s223:hasExternalReference ex1:00242 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00244 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "CHTM.externalReference" .

ex1:00245 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "CHTM" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00244 .

ex1:00246 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "FS.externalReference" .

ex1:00248 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "AD.externalReference" .

ex1:00249 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "AD" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:00248 .

ex1:00250 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "TOO.externalReference" .

ex1:00251 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "TOO" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00250 .

ex1:00252 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "CUO.externalReference" .

ex1:00253 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "CUO" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:00252 .

ex1:00254 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "RCPON.externalReference" .

ex1:00255 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "RCPON" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:00254 .

ex1:00256 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "RCPOM.externalReference" .

ex1:00257 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "RCPOM" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00256 .

ex1:00258 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "RCPSP.externalReference" .

ex1:00259 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "RCPSP" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00258 .

ex1:00260 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "FSS.externalReference" .

ex1:00261 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "FSS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00260 .

ex1:00262 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "FSR.externalReference" .

ex1:00263 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "FSR" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00262 .

ex1:00264 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "IFS.externalReference" .

ex1:00266 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "CS.externalReference" .

ex1:00267 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "CS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00266 .

ex1:00268 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "TOS.externalReference" .

ex1:00269 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "TOS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00268 .

ex1:00270 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "CPS.externalReference" .

ex1:00271 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "CPS" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:00270 .

ex1:00272 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "AHS.externalReference" .

ex1:00273 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "AHS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00272 .

ex1:00274 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "FTO.externalReference" .

ex1:00275 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "FTO" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00274 .

ex1:00276 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "IUCO.externalReference" .

ex1:00277 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "IUCO" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00276 .

ex1:00278 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "RAT.externalReference" .

ex1:00279 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "RAT" ;
    s223:hasExternalReference ex1:00278 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00280 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "DAT.externalReference" .

ex1:00281 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "DAT" ;
    s223:hasExternalReference ex1:00280 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00282 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "LPT.externalReference" .

ex1:00283 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "LPT" ;
    s223:hasExternalReference ex1:00282 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00284 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "GPT.externalReference" .

ex1:00285 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "GPT" ;
    s223:hasExternalReference ex1:00284 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00286 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "EVP.externalReference" .

ex1:00288 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "FP.externalReference" .

ex1:00289 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "FP" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00288 .

ex1:00323 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "OM.externalReference" .

ex1:00324 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "OM" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:00323 .

ex1:00325 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "UOOS.externalReference" .

ex1:00326 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "UOOS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00325 .

ex1:00327 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "AS.externalReference" .

ex1:00328 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "AS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00327 .

ex1:00329 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "SM.externalReference" .

ex1:00330 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "SM" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:00329 .

ex1:00331 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "RT.externalReference" .

ex1:00332 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "RT" ;
    s223:hasExternalReference ex1:00331 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00333 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "OCSP.externalReference" .

ex1:00334 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "OCSP" ;
    s223:hasExternalReference ex1:00333 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00335 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "OHSP.externalReference" .

ex1:00336 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "OHSP" ;
    s223:hasExternalReference ex1:00335 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00337 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "UOCSP.externalReference" .

ex1:00338 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "UOCSP" ;
    s223:hasExternalReference ex1:00337 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00339 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "UOHSP.externalReference" .

ex1:00340 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "UOHSP" ;
    s223:hasExternalReference ex1:00339 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00341 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "MCSP.externalReference" .

ex1:00342 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "MCSP" ;
    s223:hasExternalReference ex1:00341 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00343 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "MCSP.externalReference" .

ex1:00344 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "MCSP" ;
    s223:hasExternalReference ex1:00343 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00345 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "MHSP.externalReference" .

ex1:00346 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "MHSP" ;
    s223:hasExternalReference ex1:00345 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00347 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "MHSP.externalReference" .

ex1:00348 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "MHSP" ;
    s223:hasExternalReference ex1:00347 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00349 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "MSPD.externalReference" .

ex1:00350 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "MSPD" ;
    s223:hasExternalReference ex1:00349 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00351 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "CHTM.externalReference" .

ex1:00352 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "CHTM" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00351 .

ex1:00353 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "FS.externalReference" .

ex1:00355 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "AD.externalReference" .

ex1:00356 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "AD" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:00355 .

ex1:00357 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "TOO.externalReference" .

ex1:00358 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "TOO" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00357 .

ex1:00359 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "CUO.externalReference" .

ex1:00360 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "CUO" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:00359 .

ex1:00361 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "RCPON.externalReference" .

ex1:00362 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "RCPON" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:00361 .

ex1:00363 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "RCPOM.externalReference" .

ex1:00364 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "RCPOM" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00363 .

ex1:00365 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "RCPSP.externalReference" .

ex1:00366 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "RCPSP" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00365 .

ex1:00367 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "FSS.externalReference" .

ex1:00368 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "FSS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00367 .

ex1:00369 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "FSR.externalReference" .

ex1:00370 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "FSR" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00369 .

ex1:00371 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "IFS.externalReference" .

ex1:00373 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "CS.externalReference" .

ex1:00374 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "CS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00373 .

ex1:00375 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "TOS.externalReference" .

ex1:00376 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "TOS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00375 .

ex1:00377 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "CPS.externalReference" .

ex1:00378 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "CPS" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:00377 .

ex1:00379 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "AHS.externalReference" .

ex1:00380 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "AHS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00379 .

ex1:00381 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "FTO.externalReference" .

ex1:00382 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "FTO" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00381 .

ex1:00383 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "IUCO.externalReference" .

ex1:00384 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "IUCO" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00383 .

ex1:00385 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "RAT.externalReference" .

ex1:00386 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "RAT" ;
    s223:hasExternalReference ex1:00385 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00387 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "DAT.externalReference" .

ex1:00388 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "DAT" ;
    s223:hasExternalReference ex1:00387 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00389 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "LPT.externalReference" .

ex1:00390 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "LPT" ;
    s223:hasExternalReference ex1:00389 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00391 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "GPT.externalReference" .

ex1:00392 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "GPT" ;
    s223:hasExternalReference ex1:00391 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00393 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "EVP.externalReference" .

ex1:00395 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "FP.externalReference" .

ex1:00396 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "FP" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00395 .

ex1:00430 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "OM.externalReference" .

ex1:00431 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "OM" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:00430 .

ex1:00432 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "UOOS.externalReference" .

ex1:00433 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "UOOS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00432 .

ex1:00434 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "AS.externalReference" .

ex1:00435 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "AS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00434 .

ex1:00436 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "SM.externalReference" .

ex1:00437 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "SM" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:00436 .

ex1:00438 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "RT.externalReference" .

ex1:00439 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "RT" ;
    s223:hasExternalReference ex1:00438 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00440 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "OCSP.externalReference" .

ex1:00441 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "OCSP" ;
    s223:hasExternalReference ex1:00440 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00442 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "OHSP.externalReference" .

ex1:00443 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "OHSP" ;
    s223:hasExternalReference ex1:00442 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00444 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "UOCSP.externalReference" .

ex1:00445 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "UOCSP" ;
    s223:hasExternalReference ex1:00444 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00446 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "UOHSP.externalReference" .

ex1:00447 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "UOHSP" ;
    s223:hasExternalReference ex1:00446 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00448 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "MCSP.externalReference" .

ex1:00449 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "MCSP" ;
    s223:hasExternalReference ex1:00448 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00450 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "MCSP.externalReference" .

ex1:00451 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "MCSP" ;
    s223:hasExternalReference ex1:00450 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00452 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "MHSP.externalReference" .

ex1:00453 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "MHSP" ;
    s223:hasExternalReference ex1:00452 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00454 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "MHSP.externalReference" .

ex1:00455 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "MHSP" ;
    s223:hasExternalReference ex1:00454 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00456 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "MSPD.externalReference" .

ex1:00457 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "MSPD" ;
    s223:hasExternalReference ex1:00456 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00458 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "CHTM.externalReference" .

ex1:00459 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "CHTM" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00458 .

ex1:00460 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "FS.externalReference" .

ex1:00462 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "AD.externalReference" .

ex1:00463 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "AD" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:00462 .

ex1:00464 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "TOO.externalReference" .

ex1:00465 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "TOO" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00464 .

ex1:00466 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "CUO.externalReference" .

ex1:00467 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "CUO" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:00466 .

ex1:00468 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "RCPON.externalReference" .

ex1:00469 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "RCPON" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:00468 .

ex1:00470 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "RCPOM.externalReference" .

ex1:00471 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "RCPOM" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00470 .

ex1:00472 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "RCPSP.externalReference" .

ex1:00473 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "RCPSP" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00472 .

ex1:00474 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "FSS.externalReference" .

ex1:00475 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "FSS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00474 .

ex1:00476 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "FSR.externalReference" .

ex1:00477 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "FSR" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00476 .

ex1:00478 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "IFS.externalReference" .

ex1:00480 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "CS.externalReference" .

ex1:00481 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "CS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00480 .

ex1:00482 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "TOS.externalReference" .

ex1:00483 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "TOS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00482 .

ex1:00484 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "CPS.externalReference" .

ex1:00485 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "CPS" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:00484 .

ex1:00486 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "AHS.externalReference" .

ex1:00487 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "AHS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00486 .

ex1:00488 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "FTO.externalReference" .

ex1:00489 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "FTO" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00488 .

ex1:00490 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "IUCO.externalReference" .

ex1:00491 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "IUCO" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00490 .

ex1:00492 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "RAT.externalReference" .

ex1:00493 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "RAT" ;
    s223:hasExternalReference ex1:00492 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00494 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "DAT.externalReference" .

ex1:00495 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "DAT" ;
    s223:hasExternalReference ex1:00494 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00496 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "LPT.externalReference" .

ex1:00497 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "LPT" ;
    s223:hasExternalReference ex1:00496 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00498 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "GPT.externalReference" .

ex1:00499 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "GPT" ;
    s223:hasExternalReference ex1:00498 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00500 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "EVP.externalReference" .

ex1:00502 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "FP.externalReference" .

ex1:00503 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "FP" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00502 .

ex1:00537 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "OM.externalReference" .

ex1:00538 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "OM" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:00537 .

ex1:00539 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "UOOS.externalReference" .

ex1:00540 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "UOOS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00539 .

ex1:00541 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "AS.externalReference" .

ex1:00542 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "AS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00541 .

ex1:00543 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "SM.externalReference" .

ex1:00544 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "SM" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:00543 .

ex1:00545 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "RT.externalReference" .

ex1:00546 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "RT" ;
    s223:hasExternalReference ex1:00545 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00547 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "OCSP.externalReference" .

ex1:00548 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "OCSP" ;
    s223:hasExternalReference ex1:00547 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00549 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "OHSP.externalReference" .

ex1:00550 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "OHSP" ;
    s223:hasExternalReference ex1:00549 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00551 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "UOCSP.externalReference" .

ex1:00552 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "UOCSP" ;
    s223:hasExternalReference ex1:00551 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00553 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "UOHSP.externalReference" .

ex1:00554 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "UOHSP" ;
    s223:hasExternalReference ex1:00553 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00555 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "MCSP.externalReference" .

ex1:00556 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "MCSP" ;
    s223:hasExternalReference ex1:00555 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00557 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "MCSP.externalReference" .

ex1:00558 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "MCSP" ;
    s223:hasExternalReference ex1:00557 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00559 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "MHSP.externalReference" .

ex1:00560 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "MHSP" ;
    s223:hasExternalReference ex1:00559 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00561 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "MHSP.externalReference" .

ex1:00562 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "MHSP" ;
    s223:hasExternalReference ex1:00561 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00563 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "MSPD.externalReference" .

ex1:00564 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "MSPD" ;
    s223:hasExternalReference ex1:00563 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00565 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "CHTM.externalReference" .

ex1:00566 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "CHTM" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00565 .

ex1:00567 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "FS.externalReference" .

ex1:00569 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "AD.externalReference" .

ex1:00570 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "AD" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:00569 .

ex1:00571 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "TOO.externalReference" .

ex1:00572 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "TOO" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00571 .

ex1:00573 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "CUO.externalReference" .

ex1:00574 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "CUO" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:00573 .

ex1:00575 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "RCPON.externalReference" .

ex1:00576 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "RCPON" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:00575 .

ex1:00577 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "RCPOM.externalReference" .

ex1:00578 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "RCPOM" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00577 .

ex1:00579 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "RCPSP.externalReference" .

ex1:00580 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "RCPSP" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00579 .

ex1:00581 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "FSS.externalReference" .

ex1:00582 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "FSS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00581 .

ex1:00583 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "FSR.externalReference" .

ex1:00584 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "FSR" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00583 .

ex1:00585 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "IFS.externalReference" .

ex1:00587 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "CS.externalReference" .

ex1:00588 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "CS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00587 .

ex1:00589 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "TOS.externalReference" .

ex1:00590 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "TOS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00589 .

ex1:00591 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "CPS.externalReference" .

ex1:00592 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "CPS" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:00591 .

ex1:00593 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "AHS.externalReference" .

ex1:00594 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "AHS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00593 .

ex1:00595 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "FTO.externalReference" .

ex1:00596 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "FTO" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00595 .

ex1:00597 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "IUCO.externalReference" .

ex1:00598 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "IUCO" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00597 .

ex1:00599 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "RAT.externalReference" .

ex1:00600 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "RAT" ;
    s223:hasExternalReference ex1:00599 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00601 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "DAT.externalReference" .

ex1:00602 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "DAT" ;
    s223:hasExternalReference ex1:00601 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00603 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "LPT.externalReference" .

ex1:00604 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "LPT" ;
    s223:hasExternalReference ex1:00603 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00605 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "GPT.externalReference" .

ex1:00606 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "GPT" ;
    s223:hasExternalReference ex1:00605 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00607 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "EVP.externalReference" .

ex1:00609 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "FP.externalReference" .

ex1:00610 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "FP" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00609 .

ex1:00644 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "OM.externalReference" .

ex1:00645 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "OM" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:00644 .

ex1:00646 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "UOOS.externalReference" .

ex1:00647 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "UOOS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00646 .

ex1:00648 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "AS.externalReference" .

ex1:00649 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "AS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00648 .

ex1:00650 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "SM.externalReference" .

ex1:00651 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "SM" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:00650 .

ex1:00652 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "RT.externalReference" .

ex1:00653 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "RT" ;
    s223:hasExternalReference ex1:00652 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00654 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "OCSP.externalReference" .

ex1:00655 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "OCSP" ;
    s223:hasExternalReference ex1:00654 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00656 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "OHSP.externalReference" .

ex1:00657 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "OHSP" ;
    s223:hasExternalReference ex1:00656 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00658 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "UOCSP.externalReference" .

ex1:00659 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "UOCSP" ;
    s223:hasExternalReference ex1:00658 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00660 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "UOHSP.externalReference" .

ex1:00661 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "UOHSP" ;
    s223:hasExternalReference ex1:00660 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00662 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "MCSP.externalReference" .

ex1:00663 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "MCSP" ;
    s223:hasExternalReference ex1:00662 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00664 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "MCSP.externalReference" .

ex1:00665 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "MCSP" ;
    s223:hasExternalReference ex1:00664 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00666 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "MHSP.externalReference" .

ex1:00667 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "MHSP" ;
    s223:hasExternalReference ex1:00666 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00668 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "MHSP.externalReference" .

ex1:00669 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "MHSP" ;
    s223:hasExternalReference ex1:00668 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00670 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "MSPD.externalReference" .

ex1:00671 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "MSPD" ;
    s223:hasExternalReference ex1:00670 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00672 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "CHTM.externalReference" .

ex1:00673 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "CHTM" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00672 .

ex1:00674 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "FS.externalReference" .

ex1:00676 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "AD.externalReference" .

ex1:00677 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "AD" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:00676 .

ex1:00678 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "TOO.externalReference" .

ex1:00679 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "TOO" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00678 .

ex1:00680 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "CUO.externalReference" .

ex1:00681 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "CUO" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:00680 .

ex1:00682 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "RCPON.externalReference" .

ex1:00683 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "RCPON" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:00682 .

ex1:00684 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "RCPOM.externalReference" .

ex1:00685 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "RCPOM" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00684 .

ex1:00686 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "RCPSP.externalReference" .

ex1:00687 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "RCPSP" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00686 .

ex1:00688 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "FSS.externalReference" .

ex1:00689 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "FSS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00688 .

ex1:00690 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "FSR.externalReference" .

ex1:00691 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "FSR" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00690 .

ex1:00692 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "IFS.externalReference" .

ex1:00694 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "CS.externalReference" .

ex1:00695 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "CS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00694 .

ex1:00696 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "TOS.externalReference" .

ex1:00697 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "TOS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00696 .

ex1:00698 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "CPS.externalReference" .

ex1:00699 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "CPS" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:00698 .

ex1:00700 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "AHS.externalReference" .

ex1:00701 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "AHS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00700 .

ex1:00702 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "FTO.externalReference" .

ex1:00703 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "FTO" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00702 .

ex1:00704 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "IUCO.externalReference" .

ex1:00705 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "IUCO" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00704 .

ex1:00706 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "RAT.externalReference" .

ex1:00707 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "RAT" ;
    s223:hasExternalReference ex1:00706 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00708 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "DAT.externalReference" .

ex1:00709 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "DAT" ;
    s223:hasExternalReference ex1:00708 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00710 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "LPT.externalReference" .

ex1:00711 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "LPT" ;
    s223:hasExternalReference ex1:00710 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00712 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "GPT.externalReference" .

ex1:00713 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "GPT" ;
    s223:hasExternalReference ex1:00712 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00714 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "EVP.externalReference" .

ex1:00716 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "FP.externalReference" .

ex1:00717 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "FP" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00716 .

ex1:00751 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "OM.externalReference" .

ex1:00752 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "OM" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:00751 .

ex1:00753 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "UOOS.externalReference" .

ex1:00754 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "UOOS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00753 .

ex1:00755 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "AS.externalReference" .

ex1:00756 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "AS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00755 .

ex1:00757 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "SM.externalReference" .

ex1:00758 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "SM" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:00757 .

ex1:00759 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "RT.externalReference" .

ex1:00760 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "RT" ;
    s223:hasExternalReference ex1:00759 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00761 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "OCSP.externalReference" .

ex1:00762 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "OCSP" ;
    s223:hasExternalReference ex1:00761 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00763 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "OHSP.externalReference" .

ex1:00764 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "OHSP" ;
    s223:hasExternalReference ex1:00763 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00765 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "UOCSP.externalReference" .

ex1:00766 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "UOCSP" ;
    s223:hasExternalReference ex1:00765 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00767 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "UOHSP.externalReference" .

ex1:00768 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "UOHSP" ;
    s223:hasExternalReference ex1:00767 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00769 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "MCSP.externalReference" .

ex1:00770 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "MCSP" ;
    s223:hasExternalReference ex1:00769 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00771 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "MCSP.externalReference" .

ex1:00772 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "MCSP" ;
    s223:hasExternalReference ex1:00771 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00773 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "MHSP.externalReference" .

ex1:00774 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "MHSP" ;
    s223:hasExternalReference ex1:00773 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00775 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "MHSP.externalReference" .

ex1:00776 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "MHSP" ;
    s223:hasExternalReference ex1:00775 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00777 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "MSPD.externalReference" .

ex1:00778 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "MSPD" ;
    s223:hasExternalReference ex1:00777 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00779 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "CHTM.externalReference" .

ex1:00780 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "CHTM" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00779 .

ex1:00781 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "FS.externalReference" .

ex1:00783 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "AD.externalReference" .

ex1:00784 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "AD" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:00783 .

ex1:00785 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "TOO.externalReference" .

ex1:00786 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "TOO" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00785 .

ex1:00787 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "CUO.externalReference" .

ex1:00788 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "CUO" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:00787 .

ex1:00789 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "RCPON.externalReference" .

ex1:00790 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "RCPON" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:00789 .

ex1:00791 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "RCPOM.externalReference" .

ex1:00792 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "RCPOM" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00791 .

ex1:00793 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "RCPSP.externalReference" .

ex1:00794 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "RCPSP" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00793 .

ex1:00795 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "FSS.externalReference" .

ex1:00796 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "FSS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00795 .

ex1:00797 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "FSR.externalReference" .

ex1:00798 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "FSR" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00797 .

ex1:00799 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "IFS.externalReference" .

ex1:00801 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "CS.externalReference" .

ex1:00802 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "CS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00801 .

ex1:00803 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "TOS.externalReference" .

ex1:00804 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "TOS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00803 .

ex1:00805 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "CPS.externalReference" .

ex1:00806 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "CPS" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:00805 .

ex1:00807 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "AHS.externalReference" .

ex1:00808 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "AHS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00807 .

ex1:00809 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "FTO.externalReference" .

ex1:00810 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "FTO" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00809 .

ex1:00811 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "IUCO.externalReference" .

ex1:00812 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "IUCO" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00811 .

ex1:00813 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "RAT.externalReference" .

ex1:00814 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "RAT" ;
    s223:hasExternalReference ex1:00813 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00815 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "DAT.externalReference" .

ex1:00816 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "DAT" ;
    s223:hasExternalReference ex1:00815 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00817 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "LPT.externalReference" .

ex1:00818 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "LPT" ;
    s223:hasExternalReference ex1:00817 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00819 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "GPT.externalReference" .

ex1:00820 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "GPT" ;
    s223:hasExternalReference ex1:00819 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00821 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "EVP.externalReference" .

ex1:00823 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "FP.externalReference" .

ex1:00824 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "FP" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00823 .

ex1:00858 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "OM.externalReference" .

ex1:00859 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "OM" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:00858 .

ex1:00860 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "UOOS.externalReference" .

ex1:00861 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "UOOS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00860 .

ex1:00862 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "AS.externalReference" .

ex1:00863 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "AS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00862 .

ex1:00864 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "SM.externalReference" .

ex1:00865 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "SM" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:00864 .

ex1:00866 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "RT.externalReference" .

ex1:00867 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "RT" ;
    s223:hasExternalReference ex1:00866 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00868 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "OCSP.externalReference" .

ex1:00869 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "OCSP" ;
    s223:hasExternalReference ex1:00868 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00870 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "OHSP.externalReference" .

ex1:00871 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "OHSP" ;
    s223:hasExternalReference ex1:00870 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00872 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "UOCSP.externalReference" .

ex1:00873 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "UOCSP" ;
    s223:hasExternalReference ex1:00872 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00874 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "UOHSP.externalReference" .

ex1:00875 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "UOHSP" ;
    s223:hasExternalReference ex1:00874 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00876 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "MCSP.externalReference" .

ex1:00877 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "MCSP" ;
    s223:hasExternalReference ex1:00876 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00878 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "MCSP.externalReference" .

ex1:00879 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "MCSP" ;
    s223:hasExternalReference ex1:00878 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00880 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "MHSP.externalReference" .

ex1:00881 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "MHSP" ;
    s223:hasExternalReference ex1:00880 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00882 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "MHSP.externalReference" .

ex1:00883 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "MHSP" ;
    s223:hasExternalReference ex1:00882 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00884 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "MSPD.externalReference" .

ex1:00885 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "MSPD" ;
    s223:hasExternalReference ex1:00884 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00886 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "CHTM.externalReference" .

ex1:00887 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "CHTM" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00886 .

ex1:00888 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "FS.externalReference" .

ex1:00890 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "AD.externalReference" .

ex1:00891 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "AD" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:00890 .

ex1:00892 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "TOO.externalReference" .

ex1:00893 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "TOO" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00892 .

ex1:00894 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "CUO.externalReference" .

ex1:00895 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "CUO" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:00894 .

ex1:00896 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "RCPON.externalReference" .

ex1:00897 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "RCPON" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:00896 .

ex1:00898 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "RCPOM.externalReference" .

ex1:00899 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "RCPOM" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00898 .

ex1:00900 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "RCPSP.externalReference" .

ex1:00901 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "RCPSP" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00900 .

ex1:00902 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "FSS.externalReference" .

ex1:00903 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "FSS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00902 .

ex1:00904 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "FSR.externalReference" .

ex1:00905 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "FSR" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00904 .

ex1:00906 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "IFS.externalReference" .

ex1:00908 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "CS.externalReference" .

ex1:00909 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "CS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00908 .

ex1:00910 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "TOS.externalReference" .

ex1:00911 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "TOS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00910 .

ex1:00912 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "CPS.externalReference" .

ex1:00913 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "CPS" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:00912 .

ex1:00914 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "AHS.externalReference" .

ex1:00915 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "AHS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00914 .

ex1:00916 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "FTO.externalReference" .

ex1:00917 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "FTO" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00916 .

ex1:00918 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "IUCO.externalReference" .

ex1:00919 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "IUCO" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00918 .

ex1:00920 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "RAT.externalReference" .

ex1:00921 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "RAT" ;
    s223:hasExternalReference ex1:00920 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00922 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "DAT.externalReference" .

ex1:00923 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "DAT" ;
    s223:hasExternalReference ex1:00922 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00924 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "LPT.externalReference" .

ex1:00925 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "LPT" ;
    s223:hasExternalReference ex1:00924 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00926 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "GPT.externalReference" .

ex1:00927 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "GPT" ;
    s223:hasExternalReference ex1:00926 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00928 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "EVP.externalReference" .

ex1:00930 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "FP.externalReference" .

ex1:00931 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "FP" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00930 .

ex1:00965 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "OM.externalReference" .

ex1:00966 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "OM" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:00965 .

ex1:00967 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "UOOS.externalReference" .

ex1:00968 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "UOOS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00967 .

ex1:00969 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "AS.externalReference" .

ex1:00970 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "AS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00969 .

ex1:00971 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "SM.externalReference" .

ex1:00972 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "SM" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:00971 .

ex1:00973 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "RT.externalReference" .

ex1:00974 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "RT" ;
    s223:hasExternalReference ex1:00973 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00975 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "OCSP.externalReference" .

ex1:00976 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "OCSP" ;
    s223:hasExternalReference ex1:00975 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00977 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "OHSP.externalReference" .

ex1:00978 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "OHSP" ;
    s223:hasExternalReference ex1:00977 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00979 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "UOCSP.externalReference" .

ex1:00980 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "UOCSP" ;
    s223:hasExternalReference ex1:00979 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00981 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "UOHSP.externalReference" .

ex1:00982 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "UOHSP" ;
    s223:hasExternalReference ex1:00981 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00983 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "MCSP.externalReference" .

ex1:00984 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "MCSP" ;
    s223:hasExternalReference ex1:00983 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00985 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "MCSP.externalReference" .

ex1:00986 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "MCSP" ;
    s223:hasExternalReference ex1:00985 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00987 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "MHSP.externalReference" .

ex1:00988 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "MHSP" ;
    s223:hasExternalReference ex1:00987 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00989 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "MHSP.externalReference" .

ex1:00990 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "MHSP" ;
    s223:hasExternalReference ex1:00989 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00991 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "MSPD.externalReference" .

ex1:00992 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "MSPD" ;
    s223:hasExternalReference ex1:00991 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:00993 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "CHTM.externalReference" .

ex1:00994 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "CHTM" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00993 .

ex1:00995 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "FS.externalReference" .

ex1:00997 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "AD.externalReference" .

ex1:00998 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "AD" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:00997 .

ex1:00999 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "TOO.externalReference" .

ex1:01000 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "TOO" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00999 .

ex1:01001 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "CUO.externalReference" .

ex1:01002 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "CUO" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:01001 .

ex1:01003 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "RCPON.externalReference" .

ex1:01004 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "RCPON" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:01003 .

ex1:01005 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "RCPOM.externalReference" .

ex1:01006 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "RCPOM" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01005 .

ex1:01007 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "RCPSP.externalReference" .

ex1:01008 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "RCPSP" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01007 .

ex1:01009 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "FSS.externalReference" .

ex1:01010 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "FSS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01009 .

ex1:01011 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "FSR.externalReference" .

ex1:01012 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "FSR" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01011 .

ex1:01013 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "IFS.externalReference" .

ex1:01015 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "CS.externalReference" .

ex1:01016 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "CS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01015 .

ex1:01017 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "TOS.externalReference" .

ex1:01018 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "TOS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01017 .

ex1:01019 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "CPS.externalReference" .

ex1:01020 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "CPS" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:01019 .

ex1:01021 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "AHS.externalReference" .

ex1:01022 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "AHS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01021 .

ex1:01023 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "FTO.externalReference" .

ex1:01024 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "FTO" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01023 .

ex1:01025 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "IUCO.externalReference" .

ex1:01026 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "IUCO" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01025 .

ex1:01027 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "RAT.externalReference" .

ex1:01028 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "RAT" ;
    s223:hasExternalReference ex1:01027 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01029 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "DAT.externalReference" .

ex1:01030 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "DAT" ;
    s223:hasExternalReference ex1:01029 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01031 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "LPT.externalReference" .

ex1:01032 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "LPT" ;
    s223:hasExternalReference ex1:01031 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01033 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "GPT.externalReference" .

ex1:01034 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "GPT" ;
    s223:hasExternalReference ex1:01033 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01035 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "EVP.externalReference" .

ex1:01037 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "FP.externalReference" .

ex1:01038 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "FP" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01037 .

ex1:01072 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "OM.externalReference" .

ex1:01073 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "OM" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:01072 .

ex1:01074 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "UOOS.externalReference" .

ex1:01075 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "UOOS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01074 .

ex1:01076 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "AS.externalReference" .

ex1:01077 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "AS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01076 .

ex1:01078 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "SM.externalReference" .

ex1:01079 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "SM" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:01078 .

ex1:01080 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "RT.externalReference" .

ex1:01081 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "RT" ;
    s223:hasExternalReference ex1:01080 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01082 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "OCSP.externalReference" .

ex1:01083 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "OCSP" ;
    s223:hasExternalReference ex1:01082 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01084 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "OHSP.externalReference" .

ex1:01085 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "OHSP" ;
    s223:hasExternalReference ex1:01084 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01086 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "UOCSP.externalReference" .

ex1:01087 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "UOCSP" ;
    s223:hasExternalReference ex1:01086 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01088 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "UOHSP.externalReference" .

ex1:01089 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "UOHSP" ;
    s223:hasExternalReference ex1:01088 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01090 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "MCSP.externalReference" .

ex1:01091 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "MCSP" ;
    s223:hasExternalReference ex1:01090 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01092 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "MCSP.externalReference" .

ex1:01093 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "MCSP" ;
    s223:hasExternalReference ex1:01092 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01094 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "MHSP.externalReference" .

ex1:01095 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "MHSP" ;
    s223:hasExternalReference ex1:01094 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01096 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "MHSP.externalReference" .

ex1:01097 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "MHSP" ;
    s223:hasExternalReference ex1:01096 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01098 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "MSPD.externalReference" .

ex1:01099 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "MSPD" ;
    s223:hasExternalReference ex1:01098 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01100 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "CHTM.externalReference" .

ex1:01101 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "CHTM" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01100 .

ex1:01102 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "FS.externalReference" .

ex1:01104 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "AD.externalReference" .

ex1:01105 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "AD" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:01104 .

ex1:01106 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "TOO.externalReference" .

ex1:01107 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "TOO" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01106 .

ex1:01108 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "CUO.externalReference" .

ex1:01109 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "CUO" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:01108 .

ex1:01110 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "RCPON.externalReference" .

ex1:01111 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "RCPON" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:01110 .

ex1:01112 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "RCPOM.externalReference" .

ex1:01113 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "RCPOM" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01112 .

ex1:01114 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "RCPSP.externalReference" .

ex1:01115 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "RCPSP" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01114 .

ex1:01116 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "FSS.externalReference" .

ex1:01117 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "FSS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01116 .

ex1:01118 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "FSR.externalReference" .

ex1:01119 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "FSR" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01118 .

ex1:01120 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "IFS.externalReference" .

ex1:01122 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "CS.externalReference" .

ex1:01123 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "CS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01122 .

ex1:01124 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "TOS.externalReference" .

ex1:01125 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "TOS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01124 .

ex1:01126 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "CPS.externalReference" .

ex1:01127 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "CPS" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:01126 .

ex1:01128 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "AHS.externalReference" .

ex1:01129 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "AHS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01128 .

ex1:01130 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "FTO.externalReference" .

ex1:01131 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "FTO" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01130 .

ex1:01132 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "IUCO.externalReference" .

ex1:01133 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "IUCO" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01132 .

ex1:01134 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "RAT.externalReference" .

ex1:01135 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "RAT" ;
    s223:hasExternalReference ex1:01134 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01136 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "DAT.externalReference" .

ex1:01137 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "DAT" ;
    s223:hasExternalReference ex1:01136 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01138 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "LPT.externalReference" .

ex1:01139 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "LPT" ;
    s223:hasExternalReference ex1:01138 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01140 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "GPT.externalReference" .

ex1:01141 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "GPT" ;
    s223:hasExternalReference ex1:01140 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01142 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "EVP.externalReference" .

ex1:01144 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "FP.externalReference" .

ex1:01145 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "FP" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01144 .

ex1:01179 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "OM.externalReference" .

ex1:01180 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "OM" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:01179 .

ex1:01181 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "UOOS.externalReference" .

ex1:01182 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "UOOS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01181 .

ex1:01183 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "AS.externalReference" .

ex1:01184 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "AS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01183 .

ex1:01185 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "SM.externalReference" .

ex1:01186 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "SM" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:01185 .

ex1:01187 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "RT.externalReference" .

ex1:01188 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "RT" ;
    s223:hasExternalReference ex1:01187 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01189 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "OCSP.externalReference" .

ex1:01190 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "OCSP" ;
    s223:hasExternalReference ex1:01189 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01191 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "OHSP.externalReference" .

ex1:01192 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "OHSP" ;
    s223:hasExternalReference ex1:01191 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01193 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "UOCSP.externalReference" .

ex1:01194 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "UOCSP" ;
    s223:hasExternalReference ex1:01193 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01195 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "UOHSP.externalReference" .

ex1:01196 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "UOHSP" ;
    s223:hasExternalReference ex1:01195 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01197 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "MCSP.externalReference" .

ex1:01198 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "MCSP" ;
    s223:hasExternalReference ex1:01197 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01199 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "MCSP.externalReference" .

ex1:01200 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "MCSP" ;
    s223:hasExternalReference ex1:01199 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01201 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "MHSP.externalReference" .

ex1:01202 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "MHSP" ;
    s223:hasExternalReference ex1:01201 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01203 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "MHSP.externalReference" .

ex1:01204 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "MHSP" ;
    s223:hasExternalReference ex1:01203 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01205 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "MSPD.externalReference" .

ex1:01206 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "MSPD" ;
    s223:hasExternalReference ex1:01205 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01207 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "CHTM.externalReference" .

ex1:01208 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "CHTM" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01207 .

ex1:01209 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "FS.externalReference" .

ex1:01211 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "AD.externalReference" .

ex1:01212 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "AD" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:01211 .

ex1:01213 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "TOO.externalReference" .

ex1:01214 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "TOO" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01213 .

ex1:01215 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "CUO.externalReference" .

ex1:01216 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "CUO" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:01215 .

ex1:01217 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "RCPON.externalReference" .

ex1:01218 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "RCPON" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:01217 .

ex1:01219 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "RCPOM.externalReference" .

ex1:01220 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "RCPOM" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01219 .

ex1:01221 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "RCPSP.externalReference" .

ex1:01222 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "RCPSP" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01221 .

ex1:01223 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "FSS.externalReference" .

ex1:01224 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "FSS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01223 .

ex1:01225 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "FSR.externalReference" .

ex1:01226 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "FSR" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01225 .

ex1:01227 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "IFS.externalReference" .

ex1:01229 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "CS.externalReference" .

ex1:01230 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "CS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01229 .

ex1:01231 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "TOS.externalReference" .

ex1:01232 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "TOS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01231 .

ex1:01233 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "CPS.externalReference" .

ex1:01234 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "CPS" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:01233 .

ex1:01235 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "AHS.externalReference" .

ex1:01236 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "AHS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01235 .

ex1:01237 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "FTO.externalReference" .

ex1:01238 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "FTO" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01237 .

ex1:01239 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "IUCO.externalReference" .

ex1:01240 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "IUCO" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01239 .

ex1:01241 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "RAT.externalReference" .

ex1:01242 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "RAT" ;
    s223:hasExternalReference ex1:01241 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01243 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "DAT.externalReference" .

ex1:01244 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "DAT" ;
    s223:hasExternalReference ex1:01243 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01245 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "LPT.externalReference" .

ex1:01246 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "LPT" ;
    s223:hasExternalReference ex1:01245 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01247 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "GPT.externalReference" .

ex1:01248 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "GPT" ;
    s223:hasExternalReference ex1:01247 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01249 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "EVP.externalReference" .

ex1:01251 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "FP.externalReference" .

ex1:01252 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "FP" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01251 .

ex1:01286 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "OM.externalReference" .

ex1:01287 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "OM" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:01286 .

ex1:01288 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "UOOS.externalReference" .

ex1:01289 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "UOOS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01288 .

ex1:01290 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "AS.externalReference" .

ex1:01291 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "AS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01290 .

ex1:01292 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "SM.externalReference" .

ex1:01293 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "SM" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:01292 .

ex1:01294 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "RT.externalReference" .

ex1:01295 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "RT" ;
    s223:hasExternalReference ex1:01294 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01296 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "OCSP.externalReference" .

ex1:01297 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "OCSP" ;
    s223:hasExternalReference ex1:01296 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01298 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "OHSP.externalReference" .

ex1:01299 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "OHSP" ;
    s223:hasExternalReference ex1:01298 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01300 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "UOCSP.externalReference" .

ex1:01301 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "UOCSP" ;
    s223:hasExternalReference ex1:01300 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01302 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "UOHSP.externalReference" .

ex1:01303 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "UOHSP" ;
    s223:hasExternalReference ex1:01302 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01304 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "MCSP.externalReference" .

ex1:01305 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "MCSP" ;
    s223:hasExternalReference ex1:01304 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01306 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "MCSP.externalReference" .

ex1:01307 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "MCSP" ;
    s223:hasExternalReference ex1:01306 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01308 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "MHSP.externalReference" .

ex1:01309 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "MHSP" ;
    s223:hasExternalReference ex1:01308 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01310 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "MHSP.externalReference" .

ex1:01311 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "MHSP" ;
    s223:hasExternalReference ex1:01310 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01312 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "MSPD.externalReference" .

ex1:01313 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "MSPD" ;
    s223:hasExternalReference ex1:01312 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01314 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "CHTM.externalReference" .

ex1:01315 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "CHTM" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01314 .

ex1:01316 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "FS.externalReference" .

ex1:01318 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "AD.externalReference" .

ex1:01319 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "AD" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:01318 .

ex1:01320 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "TOO.externalReference" .

ex1:01321 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "TOO" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01320 .

ex1:01322 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "CUO.externalReference" .

ex1:01323 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "CUO" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:01322 .

ex1:01324 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "RCPON.externalReference" .

ex1:01325 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "RCPON" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:01324 .

ex1:01326 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "RCPOM.externalReference" .

ex1:01327 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "RCPOM" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01326 .

ex1:01328 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "RCPSP.externalReference" .

ex1:01329 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "RCPSP" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01328 .

ex1:01330 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "FSS.externalReference" .

ex1:01331 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "FSS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01330 .

ex1:01332 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "FSR.externalReference" .

ex1:01333 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "FSR" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01332 .

ex1:01334 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "IFS.externalReference" .

ex1:01336 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "CS.externalReference" .

ex1:01337 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "CS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01336 .

ex1:01338 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "TOS.externalReference" .

ex1:01339 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "TOS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01338 .

ex1:01340 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "CPS.externalReference" .

ex1:01341 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "CPS" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:01340 .

ex1:01342 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "AHS.externalReference" .

ex1:01343 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "AHS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01342 .

ex1:01344 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "FTO.externalReference" .

ex1:01345 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "FTO" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01344 .

ex1:01346 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "IUCO.externalReference" .

ex1:01347 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "IUCO" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01346 .

ex1:01348 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "RAT.externalReference" .

ex1:01349 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "RAT" ;
    s223:hasExternalReference ex1:01348 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01350 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "DAT.externalReference" .

ex1:01351 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "DAT" ;
    s223:hasExternalReference ex1:01350 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01352 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "LPT.externalReference" .

ex1:01353 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "LPT" ;
    s223:hasExternalReference ex1:01352 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01354 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "GPT.externalReference" .

ex1:01355 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "GPT" ;
    s223:hasExternalReference ex1:01354 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01356 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "EVP.externalReference" .

ex1:01358 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "FP.externalReference" .

ex1:01359 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "FP" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01358 .

ex1:01393 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "OM.externalReference" .

ex1:01394 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "OM" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:01393 .

ex1:01395 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "UOOS.externalReference" .

ex1:01396 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "UOOS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01395 .

ex1:01397 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "AS.externalReference" .

ex1:01398 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "AS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01397 .

ex1:01399 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "SM.externalReference" .

ex1:01400 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "SM" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:01399 .

ex1:01401 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "RT.externalReference" .

ex1:01402 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "RT" ;
    s223:hasExternalReference ex1:01401 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01403 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "OCSP.externalReference" .

ex1:01404 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "OCSP" ;
    s223:hasExternalReference ex1:01403 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01405 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "OHSP.externalReference" .

ex1:01406 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "OHSP" ;
    s223:hasExternalReference ex1:01405 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01407 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "UOCSP.externalReference" .

ex1:01408 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "UOCSP" ;
    s223:hasExternalReference ex1:01407 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01409 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "UOHSP.externalReference" .

ex1:01410 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "UOHSP" ;
    s223:hasExternalReference ex1:01409 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01411 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "MCSP.externalReference" .

ex1:01412 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "MCSP" ;
    s223:hasExternalReference ex1:01411 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01413 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "MCSP.externalReference" .

ex1:01414 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "MCSP" ;
    s223:hasExternalReference ex1:01413 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01415 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "MHSP.externalReference" .

ex1:01416 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "MHSP" ;
    s223:hasExternalReference ex1:01415 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01417 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "MHSP.externalReference" .

ex1:01418 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "MHSP" ;
    s223:hasExternalReference ex1:01417 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01419 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "MSPD.externalReference" .

ex1:01420 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitCommand ;
    rdfs:label "MSPD" ;
    s223:hasExternalReference ex1:01419 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01421 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "CHTM.externalReference" .

ex1:01422 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "CHTM" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01421 .

ex1:01423 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "FS.externalReference" .

ex1:01425 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "AD.externalReference" .

ex1:01426 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "AD" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:01425 .

ex1:01427 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "TOO.externalReference" .

ex1:01428 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "TOO" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01427 .

ex1:01429 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "CUO.externalReference" .

ex1:01430 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "CUO" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:01429 .

ex1:01431 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "RCPON.externalReference" .

ex1:01432 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "RCPON" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:01431 .

ex1:01433 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "RCPOM.externalReference" .

ex1:01434 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "RCPOM" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01433 .

ex1:01435 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "RCPSP.externalReference" .

ex1:01436 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "RCPSP" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01435 .

ex1:01437 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "FSS.externalReference" .

ex1:01438 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "FSS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01437 .

ex1:01439 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "FSR.externalReference" .

ex1:01440 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "FSR" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01439 .

ex1:01441 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "IFS.externalReference" .

ex1:01443 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "CS.externalReference" .

ex1:01444 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "CS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01443 .

ex1:01445 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "TOS.externalReference" .

ex1:01446 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "TOS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01445 .

ex1:01447 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "CPS.externalReference" .

ex1:01448 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "CPS" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:01447 .

ex1:01449 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "AHS.externalReference" .

ex1:01450 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "AHS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01449 .

ex1:01451 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "FTO.externalReference" .

ex1:01452 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "FTO" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01451 .

ex1:01453 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "IUCO.externalReference" .

ex1:01454 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "IUCO" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01453 .

ex1:01455 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "RAT.externalReference" .

ex1:01456 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "RAT" ;
    s223:hasExternalReference ex1:01455 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01457 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "DAT.externalReference" .

ex1:01458 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "DAT" ;
    s223:hasExternalReference ex1:01457 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01459 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "LPT.externalReference" .

ex1:01460 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "LPT" ;
    s223:hasExternalReference ex1:01459 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01461 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "GPT.externalReference" .

ex1:01462 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "GPT" ;
    s223:hasExternalReference ex1:01461 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01463 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "EVP.externalReference" .

ex1:01465 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "FP.externalReference" .

ex1:01466 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "FP" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01465 .

ex1:01467 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "SM.externalReference" .

ex1:01468 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "SM" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:01467 .

ex1:01469 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "OUA.externalReference" .

ex1:01470 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "OUA" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01469 .

ex1:01471 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "DM.externalReference" .

ex1:01472 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "DM" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01471 .

ex1:01473 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "ORM.externalReference" .

ex1:01474 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "ORM" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01473 .

ex1:01475 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "EC.externalReference" .

ex1:01476 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        bob:Amps ;
    rdfs:label "EC" ;
    s223:hasExternalReference ex1:01475 ;
    qudt:hasQuantityKind quantitykind:ElectricCurrent ;
    qudt:hasUnit unit:A .

ex1:01477 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "SCC.externalReference" .

ex1:01478 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:Horsepower ;
    rdfs:label "SCC" ;
    s223:hasExternalReference ex1:01477 ;
    qudt:hasQuantityKind quantitykind:Power ;
    qudt:hasUnit unit:HP .

ex1:01479 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "OAT.externalReference" .

ex1:01480 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "OAT" ;
    s223:hasExternalReference ex1:01479 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01481 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "CP.externalReference" .

ex1:01482 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:PSISensor ;
    rdfs:label "CP" ;
    s223:hasExternalReference ex1:01481 ;
    qudt:hasQuantityKind quantitykind:Pressure ;
    qudt:hasUnit unit:PSI .

ex1:01483 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "EP.externalReference" .

ex1:01484 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:PSISensor ;
    rdfs:label "EP" ;
    s223:hasExternalReference ex1:01483 ;
    qudt:hasQuantityKind quantitykind:Pressure ;
    qudt:hasUnit unit:PSI .

ex1:01485 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "CT.externalReference" .

ex1:01486 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "CT" ;
    s223:hasExternalReference ex1:01485 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01487 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "ET.externalReference" .

ex1:01488 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "ET" ;
    s223:hasExternalReference ex1:01487 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01489 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "IC1S.externalReference" .

ex1:01490 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        bob:Percent ;
    rdfs:label "IC1S" ;
    s223:hasExternalReference ex1:01489 ;
    qudt:hasQuantityKind quantitykind:DimensionlessRatio ;
    qudt:hasUnit unit:PERCENT .

ex1:01491 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "FS.externalReference" .

ex1:01493 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "EVP1.externalReference" .

ex1:01495 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "HGT1.externalReference" .

ex1:01496 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "HGT1" ;
    s223:hasExternalReference ex1:01495 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01497 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "LPT.externalReference" .

ex1:01498 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "LPT" ;
    s223:hasExternalReference ex1:01497 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01499 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "LPTD.externalReference" .

ex1:01500 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "LPTD" ;
    s223:hasExternalReference ex1:01499 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01501 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "CST.externalReference" .

ex1:01502 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "CST" ;
    s223:hasExternalReference ex1:01501 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01503 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "SIT.externalReference" .

ex1:01504 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "SIT" ;
    s223:hasExternalReference ex1:01503 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01505 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "SOT.externalReference" .

ex1:01506 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "SOT" ;
    s223:hasExternalReference ex1:01505 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01507 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "SEVP.externalReference" .

ex1:01509 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "BCP.externalReference" .

ex1:01510 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:PSISensor ;
    rdfs:label "BCP" ;
    s223:hasExternalReference ex1:01509 ;
    qudt:hasQuantityKind quantitykind:Pressure ;
    qudt:hasUnit unit:PSI .

ex1:01511 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "BEP.externalReference" .

ex1:01512 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:PSISensor ;
    rdfs:label "BEP" ;
    s223:hasExternalReference ex1:01511 ;
    qudt:hasQuantityKind quantitykind:Pressure ;
    qudt:hasUnit unit:PSI .

ex1:01513 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "BCT.externalReference" .

ex1:01514 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "BCT" ;
    s223:hasExternalReference ex1:01513 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01515 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "BET.externalReference" .

ex1:01516 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "BET" ;
    s223:hasExternalReference ex1:01515 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01517 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "BIC1S.externalReference" .

ex1:01518 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        bob:Percent ;
    rdfs:label "BIC1S" ;
    s223:hasExternalReference ex1:01517 ;
    qudt:hasQuantityKind quantitykind:DimensionlessRatio ;
    qudt:hasUnit unit:PERCENT .

ex1:01519 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "BFS.externalReference" .

ex1:01521 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "BEVP.externalReference" .

ex1:01523 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "BHGT1.externalReference" .

ex1:01524 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "BHGT1" ;
    s223:hasExternalReference ex1:01523 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01525 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "BLPT.externalReference" .

ex1:01526 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "BLPT" ;
    s223:hasExternalReference ex1:01525 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01527 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "BLPTD.externalReference" .

ex1:01528 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "BLPTD" ;
    s223:hasExternalReference ex1:01527 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01529 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "BCST.externalReference" .

ex1:01530 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "BCST" ;
    s223:hasExternalReference ex1:01529 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01531 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "BSIT.externalReference" .

ex1:01532 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "BSIT" ;
    s223:hasExternalReference ex1:01531 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01533 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "BSOT.externalReference" .

ex1:01534 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        ex1:FahrenheitSensor ;
    rdfs:label "BSOT" ;
    s223:hasExternalReference ex1:01533 ;
    qudt:hasQuantityKind quantitykind:Temperature ;
    qudt:hasUnit unit:DEG_F .

ex1:01535 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "BSEVP.externalReference" .

ex1:01537 a s223:BACnetExternalReference,
        s223:ExternalReference ;
    rdfs:label "CS.externalReference" .

ex1:01538 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "CS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01537 .

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 ;
    ns2: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 ;
    ns2: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 ;
    ns2:code 182 ;
    ns2: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 ;
    ns2:code 183 ;
    ns2: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 ;
    ns2:code 184 ;
    ns2: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 ;
    ns2:code 185 ;
    ns2: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 ;
    ns2:code 186 ;
    ns2: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 ;
    ns2:code 187 ;
    ns2: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 ;
    ns2:code 188 ;
    ns2: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 ;
    ns2:code 189 ;
    ns2: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 ;
    ns2:code 190 ;
    ns2: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 ;
    ns2:code 191 ;
    ns2: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 ;
    ns2: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 ;
    ns2: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 ;
    ns2: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 ;
    ns2: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 ;
    ns2: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 ;
    ns2: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 ns2: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 ns2: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 ns1: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 ;
    ns2: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/data/scb-vrf> ;
            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 ns2: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 ;
    ns2: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 ns2: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 ;
    ns2:code 2 ;
    ns2: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 ;
    ns2:code 2 ;
    ns2:literal "major"^^xsd:string ;
    ns2: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 ;
    ns2:code 1 ;
    ns2:literal "minor"^^xsd:string ;
    ns2: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 ;
    ns2: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 ;
    ns2: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 ;
    ns2:code 44 ;
    ns2: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 ;
    ns2:code 50 ;
    ns2: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 ;
    ns2:code 1 ;
    ns2: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 ;
    ns2:code 2 ;
    ns2: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 ;
    ns2:code 3 ;
    ns2: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 ns2: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 ns2: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 ;
    ns2: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 ;
    ns2: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 ;
    ns2: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 ;
    ns2: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 ;
    ns2:code 4 ;
    ns2: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 ;
    ns2:code 5 ;
    ns2: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 ;
    ns2:code 6 ;
    ns2: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 ns2: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 ;
    ns2: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 ;
    ns2:code 40 ;
    ns2: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 ;
    ns2:code 42 ;
    ns2: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 ;
    ns2: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 ;
    ns2:code 52 ;
    ns2: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 ns1: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 ns2: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 ;
    ns2:code 68 ;
    ns2: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 ns2: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 ;
    ns2: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 ;
    ns2:code 78 ;
    ns2: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 ;
    ns2: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 ns2: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 ;
    ns2: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 ;
    ns1: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 quantitykind: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 quantitykind: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 quantitykind: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> .

quantitykind: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 quantitykind:InverseVolume .

quantitykind: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 quantitykind:IonizationEnergy ;
    skos:closeMatch quantitykind:DonorIonizationEnergy .

quantitykind: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> .

quantitykind: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> .

quantitykind: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 quantitykind:Time .

quantitykind: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 quantitykind:Length .

quantitykind: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> .

quantitykind: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 quantitykind: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 quantitykind:Concentration .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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 quantitykind:Count .

quantitykind: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 quantitykind:SoundPowerLevel .

quantitykind: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> .

quantitykind: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 quantitykind:Torque .

quantitykind: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> .

quantitykind: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> .

quantitykind: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 quantitykind:DimensionlessRatio .

quantitykind: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 quantitykind:Time .

quantitykind: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 quantitykind:Length .

quantitykind: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 quantitykind:Velocity .

quantitykind: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> .

quantitykind: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 quantitykind:Length .

quantitykind: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 quantitykind:Volume .

quantitykind: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 quantitykind:Temperature ;
    prov:wasDerivedFrom quantitykind:ThermodynamicTemperature .

quantitykind: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 quantitykind:Length .

quantitykind: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 quantitykind:Length .

quantitykind: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 quantitykind:Length .

quantitykind: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 quantitykind:Dimensionless .

quantitykind: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> .

quantitykind: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 quantitykind:MolarEnergy .

quantitykind: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> .

quantitykind: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 quantitykind:DimensionlessRatio .

quantitykind: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 quantitykind:Temperature .

quantitykind: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> .

quantitykind: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 quantitykind:DimensionlessRatio .

quantitykind: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 quantitykind:HeatFlowRate .

quantitykind: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 quantitykind:DimensionlessRatio .

quantitykind: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 quantitykind:HeatFlowRate .

quantitykind: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 quantitykind:DimensionlessRatio .

quantitykind: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 quantitykind:ExpansionRatio .

quantitykind: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> .

quantitykind: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> .

quantitykind:DewPointTemperature a qudt:QuantityKind ;
    rdfs:label "Dew Point Temperature"@en ;
    dcterms:description "\"Dew Point Temperature\" is the temperature at which vapour in air reaches saturation."^^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=31890"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Dew Point Temperature\" is the temperature at which vapour in air reaches saturation."^^xsd:string ;
    qudt:symbol "T_d"^^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 quantitykind:Temperature .

quantitykind: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 quantitykind:Length .

quantitykind: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 quantitykind:SystolicBloodPressure ;
    skos:broader quantitykind:Pressure .

quantitykind: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> .

quantitykind: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 quantitykind:Length .

quantitykind: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 ;
    ns1: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> .

quantitykind: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 quantitykind:IonizationEnergy ;
    skos:closeMatch quantitykind:AcceptorIonizationEnergy .

quantitykind: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> .

quantitykind: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 quantitykind:InverseLength .

quantitykind: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 quantitykind:Friction .

quantitykind: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> .

quantitykind: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 quantitykind:MultiplicationFactor ;
    skos:closeMatch quantitykind:InfiniteMultiplicationFactor .

quantitykind: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 quantitykind:DimensionlessRatio .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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 quantitykind: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> .

quantitykind: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> .

quantitykind: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 quantitykind:EquilibriumConstant .

quantitykind: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 quantitykind:EquilibriumConstant .

quantitykind: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> .

quantitykind: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 quantitykind:ElectricChargePerMass .

quantitykind: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> .

quantitykind: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 quantitykind:Time .

quantitykind: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 quantitykind:Force .

quantitykind: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> .

quantitykind: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 quantitykind:Energy .

quantitykind: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 quantitykind:Pressure .

quantitykind: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 quantitykind:DimensionlessRatio .

quantitykind: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> .

quantitykind: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> .

quantitykind: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 quantitykind:Pressure .

quantitykind: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> .

quantitykind: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 quantitykind:DimensionlessRatio .

quantitykind: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> .

quantitykind: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 quantitykind:QuantumNumber .

quantitykind: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 quantitykind:IncidenceRate ;
    skos:broader quantitykind:Incidence .

quantitykind: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 quantitykind:IncidenceProportion ;
    skos:broader quantitykind:Incidence .

quantitykind: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> .

quantitykind: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 quantitykind:MultiplicationFactor ;
    skos:closeMatch quantitykind:EffectiveMultiplicationFactor .

quantitykind: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> .

quantitykind: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 quantitykind: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 quantitykind:InverseVolume .

quantitykind: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 quantitykind: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 quantitykind:NumberDensity .

quantitykind: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 quantitykind:DimensionlessRatio .

quantitykind: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 quantitykind:PowerPerArea .

quantitykind: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 quantitykind:DimensionlessRatio .

quantitykind: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> .

quantitykind: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 quantitykind:Length .

quantitykind: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 quantitykind:Work .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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 quantitykind:InverseLength .

quantitykind: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 quantitykind:DimensionlessRatio .

quantitykind: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 quantitykind:DimensionlessRatio .

quantitykind: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> .

quantitykind: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> .

quantitykind: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 quantitykind:MagneticFluxDensity ;
    skos:closeMatch quantitykind:UpperCriticalMagneticFluxDensity .

quantitykind: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 quantitykind:LuminousFluxPerArea .

quantitykind: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 quantitykind:DimensionlessRatio .

quantitykind: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 quantitykind:DimensionlessRatio ;
    skos:closeMatch <http://dbpedia.org/resource/Mach_number> .

quantitykind: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> .

quantitykind: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>,
        quantitykind:MagneticFieldStrength,
        quantitykind:Magnetization .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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 quantitykind:Mass .

quantitykind: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> .

quantitykind: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> .

quantitykind: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 quantitykind:Count .

quantitykind: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> .

quantitykind: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> .

quantitykind: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 quantitykind:Thrust .

quantitykind: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 quantitykind:Energy .

quantitykind: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> .

quantitykind: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 ;
    ns1: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> .

quantitykind: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> .

quantitykind: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 quantitykind:Admittance .

quantitykind: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> .

quantitykind: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> .

quantitykind: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 quantitykind:AmountOfSubstance .

quantitykind: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> .

quantitykind: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 quantitykind:DynamicViscosity,
        quantitykind:KinematicViscosity .

quantitykind: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 quantitykind:MomentOfInertia .

quantitykind: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 quantitykind:MomentOfInertia .

quantitykind: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> .

quantitykind: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 quantitykind:Incidence .

quantitykind: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> .

quantitykind: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> .

quantitykind: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 quantitykind:Count .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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 quantitykind:ActivePower,
        quantitykind:ApparentPower .

quantitykind: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 quantitykind:Length .

quantitykind: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 quantitykind:Stress .

quantitykind: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 quantitykind:Length .

quantitykind: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 quantitykind:SpinQuantumNumber .

quantitykind: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 quantitykind:Count .

quantitykind: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> .

quantitykind: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 quantitykind:Concentration .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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 quantitykind:Length .

quantitykind: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> .

quantitykind: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 quantitykind:Angle .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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 quantitykind:MomentOfInertia .

quantitykind: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 quantitykind:ElectricChargePerArea .

quantitykind: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> .

quantitykind: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 quantitykind:DimensionlessRatio .

quantitykind: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 quantitykind:PRODUCT-OF-INERTIA .

quantitykind: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 quantitykind:PRODUCT-OF-INERTIA .

quantitykind: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 quantitykind:PRODUCT-OF-INERTIA .

quantitykind: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 quantitykind:BurnRate .

quantitykind: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 quantitykind:Mass .

quantitykind: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 quantitykind:Temperature .

quantitykind: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 quantitykind:Length .

quantitykind: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 quantitykind:Energy ;
    skos:closeMatch quantitykind:LuminousEnergy .

quantitykind:RadiantFlux a qudt:QuantityKind ;
    rdfs:label "قدرة إشعاعية"@ar,
        "Strahlungsfluss"@de,
        "radiant flux"@en,
        "potencia radiante"@es,
        "flux énergétique"@fr,
        "flusso radiante"@it,
        "放射パワー"@ja,
        "moc promieniowania"@pl,
        "potência radiante"@pt ;
    dcterms:description "Radiant Flux, or radiant power, is the measure of the total power of electromagnetic radiation (including infrared, ultraviolet, and visible light). The power may be the total emitted from a source, or the total landing on a particular surface."^^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/Radiant_flux"^^xsd:anyURI ;
    qudt:latexDefinition "$\\Phi = \\frac{dQ}{dt}$, where $dQ$ is the radiant energy emitted, transferred, or received during a time interval of the duration $dt$."^^qudt:LatexString ;
    qudt:latexSymbol "$\\phi$"^^qudt:LatexString ;
    qudt:plainTextDescription "Radiant Flux, or radiant power, is the measure of the total power of electromagnetic radiation (including infrared, ultraviolet, and visible light). The power may be the total emitted from a source, or the total landing on a particular surface."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q1253356> ;
    rdfs:comment "Applicable units are those of quantitykind:Power"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:altLabel "Strahlungsleistung"@de,
        "radiant power"@en,
        "flujo radiante"@es,
        "puissance rayonnante"@fr,
        "potenza radiante"@it,
        "moc promienista"@pl,
        "fluxo energético"@pt ;
    skos:broader quantitykind:Power .

quantitykind: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 quantitykind:HeatFlowRate .

quantitykind: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 quantitykind:Length .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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 quantitykind:DimensionlessRatio .

quantitykind: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> .

quantitykind: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> .

quantitykind: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 quantitykind:DimensionlessRatio ;
    skos:closeMatch <http://dbpedia.org/resource/Reynolds_number> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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 quantitykind:Strain .

quantitykind: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 quantitykind:Stress .

quantitykind: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> .

quantitykind: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> .

quantitykind: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 quantitykind:ElectricField,
        quantitykind:ElectricFieldStrength .

quantitykind: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> ;
    ns1: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 quantitykind:EnergyDensity .

quantitykind: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> ;
    ns1: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 quantitykind:PowerPerArea .

quantitykind: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> ;
    ns1: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 quantitykind:Acceleration .

quantitykind: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> ;
    ns1: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 quantitykind:Power .

quantitykind: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 quantitykind:Voltage .

quantitykind: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 quantitykind:SpecificImpulse,
        quantitykind:Time .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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 quantitykind:Illuminance .

quantitykind: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> .

quantitykind: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 quantitykind:Friction .

quantitykind: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> .

quantitykind: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 quantitykind:Frequency .

quantitykind: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 quantitykind:Dimensionless .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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 quantitykind:Conductance,
        quantitykind:Impedance .

quantitykind: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 quantitykind:DiastolicBloodPressure ;
    skos:broader quantitykind:Pressure .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> .

quantitykind: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 quantitykind:Length .

quantitykind: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> .

quantitykind: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 quantitykind:QuantumNumber ;
    skos:closeMatch quantitykind:MagneticQuantumNumber,
        quantitykind:PrincipalQuantumNumber,
        quantitykind:SpinQuantumNumber .

quantitykind: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> .

quantitykind: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> .

quantitykind: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> ;
    ns1: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 quantitykind:DimensionlessRatio .

quantitykind: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> .

quantitykind: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> .

quantitykind: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 quantitykind:MagneticFluxDensity ;
    skos:closeMatch quantitykind:LowerCriticalMagneticFluxDensity .

quantitykind: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 quantitykind:Thrust .

quantitykind: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> .

quantitykind: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 quantitykind:InformationFlowRate .

quantitykind: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> .

quantitykind: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 quantitykind:DimensionlessRatio .

quantitykind: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 quantitykind:Strain .

quantitykind: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> .

quantitykind: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> .

quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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-PER-M3 a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Becquerel per Cubic Metre"^^xsd:string,
        "Бекерел на Кубичен Метър"@bg,
        "Becquerel na Metr Krychlový"@cs,
        "Becquerel pro Kubikmeter"@de,
        "Μπεκερέλ ανά Κυβικό Μέτρο"@el,
        "Becquerel per Cubic Metre"@en,
        "Becquerel per Cubic Meter"@en-us,
        "Becquerel por Metro Cúbico"@es,
        "Becquerel par Mètre Cube"@fr,
        "Becquerel per Metro Cubo"@it,
        "Becquerelium per Metrum Cubicum"@la,
        "Becquerel per Meter Kubik"@ms,
        "Bekerel na Metr Sześcienny"@pl,
        "Becquerel por Metro Cúbico"@pt,
        "Becquerel pe Metru Cub"@ro,
        "Беккерель на Кубический Метр"@ru,
        "Becquerel na Kubični Meter"@sl,
        "Bekerel per Metreküp"@tr ;
    dcterms:description "Becquerel Per Cubic Meter ($Bq/m3$) is a unit in the category of Radioactivity concentration. It is also known as becquerels per cubic meter, becquerel per cubic metre, becquerels per cubic metre, becquerel/cubic inch. This unit is commonly used in the SI unit system. Becquerel Per Cubic Meter (Bq/m3) has a dimension of $L{-3}T{-1}$ where $L$ is length, and $T$ is time. It essentially the same as the corresponding standard SI unit $/s\\cdot m{3}$."^^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 "$Bq/m^3$"^^qudt:LatexString ;
    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:BQ ] ;
    qudt:hasQuantityKind quantitykind:ActivityConcentration ;
    qudt:iec61360Code "0112/2///62720#UAB126"^^xsd:string ;
    qudt:informativeReference "http://www.efunda.com/glossary/units/units--radioactivity_concentration--becquerel_per_cubic_meter.cfm"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB126"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:plainTextDescription "The SI derived unit of unit in the category of Radioactivity concentration."^^xsd:string ;
    qudt:symbol "Bq/m³"^^xsd:string ;
    qudt:ucumCode "Bq.m-3"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "A19"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q98102832> ;
    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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 ;
    ns1: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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-IN2 a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Candela per Square Inch"^^xsd:string,
        "Candela per Square Inch"@en ;
    dcterms:description "\"Candela per Square Inch\" is a unit for  'Luminance' expressed as $cd/in^{2}$."^^qudt:LatexString ;
    qudt:conversionMultiplier 1550.0031000062000124000248000496 ;
    qudt:conversionMultiplierSN 1.550003e+03 ;
    qudt:expression "$cd/in^{2}$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I1M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:IN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:CD ] ;
    qudt:hasQuantityKind quantitykind:Luminance ;
    qudt:iec61360Code "0112/2///62720#UAB257"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB257"^^xsd:anyURI ;
    qudt:symbol "cd/in²"^^xsd:string ;
    qudt:ucumCode "cd.[in_i]-2"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "P28"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q30066654> ;
    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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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:CP a qudt:Unit ;
    rdfs:label "Candlepower"^^xsd:string,
        "Candlepower"@en ;
    dcterms:description "\"Candlepower\" (abbreviated as cp) is a now-obsolete unit which was used to express levels of light intensity in terms of the light emitted by a candle of specific size and constituents. In modern usage Candlepower equates directly to the unit known as the candela."^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Candlepower"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I1M0H0T0D0> ;
    qudt:hasQuantityKind quantitykind:LuminousIntensity ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Candlepower?oldid=491140098"^^xsd:anyURI ;
    qudt:scalingOf unit:CD ;
    qudt:symbol "cp"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q902274> ;
    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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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:DeciS-PER-M a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Decisiemens per Metre"^^xsd:string,
        "Decisiemens na Metr"@cs,
        "Decisiemens pro Meter"@de,
        "Decisiemens per Metre"@en,
        "Decisiemens per Meter"@en-us,
        "Decisiemens por Metro"@es,
        "Decisiemens par Mètre"@fr,
        "Decisiemens per Metro"@it,
        "Decisiemens per Meter"@ms,
        "Decisimens na Metr"@pl,
        "Decisiemens pe Metru"@ro,
        "Decisiemens na Meter"@sl,
        "Decisiemens per Metre"@tr ;
    dcterms:description "Decisiemens per 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.1 ;
    qudt:conversionMultiplierSN 1e-01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E2L-3I0M-1H0T3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:DeciS ] ;
    qudt:hasQuantityKind quantitykind:Conductivity ;
    qudt:plainTextDescription "Decisiemens per metre."^^xsd:string ;
    qudt:symbol "dS/m"^^xsd:string ;
    qudt:ucumCode "dS.m-1"^^qudt:UCUMcs ;
    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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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:GigaC-PER-M3 a qudt:Unit ;
    rdfs:label "Gigacoulomb per Cubic Metre"^^xsd:string,
        "Gigacoulomb na Metr Krychlový"@cs,
        "Gigacoulomb pro Kubikmeter"@de,
        "Gigacoulomb per Cubic Metre"@en,
        "Gigacoulomb per Cubic Meter"@en-us,
        "Gigaculombio por Metro Cúbico"@es,
        "Gigacoulomb par Mètre Cube"@fr,
        "Gigacoulomb per Metro Cubo"@it,
        "Gigacoulomb per Meter Kubik"@ms,
        "Gigakulomb na Metr Sześcienny"@pl,
        "Gigacoulomb pe Metru Cub"@ro,
        "Gigacoulomb na Kubični Meter"@sl,
        "Gigacoulomb per Metreküp"@tr ;
    dcterms:description "1,000,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 1000000000.0 ;
    qudt:conversionMultiplierSN 1e+09 ;
    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:GigaC ] ;
    qudt:hasQuantityKind quantitykind:ElectricChargeVolumeDensity ;
    qudt:iec61360Code "0112/2///62720#UAA149"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA149"^^xsd:anyURI ;
    qudt:plainTextDescription "1 000 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 "GC/m³"^^xsd:string ;
    qudt:ucumCode "GC.m-3"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "A84"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q106808114> ;
    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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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:KiloS-PER-M a qudt:Unit ;
    rdfs:label "Kilosiemens per Metre"^^xsd:string,
        "Kilosiemens na Metr"@cs,
        "Kilosiemens pro Meter"@de,
        "Kilosiemens per Metre"@en,
        "Kilosiemens per Meter"@en-us,
        "Kilosiemens por Metro"@es,
        "Kilosiemens par Mètre"@fr,
        "Chilosiemens per Metro"@it,
        "Kilosiemens per Meter"@ms,
        "Kilosimens na Metr"@pl,
        "Kilosiemens pe Metru"@ro,
        "Kilosiemens na Meter"@sl,
        "Kilosiemens per Metre"@tr ;
    dcterms:description "1 000-fold of the SI derived unit siemens 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/A0E2L-3I0M-1H0T3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloS ] ;
    qudt:hasQuantityKind quantitykind:Conductivity ;
    qudt:iec61360Code "0112/2///62720#UAA579"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA579"^^xsd:anyURI ;
    qudt:plainTextDescription "1 000-fold of the SI derived unit siemens divided by the SI base unit metre"^^xsd:string ;
    qudt:symbol "kS/m"^^xsd:string ;
    qudt:ucumCode "kS.m-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "B54"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q106777933> ;
    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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 a qudt:Unit ;
    rdfs:label "Lambert"^^xsd:string,
        "Lambert"@en ;
    dcterms:description "The lambert (symbol $L$, $la$ or $Lb$) is a non-SI unit of luminance. A related unit of luminance, the foot-lambert, is used in the lighting, cinema and flight simulation industries. The SI unit is the candela per square metre ($cd/m^2$)."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS> ;
    qudt:conversionMultiplier 0.31830988618 ;
    qudt:conversionMultiplierSN 3.183099e-01 ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Lambert"^^xsd:anyURI ;
    qudt:derivedCoherentUnitOfSystem <http://qudt.org/vocab/sou/CGS> ;
    qudt:factorUnitScalar 0.31830988618 ;
    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:CD ] ;
    qudt:hasQuantityKind quantitykind:Luminance ;
    qudt:iec61360Code "0112/2///62720#UAB259"^^xsd:string ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Lambert?oldid=494078267"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB259"^^xsd:anyURI ;
    qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/lambert> ;
    qudt:symbol "L"^^xsd:string ;
    qudt:ucumCode "Lmb"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "P30"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q905912> ;
    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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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:MegaS-PER-M a qudt:Unit ;
    rdfs:label "Megasiemens per Metre"^^xsd:string,
        "Megasiemens na Metr"@cs,
        "Megasiemens pro Meter"@de,
        "Megasiemens per Metre"@en,
        "Megasiemens per Meter"@en-us,
        "Megasiemens por Metro"@es,
        "Megasiemens par Mètre"@fr,
        "Megasiemens per Metro"@it,
        "Megasiemens per Meter"@ms,
        "Megasimens na Metr"@pl,
        "Megasiemens pe Metru"@ro,
        "Megasiemens na Meter"@sl,
        "Megasiemens per Metre"@tr ;
    dcterms:description "1,000,000-fold of the SI derived unit siemens 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/A0E2L-3I0M-1H0T3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MegaS ] ;
    qudt:hasQuantityKind quantitykind:Conductivity ;
    qudt:iec61360Code "0112/2///62720#UAA220"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA220"^^xsd:anyURI ;
    qudt:plainTextDescription "1,000,000-fold of the SI derived unit siemens divided by the SI base unit metre"^^xsd:string ;
    qudt:symbol "MS/m"^^xsd:string ;
    qudt:ucumCode "MS.m-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "B77"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q106777925> ;
    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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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:MicroS-PER-M a qudt:Unit ;
    rdfs:label "Microsiemens per Metre"^^xsd:string,
        "Microsiemens na Metr"@cs,
        "Microsiemens pro Meter"@de,
        "Microsiemens per Metre"@en,
        "Microsiemens per Meter"@en-us,
        "Microsiemens por Metro"@es,
        "Microsiemens par Mètre"@fr,
        "Microsiemens per Metro"@it,
        "Microsiemens per Meter"@ms,
        "Microsimens na Metr"@pl,
        "Microsiemens pe Metru"@ro,
        "Microsiemens na Meter"@sl,
        "Microsiemens per Metre"@tr ;
    dcterms:description "0.000001-fold of the SI derived unit Siemens 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/A0E2L-3I0M-1H0T3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MicroS ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind quantitykind:Conductivity ;
    qudt:iec61360Code "0112/2///62720#UAA076"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA076"^^xsd:anyURI ;
    qudt:plainTextDescription "0.000001-fold of the SI derived unit Siemens divided by the SI base unit metre"^^xsd:string ;
    qudt:symbol "μS/m"^^xsd:string ;
    qudt:ucumCode "uS.m-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G43"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q106777906> ;
    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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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:MilliS-PER-CentiM a qudt:Unit ;
    rdfs:label "Millisiemens per Centimetre"^^xsd:string,
        "Millisiemens na Centimetr"@cs,
        "Millisiemens pro Centimeter"@de,
        "Millisiemens per Centimetre"@en,
        "Millisiemens per Centimeter"@en-us,
        "Millisiemens por Centimetro"@es,
        "Millisiemens par Centimètre"@fr,
        "Millisiemens per Centimetro"@it,
        "Millisiemens per Centimeter"@ms,
        "Millisimens na Centimetr"@pl,
        "Millisiemens pe Centimetru"@ro,
        "Millisiemens na Centimeter"@sl,
        "Millisiemens per Centimetre"@tr ;
    dcterms:description "0.001-fold of the SI derived unit Siemens 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 0.1 ;
    qudt:conversionMultiplierSN 1e-01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E2L-3I0M-1H0T3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliS ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:CentiM ] ;
    qudt:hasQuantityKind quantitykind:Conductivity ;
    qudt:iec61360Code "0112/2///62720#UAA801"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA801"^^xsd:anyURI ;
    qudt:plainTextDescription "0.001-fold of the SI derived unit Siemens divided by the 0.01-fold of the SI base unit metre"^^xsd:string ;
    qudt:symbol "mS/cm"^^xsd:string ;
    qudt:ucumCode "mS.cm-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "H61"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q106777923> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliS-PER-M a qudt:Unit ;
    rdfs:label "Millisiemens per Metre"^^xsd:string,
        "Millisiemens na Metr"@cs,
        "Millisiemens pro Meter"@de,
        "Millisiemens per Metre"@en,
        "Millisiemens per Meter"@en-us,
        "Millisiemens por Metro"@es,
        "Millisiemens par Mètre"@fr,
        "Millisiemens per Metro"@it,
        "Millisiemens per Meter"@ms,
        "Millisimens na Metr"@pl,
        "Millisiemens pe Metru"@ro,
        "Millisiemens na Meter"@sl,
        "Millisiemens 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 0.001 ;
    qudt:conversionMultiplierSN 1e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E2L-3I0M-1H0T3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliS ] ;
    qudt:hasQuantityKind quantitykind:Conductivity ;
    qudt:symbol "mS/m"^^xsd:string ;
    qudt:ucumCode "mS.m-1"^^qudt:UCUMcs ;
    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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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:NanoS-PER-CentiM a qudt:Unit ;
    rdfs:label "Nanosiemens per Centimetre"^^xsd:string,
        "Nanosiemens na Centimetr"@cs,
        "Nanosiemens pro Centimeter"@de,
        "Nanosiemens per Centimetre"@en,
        "Nanosiemens per Centimeter"@en-us,
        "Nanosiemens por Centimetro"@es,
        "Nanosiemens par Centimètre"@fr,
        "Nanosiemens per Centimetro"@it,
        "Nanosiemens per Centimeter"@ms,
        "Nanosimens na Centimetr"@pl,
        "Nanosiemens pe Centimetru"@ro,
        "Nanosiemens na Centimeter"@sl,
        "Nanosiemens per Centimetre"@tr ;
    dcterms:description "0.000000001-fold of the SI derived unit Siemens by the 0.01 fol 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 0.0000001 ;
    qudt:conversionMultiplierSN 1e-07 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E2L-3I0M-1H0T3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:NanoS ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:CentiM ] ;
    qudt:hasQuantityKind quantitykind:Conductivity ;
    qudt:iec61360Code "0112/2///62720#UAA907"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA907"^^xsd:anyURI ;
    qudt:plainTextDescription "0.000000001-fold of the SI derived unit Siemens by the 0.01 fol of the SI base unit metre"^^xsd:string ;
    qudt:symbol "nS/cm"^^xsd:string ;
    qudt:ucumCode "nS.cm-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G44"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q106777952> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:NanoS-PER-M a qudt:Unit ;
    rdfs:label "Nanosiemens per Metre"^^xsd:string,
        "Nanosiemens na Metr"@cs,
        "Nanosiemens pro Meter"@de,
        "Nanosiemens per Metre"@en,
        "Nanosiemens per Meter"@en-us,
        "Nanosiemens por Metro"@es,
        "Nanosiemens par Mètre"@fr,
        "Nanosiemens per Metro"@it,
        "Nanosiemens per Meter"@ms,
        "Nanosimens na Metr"@pl,
        "Nanosiemens pe Metru"@ro,
        "Nanosiemens na Meter"@sl,
        "Nanosiemens per Metre"@tr ;
    dcterms:description "0.000000001-fold of the SI derived unit Siemens 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.000000001 ;
    qudt:conversionMultiplierSN 1e-09 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E2L-3I0M-1H0T3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:NanoS ] ;
    qudt:hasQuantityKind quantitykind:Conductivity ;
    qudt:iec61360Code "0112/2///62720#UAA908"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA908"^^xsd:anyURI ;
    qudt:plainTextDescription "0.000000001-fold of the SI derived unit Siemens divided by the SI base unit metre"^^xsd:string ;
    qudt:symbol "nS/m"^^xsd:string ;
    qudt:ucumCode "nS.m-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G45"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q106777943> ;
    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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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-WK a qudt:Unit ;
    rdfs:label "Percent per Week"^^xsd:string,
        "Percent per Week"@en ;
    dcterms:description "A rate of change in percent over a period of 7 days"@en ;
    qudt:conversionMultiplier 0.00000001653439153439153439153439153439153 ;
    qudt:conversionMultiplierSN 1.653439e-08 ;
    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:WK ] ;
    qudt:hasQuantityKind quantitykind:RateOfChange ;
    qudt:symbol "%/wk"^^xsd:string ;
    qudt:ucumCode "%.wk-1"^^qudt:UCUMcs ;
    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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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:PicoS-PER-M a qudt:Unit ;
    rdfs:label "Picosiemens per Metre"^^xsd:string,
        "Picosiemens na Metr"@cs,
        "Picosiemens pro Meter"@de,
        "Picosiemens per Metre"@en,
        "Picosiemens per Meter"@en-us,
        "Picosiemens por Metro"@es,
        "Picosiemens par Mètre"@fr,
        "Picosiemens per Metro"@it,
        "Picosiemens per Meter"@ms,
        "Picosimens na Metr"@pl,
        "Picosiemens pe Metru"@ro,
        "Picosiemens na Meter"@sl,
        "Picosiemens per Metre"@tr ;
    dcterms:description "0.000000000001-fold of the SI derived unit Siemens 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.000000000001 ;
    qudt:conversionMultiplierSN 1e-12 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E2L-3I0M-1H0T3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PicoS ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind quantitykind:Conductivity ;
    qudt:iec61360Code "0112/2///62720#UAA934"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA934"^^xsd:anyURI ;
    qudt:plainTextDescription "0.000000000001-fold of the SI derived unit Siemens divided by the SI base unit metre"^^xsd:string ;
    qudt:symbol "pS/m"^^xsd:string ;
    qudt:ucumCode "pS.m-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "L42"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q106777957> ;
    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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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:S-PER-CentiM a qudt:Unit ;
    rdfs:label "Siemens per Centimetre"^^xsd:string,
        "Siemens na Centimetr"@cs,
        "Siemens pro Centimeter"@de,
        "Siemens per Centimetre"@en,
        "Siemens per Centimeter"@en-us,
        "Siemens por Centimetro"@es,
        "Siemens par Centimètre"@fr,
        "Siemens per Centimetro"@it,
        "Siemens per Centimeter"@ms,
        "Simens na Centimetr"@pl,
        "Siemens pe Centimetru"@ro,
        "Siemens na Centimeter"@sl,
        "Siemens per Centimetre"@tr ;
    dcterms:description "SI derived unit Siemens 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/A0E2L-3I0M-1H0T3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:S ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:CentiM ] ;
    qudt:hasQuantityKind quantitykind:Conductivity ;
    qudt:iec61360Code "0112/2///62720#UAA278"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA278"^^xsd:anyURI ;
    qudt:plainTextDescription "SI derived unit Siemens divided by the 0.01-fold of the SI base unit metre"^^xsd:string ;
    qudt:symbol "S/cm"^^xsd:string ;
    qudt:ucumCode "S.cm-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "H43"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q106777917> ;
    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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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:STILB a qudt:Unit ;
    rdfs:label "Stilb"^^xsd:string,
        "Stilb"@en ;
    dcterms:description """
  The $\\textit{stilb (sb)}$ is the CGS unit of luminance for objects that are not self-luminous. 
  It is equal to one candela per square centimeter or 10 nits (candelas per square meter). 
  The name was coined by the French physicist A. Blondel around 1920. 
  It comes from the Greek word stilbein meaning 'to glitter'. 
  It was in common use in Europe up to World War I. 
  In North America self-explanatory terms such as candle per square inch and candle per square meter were more common. 
  The unit has since largely been replaced by the SI unit: $\\textit{candela per square meter}$.
  """^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS> ;
    qudt:conversionMultiplier 10000.0 ;
    qudt:conversionMultiplierSN 1e+04 ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Stilb"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I1M0H0T0D0> ;
    qudt:hasQuantityKind quantitykind:Luminance ;
    qudt:iec61360Code "0112/2///62720#UAB260"^^xsd:string ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Stilb?oldid=375748497"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB260"^^xsd:anyURI ;
    qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/stilb> ;
    qudt:scalingOf unit:CD-PER-M2 ;
    qudt:symbol "sb"^^xsd:string ;
    qudt:ucumCode "sb"^^qudt:UCUMcs ;
    qudt:udunitsCode "sb"^^xsd:string ;
    qudt:uneceCommonCode "P31"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q640907> ;
    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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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-M2-SR a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Watt per Square Metre Steradian"^^xsd:string,
        "Ват на Квадратен Метър Стерадиан"@bg,
        "Watt na Čtvereční Metr Steradián"@cs,
        "Watt pro Quadratmeter Steradiant"@de,
        "Βατ ανά Τετραγωνικό Μέτρο Στερακτίνιο"@el,
        "Watt per Square Metre Steradian"@en,
        "Watt per Square Meter Steradian"@en-us,
        "Vatio por Metro Cuadrado Estereorradián"@es,
        "Watt par Mètre Carré Stéradian"@fr,
        "Watt per Metro Quadrato Steradiante"@it,
        "Wattium per Metrum Quadratum Steradian"@la,
        "Watt per Meter Persegi Steradian"@ms,
        "Wat na Metr Kwadratowy Steradian"@pl,
        "Watt por Metro Quadrado Esterradiano"@pt,
        "Watt pe Metru Pătrat Steradian"@ro,
        "Ватт на Квадратный Метр Стерадиан"@ru,
        "Watt na Kvadratni Meter Steradian"@sl,
        "Watt per Metrekare Steradyan"@tr ;
    dcterms:description """$\\textit{Watt per steradian per square metre}$ is the SI unit of radiance ($W·sr^{-1}·m^{-2}$),
  while that of spectral radiance in frequency is the watt per steradian per square metre
  per hertz ($W·sr^{-1}·m^{-2}·Hz^{-1}$) and that of spectral radiance in wavelength is
  the watt per steradian per square metre, per metre ($W·sr^{-1}·m^{-3}$),
  commonly the watt per steradian per square metre per nanometre ($W·sr^{-1}·m^{-2}·nm^{-1}$). 
  It has a dimension of $ML^{-4}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/(m^2.sr)$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-3D0> ;
    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:W ] ;
    qudt:hasQuantityKind quantitykind:Radiance ;
    qudt:iec61360Code "0112/2///62720#UAA315"^^xsd:string ;
    qudt:informativeReference "http://www.efunda.com/glossary/units/units--radiance--watt_per_square_meter_per_steradian.cfm"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA315"^^xsd:anyURI,
        "https://en.wikipedia.org/wiki/Radiance"^^xsd:anyURI ;
    qudt:symbol "W/(m²·sr)"^^xsd:string ;
    qudt:ucumCode "W.m-2.sr-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "D58"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q69429226> ;
    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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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 quantitykind: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> .

ns1: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 ns1:Dimension .

ns1:CollectionGraph a ns1: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 ;
    ns1:filePrefix "COLLECTION"^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> .

ns1: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 ns1:Dimension .

ns1: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 ns1:Dimension .

ns1:GMD_SHACLQUDT-All a ns1: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 ;
    ns1:graphName "qudt"^^xsd:string ;
    ns1:graphTitle "Quantities, Units, Dimensions and Types (QUDT) SHACL Collection - Version 3.1.8"^^xsd:string ;
    ns1:hasGraphRole ns1:CollectionGraph ;
    ns1:hasOwner ns1:QUDT ;
    ns1:hasSteward ns1:QUDT ;
    ns1:intent "Specifies the schema for quantities, units and dimensions. Types are defined in other schemas."^^xsd:string ;
    ns1:isMetadataFor <http://qudt.org/3.1.8/shacl/qudt-all> ;
    ns1:logo "https://qudt.org/linkedmodels.org/assets/lib/lm/images/logos/qudt_logo-300x110.png"^^xsd:anyURI ;
    ns1:namespace "http://qudt.org/schema/qudt/"^^xsd:string ;
    ns1:namespacePrefix "qudt"^^xsd:string ;
    ns1:owner "qudt.org"^^xsd:string ;
    ns1:turtleFileURL "http://qudt.org/3.1.8/schema/shacl/qudt-all"^^xsd:anyURI ;
    ns1: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> ;
    ns1: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> .

ns1:SchemaGraph a ns1:GraphRole ;
    rdfs:label "Schema graph"^^xsd:string ;
    ns1:filePrefix "SCHEMA"^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> .

ns1: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 ns1:Dimension .

ns1: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> .

ns1: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 .

ns1: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> .

ns1: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 .

ns1: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 ns1:hasDimension .

ns1: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 ns1:hasDimension .

ns1: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 ns1:hasDimension .

ns1: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 ns1:GraphRole .

ns1: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> .

ns1: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> .

ns1: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> .

ns1: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 ns1:hasDimension .

ns1: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> .

ns1: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 .

ns1:latestPublishedVersion a owl:DatatypeProperty ;
    rdfs:label "latest published version"^^xsd:string ;
    dcterms:description "The property \"vaem:latestPublishedVersion\"is a URL to documentation for the latest version of a graph."^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> ;
    rdfs:range xsd:anyURI .

ns1:namespace a owl:DatatypeProperty ;
    rdfs:label "namespace"^^xsd:string ;
    dcterms:description "The property \"vaem:namespace\" is the onotlogy URI with which a graph is primarily associated. The intent is to allow multiple graphs to define statements for resources in the same Ontology namespace. For example, a foundation level graph with the base URI of \"http://www.somesite.com/1.0/schema/OurOntology\"  may define general  concepts for \"OurOntology\". Another graph with the base URI \"http://www.somesite.com/1.0/schema/level2/OurOntology\"  may add more specific details to the same \"OurOntology\". Each of these two graphs would carry the same value for \"vaem:namespace\", that is, \"http://www.somesite.com/schema/OurOntology\".    In other words, an ontology URI is the URI associated with the resources of a controlled namespace. On the other hand the graph URIs (the base URIs) identify the graphs that hold resources that make up an ontology"^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> ;
    rdfs:range xsd:anyURI .

ns1:namespacePrefix a owl:DatatypeProperty ;
    rdfs:label "namespace prefix"^^xsd:string ;
    dcterms:description "The property \"vaem:namespacePrefix\" specifes a short handle or label for the URI of an Ontology.  Multiple graphs can define statements for resources in the same Ontololgy namespace. For example, a foundation level graph with the base URI of \"http://www.somesite.com/1.0/schema/OurOntology\"  may define general  concepts for \"OurOntology\". Another graph with the base URI \"http://www.somesite.com/1.0/schema/level2/OurOntology\"  may add more specific details to the same \"OurOntology\". Each of these two graphs would carry the same value for \"vaem:namespacePrefix\", for this example, perhaps, \"ourOntology\""^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> ;
    rdfs:range xsd:string .

ns1:owner a owl:DatatypeProperty ;
    rdfs:label "owner"^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> ;
    rdfs:range xsd:string .

ns1:previousPublishedVersion a owl:DatatypeProperty ;
    rdfs:label "previous published version"^^xsd:string ;
    dcterms:description "The property \"vaem:previousPublishedVersion\"is a URL to documentation for the previous version of a graph."^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> ;
    rdfs:range xsd:anyURI .

ns1:rdfxmlFileURL a owl:DatatypeProperty ;
    rdfs:label "RDF/XML file URL"^^xsd:string ;
    dcterms:description "The property \"vaem:rdfxmlFileURL\" is used to provide a link to the location of the ontology's RDF/XML file"^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> ;
    rdfs:range xsd:anyURI .

ns1:revision a owl:DatatypeProperty ;
    rdfs:label "revision"^^xsd:string ;
    dcterms:description "The property \"vaem:revision\" is a property intended for general use as the name implies."^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> ;
    rdfs:range xsd:string .

ns1:specificity a owl:DatatypeProperty ;
    rdfs:label "specificity"^^xsd:string ;
    dcterms:description "The property \"vaem:specificity\" is intended to specify the level of detail of an ontology.  The values that can be set for this property are restriced to an integer from 1 to 5. An ontology at level 1 has concepts of more general applicability than one at level 5. By having graphs at different levels of specificity it is possible to support greater modularity for selective imports"^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> ;
    rdfs:range xsd:nonNegativeInteger .

ns1:turtleFileURL a owl:DatatypeProperty ;
    rdfs:label "turtle file URL"^^xsd:string ;
    dcterms:description "The property \"vaem:turtleFileURL\" is used to provide a link to the location of the ontology's turtle file"^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> ;
    rdfs:range xsd:anyURI .

ns1:url a owl:DatatypeProperty ;
    rdfs:label "url"^^xsd:string ;
    dcterms:description "The property \"vaem:url\" is intended for general use as the name implies.  The range of the property is set as an XSD URI"^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> ;
    rdfs:range xsd:anyURI .

xsd:gMonth a rdfs:Datatype .

xsd:gYear a rdfs:Datatype .

xsd:long a rdfs:Datatype .

xsd:time a rdfs:Datatype .

xsd:unsignedByte a rdfs:Datatype .

xsd:unsignedShort a rdfs:Datatype .

skos:OrderedCollection a owl:Class ;
    rdfs:label "Ordered Collection"@en ;
    rdfs:isDefinedBy <http://www.w3.org/2004/02/skos/core> ;
    rdfs:subClassOf skos:Collection ;
    skos:definition "An ordered collection of concepts, where both the grouping and the ordering are meaningful."@en ;
    skos:scopeNote "Ordered collections can be used where you would like a set of concepts to be displayed in a specific order, and optionally under a 'node label'."@en .

skos:broadMatch a rdf:Property,
        owl:ObjectProperty ;
    rdfs:label "has broader match"@en ;
    rdfs:isDefinedBy <http://www.w3.org/2004/02/skos/core> ;
    rdfs:subPropertyOf skos:broader,
        skos:mappingRelation ;
    owl:inverseOf skos:narrowMatch ;
    skos:definition "skos:broadMatch is used to state a hierarchical mapping link between two conceptual resources in different concept schemes."@en .

skos:closeMatch a rdf:Property,
        owl:ObjectProperty,
        owl:SymmetricProperty ;
    rdfs:label "has close match"@en ;
    rdfs:isDefinedBy <http://www.w3.org/2004/02/skos/core> ;
    rdfs:subPropertyOf skos:mappingRelation ;
    skos:definition "skos:closeMatch is used to link two concepts that are sufficiently similar that they can be used interchangeably in some information retrieval applications. In order to avoid the possibility of \"compound errors\" when combining mappings across more than two concept schemes, skos:closeMatch is not declared to be a transitive property."@en .

skos:hasTopConcept a rdf:Property,
        owl:ObjectProperty ;
    rdfs:label "has top concept"@en ;
    rdfs:domain skos:ConceptScheme ;
    rdfs:isDefinedBy <http://www.w3.org/2004/02/skos/core> ;
    rdfs:range skos:Concept ;
    owl:inverseOf skos:topConceptOf ;
    skos:definition "Relates, by convention, a concept scheme to a concept which is topmost in the broader/narrower concept hierarchies for that scheme, providing an entry point to these hierarchies."@en .

skos:inScheme a rdf:Property,
        owl:ObjectProperty ;
    rdfs:label "is in scheme"@en ;
    rdfs:isDefinedBy <http://www.w3.org/2004/02/skos/core> ;
    rdfs:range skos:ConceptScheme ;
    skos:definition "Relates a resource (for example a concept) to a concept scheme in which it is included."@en ;
    skos:scopeNote "A concept may be a member of more than one concept scheme."@en .

skos:narrowMatch a rdf:Property,
        owl:ObjectProperty ;
    rdfs:label "has narrower match"@en ;
    rdfs:isDefinedBy <http://www.w3.org/2004/02/skos/core> ;
    rdfs:subPropertyOf skos:mappingRelation,
        skos:narrower ;
    owl:inverseOf skos:broadMatch ;
    skos:definition "skos:narrowMatch is used to state a hierarchical mapping link between two conceptual resources in different concept schemes."@en .

skos:notation a rdf:Property,
        owl:DatatypeProperty ;
    rdfs:label "notation"@en ;
    rdfs:isDefinedBy <http://www.w3.org/2004/02/skos/core> ;
    skos:definition "A notation, also known as classification code, is a string of characters such as \"T58.5\" or \"303.4833\" used to uniquely identify a concept within the scope of a given concept scheme."@en ;
    skos:scopeNote "By convention, skos:notation is used with a typed literal in the object position of the triple."@en .

skos:related a rdf:Property,
        owl:ObjectProperty,
        owl:SymmetricProperty ;
    rdfs:label "has related"@en ;
    rdfs:comment "skos:related is disjoint with skos:broaderTransitive"@en ;
    rdfs:isDefinedBy <http://www.w3.org/2004/02/skos/core> ;
    rdfs:subPropertyOf skos:semanticRelation ;
    skos:definition "Relates a concept to a concept with which there is an associative semantic relationship."@en .

skos:topConceptOf a rdf:Property,
        owl:ObjectProperty ;
    rdfs:label "is top concept in scheme"@en ;
    rdfs:domain skos:Concept ;
    rdfs:isDefinedBy <http://www.w3.org/2004/02/skos/core> ;
    rdfs:range skos:ConceptScheme ;
    rdfs:subPropertyOf skos:inScheme ;
    owl:inverseOf skos:hasTopConcept ;
    skos:definition "Relates a concept to the concept scheme that it is a top level concept of."@en .

sh:AndConstraintComponent-and a sh:Parameter ;
    rdfs:isDefinedBy sh: ;
    sh:path sh:and .

sh:BlankNode a sh:NodeKind ;
    rdfs:label "Blank node"@en ;
    rdfs:comment "The node kind of all blank nodes."@en ;
    rdfs:isDefinedBy sh: .

sh:BlankNodeOrLiteral a sh:NodeKind ;
    rdfs:label "Blank node or literal"@en ;
    rdfs:comment "The node kind of all blank nodes or literals."@en ;
    rdfs:isDefinedBy sh: .

sh:ClassConstraintComponent-class a sh:Parameter ;
    rdfs:isDefinedBy sh: ;
    sh:nodeKind sh:IRI ;
    sh:path sh:class .

sh:ClosedConstraintComponent-closed a sh:Parameter ;
    rdfs:isDefinedBy sh: ;
    sh:datatype xsd:boolean ;
    sh:path sh:closed .

sh:ClosedConstraintComponent-ignoredProperties a sh:Parameter ;
    rdfs:isDefinedBy sh: ;
    sh:optional true ;
    sh:path sh:ignoredProperties .

sh:DatatypeConstraintComponent-datatype a sh:Parameter ;
    rdfs:isDefinedBy sh: ;
    sh:maxCount 1 ;
    sh:nodeKind sh:IRI ;
    sh:path sh:datatype .

sh:DisjointConstraintComponent-disjoint a sh:Parameter ;
    rdfs:isDefinedBy sh: ;
    sh:nodeKind sh:IRI ;
    sh:path sh:disjoint .

sh:EqualsConstraintComponent-equals a sh:Parameter ;
    rdfs:isDefinedBy sh: ;
    sh:nodeKind sh:IRI ;
    sh:path sh:equals .

sh:ExpressionConstraintComponent-expression a sh:Parameter ;
    rdfs:isDefinedBy sh: ;
    sh:path sh:expression .

sh:HasValueConstraintComponent-hasValue a sh:Parameter ;
    rdfs:isDefinedBy sh: ;
    sh:path sh:hasValue .

sh:IRIOrLiteral a sh:NodeKind ;
    rdfs:label "IRI or literal"@en ;
    rdfs:comment "The node kind of all IRIs or literals."@en ;
    rdfs:isDefinedBy sh: .

sh:InConstraintComponent-in a sh:Parameter ;
    rdfs:isDefinedBy sh: ;
    sh:maxCount 1 ;
    sh:path sh:in .

sh:JSConstraint-js a sh:Parameter ;
    rdfs:isDefinedBy sh: ;
    sh:path sh:js .

sh:LanguageInConstraintComponent-languageIn a sh:Parameter ;
    rdfs:isDefinedBy sh: ;
    sh:maxCount 1 ;
    sh:path sh:languageIn .

sh:LessThanConstraintComponent-lessThan a sh:Parameter ;
    rdfs:isDefinedBy sh: ;
    sh:nodeKind sh:IRI ;
    sh:path sh:lessThan .

sh:LessThanOrEqualsConstraintComponent-lessThanOrEquals a sh:Parameter ;
    rdfs:isDefinedBy sh: ;
    sh:nodeKind sh:IRI ;
    sh:path sh:lessThanOrEquals .

sh:MaxCountConstraintComponent-maxCount a sh:Parameter ;
    rdfs:isDefinedBy sh: ;
    sh:datatype xsd:integer ;
    sh:maxCount 1 ;
    sh:path sh:maxCount .

sh:MaxExclusiveConstraintComponent-maxExclusive a sh:Parameter ;
    rdfs:isDefinedBy sh: ;
    sh:maxCount 1 ;
    sh:nodeKind sh:Literal ;
    sh:path sh:maxExclusive .

sh:MaxInclusiveConstraintComponent-maxInclusive a sh:Parameter ;
    rdfs:isDefinedBy sh: ;
    sh:maxCount 1 ;
    sh:nodeKind sh:Literal ;
    sh:path sh:maxInclusive .

sh:MaxLengthConstraintComponent-maxLength a sh:Parameter ;
    rdfs:isDefinedBy sh: ;
    sh:datatype xsd:integer ;
    sh:maxCount 1 ;
    sh:path sh:maxLength .

sh:MinCountConstraintComponent-minCount a sh:Parameter ;
    rdfs:isDefinedBy sh: ;
    sh:datatype xsd:integer ;
    sh:maxCount 1 ;
    sh:path sh:minCount .

sh:MinExclusiveConstraintComponent-minExclusive a sh:Parameter ;
    rdfs:isDefinedBy sh: ;
    sh:maxCount 1 ;
    sh:nodeKind sh:Literal ;
    sh:path sh:minExclusive .

sh:MinInclusiveConstraintComponent-minInclusive a sh:Parameter ;
    rdfs:isDefinedBy sh: ;
    sh:maxCount 1 ;
    sh:nodeKind sh:Literal ;
    sh:path sh:minInclusive .

sh:MinLengthConstraintComponent-minLength a sh:Parameter ;
    rdfs:isDefinedBy sh: ;
    sh:datatype xsd:integer ;
    sh:maxCount 1 ;
    sh:path sh:minLength .

sh:NodeConstraintComponent-node a sh:Parameter ;
    rdfs:isDefinedBy sh: ;
    sh:path sh:node .

sh:NodeKindConstraintComponent-nodeKind a sh:Parameter ;
    rdfs:isDefinedBy sh: ;
    sh:in ( sh:BlankNode sh:IRI sh:Literal sh:BlankNodeOrIRI sh:BlankNodeOrLiteral sh:IRIOrLiteral ) ;
    sh:maxCount 1 ;
    sh:path sh:nodeKind .

sh:NotConstraintComponent-not a sh:Parameter ;
    rdfs:isDefinedBy sh: ;
    sh:path sh:not .

sh:OrConstraintComponent-or a sh:Parameter ;
    rdfs:isDefinedBy sh: ;
    sh:path sh:or .

sh:PatternConstraintComponent-flags a sh:Parameter ;
    rdfs:isDefinedBy sh: ;
    sh:datatype xsd:string ;
    sh:optional true ;
    sh:path sh:flags .

sh:PatternConstraintComponent-pattern a sh:Parameter ;
    rdfs:isDefinedBy sh: ;
    sh:datatype xsd:string ;
    sh:path sh:pattern .

sh:PropertyConstraintComponent-property a sh:Parameter ;
    rdfs:isDefinedBy sh: ;
    sh:path sh:property .

sh:QualifiedMaxCountConstraintComponent-qualifiedMaxCount a sh:Parameter ;
    rdfs:isDefinedBy sh: ;
    sh:datatype xsd:integer ;
    sh:path sh:qualifiedMaxCount .

sh:QualifiedMaxCountConstraintComponent-qualifiedValueShape a sh:Parameter ;
    rdfs:isDefinedBy sh: ;
    sh:path sh:qualifiedValueShape .

sh:QualifiedMaxCountConstraintComponent-qualifiedValueShapesDisjoint a sh:Parameter ;
    rdfs:isDefinedBy sh: ;
    sh:datatype xsd:boolean ;
    sh:optional true ;
    sh:path sh:qualifiedValueShapesDisjoint .

sh:QualifiedMinCountConstraintComponent-qualifiedMinCount a sh:Parameter ;
    rdfs:isDefinedBy sh: ;
    sh:datatype xsd:integer ;
    sh:path sh:qualifiedMinCount .

sh:QualifiedMinCountConstraintComponent-qualifiedValueShape a sh:Parameter ;
    rdfs:isDefinedBy sh: ;
    sh:path sh:qualifiedValueShape .

sh:QualifiedMinCountConstraintComponent-qualifiedValueShapesDisjoint a sh:Parameter ;
    rdfs:isDefinedBy sh: ;
    sh:datatype xsd:boolean ;
    sh:optional true ;
    sh:path sh:qualifiedValueShapesDisjoint .

sh:SPARQLConstraintComponent-sparql a sh:Parameter ;
    rdfs:isDefinedBy sh: ;
    sh:path sh:sparql .

sh:UniqueLangConstraintComponent-uniqueLang a sh:Parameter ;
    rdfs:isDefinedBy sh: ;
    sh:datatype xsd:boolean ;
    sh:maxCount 1 ;
    sh:path sh:uniqueLang .

sh:Violation a sh:Severity ;
    rdfs:label "Violation"@en ;
    rdfs:comment "The severity for a violation validation result."@en ;
    rdfs:isDefinedBy sh: .

sh:XoneConstraintComponent-xone a sh:Parameter ;
    rdfs:isDefinedBy sh: ;
    sh:path sh:xone .

sh:and a rdf:Property ;
    rdfs:label "and"@en ;
    rdfs:comment "RDF list of shapes to validate the value nodes against."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:range rdf:List .

sh:class a rdf:Property ;
    rdfs:label "class"@en ;
    rdfs:comment "The type that all value nodes must have."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:range rdfs:Class .

sh:closed a rdf:Property ;
    rdfs:label "closed"@en ;
    rdfs:comment "If set to true then the shape is closed."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:range xsd:boolean .

sh:datatype a rdf:Property ;
    rdfs:label "datatype"@en ;
    rdfs:comment "Specifies an RDF datatype that all value nodes must have."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:range rdfs:Datatype .

sh:disjoint a rdf:Property ;
    rdfs:label "disjoint"@en ;
    rdfs:comment "Specifies a property where the set of values must be disjoint with the value nodes."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:range rdf:Property .

sh:equals a rdf:Property ;
    rdfs:label "equals"@en ;
    rdfs:comment "Specifies a property that must have the same values as the value nodes."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:range rdf:Property .

sh:expression a rdf:Property ;
    rdfs:label "expression"@en ;
    rdfs:comment "The node expression that must return true for the value nodes."@en ;
    rdfs:isDefinedBy sh: .

sh:flags a rdf:Property ;
    rdfs:label "flags"@en ;
    rdfs:comment "An optional flag to be used with regular expression pattern matching."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:range xsd:string .

sh:hasValue a rdf:Property ;
    rdfs:label "has value"@en ;
    rdfs:comment "Specifies a value that must be among the value nodes."@en ;
    rdfs:isDefinedBy sh: .

sh:ignoredProperties a rdf:Property ;
    rdfs:label "ignored properties"@en ;
    rdfs:comment "An optional RDF list of properties that are also permitted in addition to those explicitly enumerated via sh:property/sh:path."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:range rdf:List .

sh:in a rdf:Property ;
    rdfs:label "in"@en ;
    rdfs:comment "Specifies a list of allowed values so that each value node must be among the members of the given list."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:range rdf:List .

sh:js a rdf:Property ;
    rdfs:label "JavaScript constraint"@en ;
    rdfs:comment "Constraints expressed in JavaScript."^^xsd:string ;
    rdfs:isDefinedBy sh: ;
    rdfs:range sh:JSConstraint .

sh:languageIn a rdf:Property ;
    rdfs:label "language in"@en ;
    rdfs:comment "Specifies a list of language tags that all value nodes must have."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:range rdf:List .

sh:lessThan a rdf:Property ;
    rdfs:label "less than"@en ;
    rdfs:comment "Specifies a property that must have smaller values than the value nodes."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:range rdf:Property .

sh:lessThanOrEquals a rdf:Property ;
    rdfs:label "less than or equals"@en ;
    rdfs:comment "Specifies a property that must have smaller or equal values than the value nodes."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:range rdf:Property .

sh:maxCount a rdf:Property ;
    rdfs:label "max count"@en ;
    rdfs:comment "Specifies the maximum number of values in the set of value nodes."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:range xsd:integer .

sh:maxExclusive a rdf:Property ;
    rdfs:label "max exclusive"@en ;
    rdfs:comment "Specifies the maximum exclusive value of each value node."@en ;
    rdfs:isDefinedBy sh: .

sh:maxInclusive a rdf:Property ;
    rdfs:label "max inclusive"@en ;
    rdfs:comment "Specifies the maximum inclusive value of each value node."@en ;
    rdfs:isDefinedBy sh: .

sh:maxLength a rdf:Property ;
    rdfs:label "max length"@en ;
    rdfs:comment "Specifies the maximum string length of each value node."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:range xsd:integer .

sh:minCount a rdf:Property ;
    rdfs:label "min count"@en ;
    rdfs:comment "Specifies the minimum number of values in the set of value nodes."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:range xsd:integer .

sh:minExclusive a rdf:Property ;
    rdfs:label "min exclusive"@en ;
    rdfs:comment "Specifies the minimum exclusive value of each value node."@en ;
    rdfs:isDefinedBy sh: .

sh:minInclusive a rdf:Property ;
    rdfs:label "min inclusive"@en ;
    rdfs:comment "Specifies the minimum inclusive value of each value node."@en ;
    rdfs:isDefinedBy sh: .

sh:minLength a rdf:Property ;
    rdfs:label "min length"@en ;
    rdfs:comment "Specifies the minimum string length of each value node."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:range xsd:integer .

sh:node a rdf:Property ;
    rdfs:label "node"@en ;
    rdfs:comment "Specifies the node shape that all value nodes must conform to."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:range sh:NodeShape .

sh:nodeKind a rdf:Property ;
    rdfs:label "node kind"@en ;
    rdfs:comment "Specifies the node kind (e.g. IRI or literal) each value node."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:range sh:NodeKind .

sh:not a rdf:Property ;
    rdfs:label "not"@en ;
    rdfs:comment "Specifies a shape that the value nodes must not conform to."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:range sh:Shape .

sh:or a rdf:Property ;
    rdfs:label "or"@en ;
    rdfs:comment "Specifies a list of shapes so that the value nodes must conform to at least one of the shapes."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:range rdf:List .

sh:pattern a rdf:Property ;
    rdfs:label "pattern"@en ;
    rdfs:comment "Specifies a regular expression pattern that the string representations of the value nodes must match."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:range xsd:string .

sh:property a rdf:Property ;
    rdfs:label "property"@en ;
    rdfs:comment "Links a shape to its property shapes."@en ;
    rdfs:domain sh:Shape ;
    rdfs:isDefinedBy sh: ;
    rdfs:range sh:PropertyShape .

sh:qualifiedMaxCount a rdf:Property ;
    rdfs:label "qualified max count"@en ;
    rdfs:comment "The maximum number of value nodes that can conform to the shape."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:range xsd:integer .

sh:qualifiedMinCount a rdf:Property ;
    rdfs:label "qualified min count"@en ;
    rdfs:comment "The minimum number of value nodes that must conform to the shape."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:range xsd:integer .

sh:sparql a rdf:Property ;
    rdfs:label "constraint (in SPARQL)"@en ;
    rdfs:comment "Links a shape with SPARQL constraints."@en ;
    rdfs:domain sh:Shape ;
    rdfs:isDefinedBy sh: ;
    rdfs:range sh:SPARQLConstraint .

sh:uniqueLang a rdf:Property ;
    rdfs:label "unique languages"@en ;
    rdfs:comment "Specifies whether all node values must have a unique (or no) language tag."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:range xsd:boolean .

sh:xone a rdf:Property ;
    rdfs:label "exactly one"@en ;
    rdfs:comment "Specifies a list of shapes so that the value nodes must conform to exactly one of the shapes."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:range rdf:List .

s223:Aspect-Delta a s223:Aspect-Delta,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "Delta"^^xsd:string ;
    rdfs:comment "The property value is a differential value (e.g., pressure difference) instead of an absolute value."^^xsd:string ;
    rdfs:subClassOf s223:EnumerationKind-Aspect .

s223:ChilledBeam a s223:Class,
        sh:NodeShape ;
    rdfs:label "Chilled beam"^^xsd:string ;
    rdfs:comment "A piece of `Equipment` with a colder surface temperature where air passes through, and air movement is induced in the room to achieve cooling. Cooling medium is generally water."^^xsd:string ;
    rdfs:subClassOf s223:Equipment ;
    sh:property [ rdfs:comment "A `ChilledBeam` shall have at least one bidirectional connection point using the medium `Fluid-Air`."^^xsd:string ;
            sh:message "s223: A `ChilledBeam` shall have at least one bidirectional connection point using the medium `Fluid-Air`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:BidirectionalConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Fluid-Air ;
                                    sh:path s223:hasMedium ] ] ] ],
        [ rdfs:comment "A `ChilledBeam` shall at least have the role `Role-Cooling`."^^xsd:string ;
            sh:message "s223: A `ChilledBeam` shall at least have the role `Role-Cooling`."^^xsd:string ;
            sh:path s223:hasRole ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:Role-Cooling ] ],
        [ rdfs:comment "A `ChilledBeam` shall have at least one outlet using the medium `Fluid-Water`."^^xsd:string ;
            sh:message "s223: A `ChilledBeam` 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 `ChilledBeam` shall have at least one inlet using the medium `Fluid-Water`."^^xsd:string ;
            sh:message "s223: A `ChilledBeam` 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:Computer a s223:Class,
        sh:NodeShape ;
    rdfs:label "Computer"^^xsd:string ;
    rdfs:comment """A piece of `Equipment` that can be programmed to automatically carry out sequences of arithmetic or logical operations (computation).
Modern digital electronic computers can perform generic sets of operations known as programs. These programs enable computers to perform a
wide range of tasks."""^^xsd:string ;
    rdfs:subClassOf s223:Equipment ;
    sh:property [ rdfs:comment "A `Computer` shall have at least one inlet using the medium `Constituent-Electricity`."^^xsd:string ;
            sh:message "s223: A `Computer` 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:Constituent-CO2 a s223:Class,
        s223:Constituent-CO2,
        sh:NodeShape ;
    rdfs:label "CO2"^^xsd:string ;
    rdfs:comment "Carbon dioxide"^^xsd:string ;
    rdfs:subClassOf s223:Medium-Constituent .

s223:ElectronicDisplay a s223:Class,
        sh:NodeShape ;
    rdfs:label "Electronic display"^^xsd:string ;
    rdfs:comment "A piece of `Equipment` that receives an input electrical signal and outputs information, typically text and/or graphics, in a visual form."^^xsd:string ;
    rdfs:subClassOf s223:Equipment ;
    sh:property [ rdfs:comment "An `ElectronicDisplay` shall have at least one inlet using the medium `Electricity-Signal`."^^xsd:string ;
            sh:message "s223: An `ElectronicDisplay` shall have at least one inlet using the medium `Electricity-Signal`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Electricity-Signal ;
                                    sh:path s223:hasMedium ] ] ] ;
            sh:qualifiedValueShapesDisjoint true ],
        [ rdfs:comment "An `ElectronicDisplay` shall have at least one inlet using the medium `Constituent-Electricity`."^^xsd:string ;
            sh:message "s223: An `ElectronicDisplay` 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:qualifiedValueShapesDisjoint true ] .

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/data/scb-vrf> ;
                    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/data/scb-vrf> ;
                    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/data/scb-vrf> ;
                    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:Fluid-NaturalGas a s223:Class,
        s223:Fluid-NaturalGas,
        sh:NodeShape ;
    rdfs:label "Natural gas"^^xsd:string ;
    rdfs:comment "Fluid-NaturalGas"^^xsd:string ;
    rdfs:subClassOf s223:Mix-Fluid .

s223:Infrared-Signal a s223:Class,
        s223:Infrared-Signal,
        sh:NodeShape ;
    rdfs:label "Infrared signal"^^xsd:string ;
    rdfs:comment """ This class and its enumerated subclasses represent common infrared communication protocols.

: Infrared-Signal Enumerations

| Enumeration |
|:-----------|
| `Signal-FiberEthernet` (see {s223:Signal-FiberEthernet}) |"""^^xsd:string ;
    rdfs:subClassOf s223:Light-Infrared .

s223:Mix-PowerAndSignal a s223:Class,
        s223:Mix-PowerAndSignal,
        sh:NodeShape ;
    rdfs:label "Power and signal mixture"^^xsd:string ;
    rdfs:comment """This class and its enumerated subclasses represent substances that are used to convey the combination of electrical power and electrical communication signals.

: Mix-PowerAndSignal Enumerations

| Enumeration |
|:-----------|
| `PowerAndSignal-PoE` |"""^^xsd:string ;
    rdfs:subClassOf s223:Medium-Mix .

s223:Radiator a s223:Class,
        sh:NodeShape ;
    rdfs:label "Radiator"^^xsd:string ;
    rdfs:comment """A piece of `Equipment` that provides primarily convective heating to a room using electricity, steam, or water
(e.g., electric baseboard heaters, heated floors, or traditional radiators)."""^^xsd:string ;
    rdfs:subClassOf s223:Equipment ;
    sh:property [ rdfs:comment "A `Radiator` shall at least have the role `Role-Heating`."^^xsd:string ;
            sh:message "s223: A `Radiator` 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 `Radiator` shall have at least one bidirectional connection point using the medium `Fluid-Air`."^^xsd:string ;
            sh:message "s223: A `Radiator` shall have at least one bidirectional connection point using the medium `Fluid-Air`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:BidirectionalConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Fluid-Air ;
                                    sh:path s223:hasMedium ] ] ] ] .

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-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-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:System a s223:Class,
        sh:NodeShape ;
    rdfs:label "System"^^xsd:string ;
    rdfs:comment "A logical grouping of one or more pieces of `Equipment`, `Junction`s, or other `System`s for some functional purpose."^^xsd:string ;
    rdfs:subClassOf s223:Concept ;
    sh:property [ a sh:PropertyShape ;
            rdfs:comment "A `System` shall be associated with at least one piece of `Equipment`, `Junction`, or `System` using the relation `hasMember`."^^xsd:string ;
            sh:message "s223: A `System` shall be associated with at least one piece of `Equipment`, `Junction`, or `System` using the relation `hasMember`."^^xsd:string ;
            sh:minCount 1 ;
            sh:or ( [ sh:class s223:Equipment ] [ sh:class s223:Junction ] [ sh:class s223:System ] ) ;
            sh:path s223:hasMember ;
            sh:severity sh:Warning ],
        [ rdfs:comment "A `System` shall be associated with zero or more `EnumerationKind-Role`s using the relation `hasRole`."^^xsd:string ;
            sh:class s223:EnumerationKind-Role ;
            sh:message "s223: A `System` shall be associated with zero or more `EnumerationKind-Role`s using the relation `hasRole`."^^xsd:string ;
            sh:path s223:hasRole ],
        [ rdfs:comment "A `System` shall be associated with zero or more `ConnectionPoint`s that are the \"boundary\" of the equipment using the relation `hasBoundaryConnectionPoint`. The `hasBoundaryConnectionPoint` relation is used to reference those connection points of its equipment that must be connected, but in the context of validating the model with the system by itself, the \"dangling connection point\" should not generate a validation error."^^xsd:string ;
            sh:class s223:ConnectionPoint ;
            sh:message "s223: A `System` shall be associated with zero or more `ConnectionPoint`s that are the \"boundary\" of the equipment using the relation `hasBoundaryConnectionPoint`. The `hasBoundaryConnectionPoint` relation is used to reference those connection points of its equipment that must be connected, but in the context of validating the model with the system by itself, the \"dangling connection point\" should not generate a validation error."^^xsd:string ;
            sh:path s223:hasOptionalConnectionPoint ],
        [ rdfs:comment "A `System` shall be associated with zero or more `ConnectionPoint`s that are the \"boundary\" of the equipment using the relation `hasBoundaryConnectionPoint`. The `hasBoundaryConnectionPoint` relation is used to reference those connection points of its equipment that must be connected, but in the context of validating the model with the system by itself, the \"dangling connection point\" should not generate a validation error."^^xsd:string ;
            sh:class s223:ConnectionPoint ;
            sh:message "s223: A `System` shall be associated with zero or more `ConnectionPoint`s that are the \"boundary\" of the equipment using the relation `hasBoundaryConnectionPoint`. The `hasBoundaryConnectionPoint` relation is used to reference those connection points of its equipment that must be connected, but in the context of validating the model with the system by itself, the \"dangling connection point\" should not generate a validation error."^^xsd:string ;
            sh:path s223:hasBoundaryConnectionPoint ] ;
    sh:sparql [ a sh:SPARQLConstraint ;
            rdfs:comment "Ensure that the boundary `ConnectionPoint`s of a `System` belong to only members of that `System`"^^xsd:string ;
            sh:message "s223: `System` {$this} `hasBoundaryConnectionPoint` {?cp}, belonging to {?con} that is not a member of {?this}."^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/data/scb-vrf> ;
            sh:select """
SELECT $this ?cp ?con
WHERE {
$this s223:hasBoundaryConnectionPoint ?cp .
?cp s223:isConnectionPointOf ?con .
FILTER NOT EXISTS {$this s223:hasMember+ ?con}
}
"""^^xsd:string ] .

s223:ThermodynamicPhase-Gas a s223:Class,
        s223:ThermodynamicPhase-Gas,
        sh:NodeShape ;
    rdfs:label "Gas phase"^^xsd:string ;
    rdfs:comment """This class and its enumerated subclasses represent gas in various thermodynamic states.

: ThermodynamicPhase-Gas Enumerations

| Enumeration |
|:-----------|
| `Gas-Superheated` |"""^^xsd:string ;
    rdfs:subClassOf s223:EnumerationKind-ThermodynamicPhase .

s223:ThermodynamicPhase-Liquid a s223:Class,
        s223:ThermodynamicPhase-Liquid,
        sh:NodeShape ;
    rdfs:label "Liquid phase"^^xsd:string ;
    rdfs:comment """This class and its enumerated subclasses represent liquid in various thermodynamic states.

: ThermodynamicPhase-Liquid Enumerations

| Enumeration |
|:-----------|
| `Liquid-Subcooled` |"""^^xsd:string ;
    rdfs:subClassOf s223:EnumerationKind-ThermodynamicPhase .

s223:Water-Steam a s223:Class,
        s223:Water-Steam,
        sh:NodeShape ;
    rdfs:label "Steam"^^xsd:string ;
    s223:composedOf [ a s223:QuantifiableProperty ;
            rdfs:label "Water concentration"^^xsd:string ;
            s223:ofConstituent s223:Constituent-H2O ;
            qudt:hasQuantityKind quantitykind:VolumeFraction ;
            qudt:hasUnit unit:PERCENT ] ;
    rdfs:comment "Water-Steam"^^xsd:string ;
    rdfs:subClassOf s223:Fluid-Water .

s223:Waveguide a s223:Class,
        sh:NodeShape ;
    rdfs:label "Waveguide"^^xsd:string ;
    rdfs:comment "A type of `Connection` the represents structures, such as fiber optic or coaxial cables, used to convey electromagnetic energy i.e., `Constituent-EM` in a specific direction. Without the physical constraint of a waveguide, waves would expand into three-dimensional space and their intensities would decrease according to the inverse square law."^^xsd:string ;
    rdfs:subClassOf s223:Connection ;
    sh:property [ rdfs:comment "A `Waveguide` 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: A `Waveguide` shall be associated with exactly one `Constituent-EM` using the relation `hasMedium`."^^xsd:string ;
            sh:minCount 1 ;
            sh:path s223:hasMedium ] .

s223:Wideband-DOCSIS a s223:Class,
        s223:Wideband-DOCSIS,
        sh:NodeShape ;
    rdfs:label "DOCSIS"^^xsd:string ;
    rdfs:comment "The global standard Data Over Cable Service Interface Specification communication protocol that is used to deliver high-speed internet service over `CoaxialCable` communication networks."^^xsd:string ;
    rdfs:subClassOf s223:Signal-Wideband .

s223:encloses a s223:Relation,
        rdf:Property ;
    rdfs:label "encloses"^^xsd:string ;
    rdfs:comment "A `Relation` that associates a `PhysicalSpace` with one or more `DomainSpace`s."^^xsd:string .

s223:executes a s223:Relation,
        rdf:Property ;
    rdfs:label "executes"^^xsd:string ;
    rdfs:comment "A `Relation` that associates a `Controller` (see {s223:Controller}) with the `Function`s (see {s223:Function}) that it executes."^^xsd:string .

s223:hasInput a s223:Relation,
        rdf:Property ;
    rdfs:label "has input"^^xsd:string ;
    rdfs:comment "A `Relation` that associates a `Function` (see {s223:Function}) with a `Property` (see {s223:Property}) that is used as input to the `Function`."^^xsd:string .

s223:hasOptionalConnectionPoint a s223:Relation,
        rdf:Property ;
    rdfs:label "has optional connection point"^^xsd:string ;
    rdfs:comment "The `hasOptionalConnectionPoint` relation means that the `ConnectionPoint` is optional and is not required to be connected. The presence of this relation is used to indicate that such a \"dangling connection point\" should not generate a validation error in an integrated or non-integrated context."^^xsd:string .

s223:isConnectionPointOf a s223:RelationWithInverse,
        rdf:Property ;
    rdfs:label "is connection point of"^^xsd:string ;
    s223:inverseOf s223:hasConnectionPoint ;
    rdfs:comment "One of two `Relation`s that associates a `ConnectionPoint` with a `Connectable` thing. It is the inverse of the relation `hasConnectionPoint` (see {s223:hasConnectionPoint})."^^xsd:string .

s223:isInternalReferenceOf a s223:RelationWithInverse,
        rdf:Property ;
    rdfs:label "is internal reference of"^^xsd:string ;
    s223:inverseOf s223:hasInternalReference ;
    rdfs:comment "The inverse of the relation `hasInternalReference` (see {s223:hasInternalReference})."^^xsd:string .

ex1:00016 a s223:ConnectionPoint,
        s223:ElectricalConnectionPoint,
        s223:InletConnectionPoint ;
    rdfs:label "return_fan.electricalInlet" ;
    s223:cnx ex1:00013 ;
    s223:hasMedium s223:Constituent-Electricity ;
    s223:isConnectionPointOf ex1:00013 .

ex1:00032 a s223:ConnectionPoint,
        s223:ElectricalConnectionPoint,
        s223:InletConnectionPoint ;
    rdfs:label "supply_fan.electricalInlet" ;
    s223:cnx ex1:00029 ;
    s223:hasMedium s223:Constituent-Electricity ;
    s223:isConnectionPointOf ex1:00029 .

ex1:00050 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        bob:PercentCommand ;
    rdfs:label "00050" ;
    qudt:hasQuantityKind quantitykind:DimensionlessRatio ;
    qudt:hasUnit unit:PERCENT .

ex1:00051 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        bob:ElectricPower,
        bob:ElectricPowerkW ;
    rdfs:label "00051" ;
    qudt:hasQuantityKind quantitykind:ElectricPower ;
    qudt:hasUnit unit:KiloW .

ex1:00052 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        bob:Percent ;
    rdfs:label "00052" ;
    qudt:hasQuantityKind quantitykind:DimensionlessRatio ;
    qudt:hasUnit unit:PERCENT .

ex1:00053 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "00053" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff .

ex1:00054 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        bob:Flow ;
    rdfs:label "00054" ;
    qudt:hasQuantityKind quantitykind:VolumeFlowRate ;
    qudt:hasUnit unit:FT3-PER-MIN .

ex1:00057 a s223:ConnectionPoint,
        s223:ElectricalConnectionPoint,
        s223:InletConnectionPoint ;
    rdfs:label "fan.electricalInlet" ;
    s223:cnx ex1:00049 ;
    s223:hasMedium s223:Constituent-Electricity ;
    s223:isConnectionPointOf ex1:00049 .

ex1:00090 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        bob:PercentCommand ;
    rdfs:label "00090" ;
    qudt:hasQuantityKind quantitykind:DimensionlessRatio ;
    qudt:hasUnit unit:PERCENT .

ex1:00091 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        bob:Percent ;
    rdfs:label "00091" ;
    qudt:hasQuantityKind quantitykind:DimensionlessRatio ;
    qudt:hasUnit unit:PERCENT .

ex1:00094 a s223:ConnectionPoint,
        s223:ElectricalConnectionPoint,
        s223:InletConnectionPoint ;
    rdfs:label "fan.electricalInlet" ;
    s223:cnx ex1:00089 ;
    s223:hasMedium s223:Constituent-Electricity ;
    s223:isConnectionPointOf ex1:00089 .

ex1:00140 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "FS" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:00139 .

ex1:00158 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "IFS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00157 .

ex1:00180 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        bob:Percent ;
    rdfs:label "EVP" ;
    s223:hasExternalReference ex1:00179 ;
    qudt:hasQuantityKind quantitykind:DimensionlessRatio ;
    qudt:hasUnit unit:PERCENT .

ex1:00197 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        bob:PercentCommand ;
    rdfs:label "00197" ;
    qudt:hasQuantityKind quantitykind:DimensionlessRatio ;
    qudt:hasUnit unit:PERCENT .

ex1:00198 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        bob:Percent ;
    rdfs:label "00198" ;
    qudt:hasQuantityKind quantitykind:DimensionlessRatio ;
    qudt:hasUnit unit:PERCENT .

ex1:00201 a s223:ConnectionPoint,
        s223:ElectricalConnectionPoint,
        s223:InletConnectionPoint ;
    rdfs:label "fan.electricalInlet" ;
    s223:cnx ex1:00196 ;
    s223:hasMedium s223:Constituent-Electricity ;
    s223:isConnectionPointOf ex1:00196 .

ex1:00247 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "FS" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:00246 .

ex1:00265 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "IFS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00264 .

ex1:00287 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        bob:Percent ;
    rdfs:label "EVP" ;
    s223:hasExternalReference ex1:00286 ;
    qudt:hasQuantityKind quantitykind:DimensionlessRatio ;
    qudt:hasUnit unit:PERCENT .

ex1:00304 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        bob:PercentCommand ;
    rdfs:label "00304" ;
    qudt:hasQuantityKind quantitykind:DimensionlessRatio ;
    qudt:hasUnit unit:PERCENT .

ex1:00305 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        bob:Percent ;
    rdfs:label "00305" ;
    qudt:hasQuantityKind quantitykind:DimensionlessRatio ;
    qudt:hasUnit unit:PERCENT .

ex1:00308 a s223:ConnectionPoint,
        s223:ElectricalConnectionPoint,
        s223:InletConnectionPoint ;
    rdfs:label "fan.electricalInlet" ;
    s223:cnx ex1:00303 ;
    s223:hasMedium s223:Constituent-Electricity ;
    s223:isConnectionPointOf ex1:00303 .

ex1:00354 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "FS" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:00353 .

ex1:00372 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "IFS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00371 .

ex1:00394 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        bob:Percent ;
    rdfs:label "EVP" ;
    s223:hasExternalReference ex1:00393 ;
    qudt:hasQuantityKind quantitykind:DimensionlessRatio ;
    qudt:hasUnit unit:PERCENT .

ex1:00411 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        bob:PercentCommand ;
    rdfs:label "00411" ;
    qudt:hasQuantityKind quantitykind:DimensionlessRatio ;
    qudt:hasUnit unit:PERCENT .

ex1:00412 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        bob:Percent ;
    rdfs:label "00412" ;
    qudt:hasQuantityKind quantitykind:DimensionlessRatio ;
    qudt:hasUnit unit:PERCENT .

ex1:00415 a s223:ConnectionPoint,
        s223:ElectricalConnectionPoint,
        s223:InletConnectionPoint ;
    rdfs:label "fan.electricalInlet" ;
    s223:cnx ex1:00410 ;
    s223:hasMedium s223:Constituent-Electricity ;
    s223:isConnectionPointOf ex1:00410 .

ex1:00461 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "FS" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:00460 .

ex1:00479 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "IFS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00478 .

ex1:00501 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        bob:Percent ;
    rdfs:label "EVP" ;
    s223:hasExternalReference ex1:00500 ;
    qudt:hasQuantityKind quantitykind:DimensionlessRatio ;
    qudt:hasUnit unit:PERCENT .

ex1:00518 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        bob:PercentCommand ;
    rdfs:label "00518" ;
    qudt:hasQuantityKind quantitykind:DimensionlessRatio ;
    qudt:hasUnit unit:PERCENT .

ex1:00519 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        bob:Percent ;
    rdfs:label "00519" ;
    qudt:hasQuantityKind quantitykind:DimensionlessRatio ;
    qudt:hasUnit unit:PERCENT .

ex1:00522 a s223:ConnectionPoint,
        s223:ElectricalConnectionPoint,
        s223:InletConnectionPoint ;
    rdfs:label "fan.electricalInlet" ;
    s223:cnx ex1:00517 ;
    s223:hasMedium s223:Constituent-Electricity ;
    s223:isConnectionPointOf ex1:00517 .

ex1:00568 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "FS" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:00567 .

ex1:00586 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "IFS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00585 .

ex1:00608 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        bob:Percent ;
    rdfs:label "EVP" ;
    s223:hasExternalReference ex1:00607 ;
    qudt:hasQuantityKind quantitykind:DimensionlessRatio ;
    qudt:hasUnit unit:PERCENT .

ex1:00625 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        bob:PercentCommand ;
    rdfs:label "00625" ;
    qudt:hasQuantityKind quantitykind:DimensionlessRatio ;
    qudt:hasUnit unit:PERCENT .

ex1:00626 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        bob:Percent ;
    rdfs:label "00626" ;
    qudt:hasQuantityKind quantitykind:DimensionlessRatio ;
    qudt:hasUnit unit:PERCENT .

ex1:00629 a s223:ConnectionPoint,
        s223:ElectricalConnectionPoint,
        s223:InletConnectionPoint ;
    rdfs:label "fan.electricalInlet" ;
    s223:cnx ex1:00624 ;
    s223:hasMedium s223:Constituent-Electricity ;
    s223:isConnectionPointOf ex1:00624 .

ex1:00675 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "FS" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:00674 .

ex1:00693 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "IFS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00692 .

ex1:00715 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        bob:Percent ;
    rdfs:label "EVP" ;
    s223:hasExternalReference ex1:00714 ;
    qudt:hasQuantityKind quantitykind:DimensionlessRatio ;
    qudt:hasUnit unit:PERCENT .

ex1:00732 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        bob:PercentCommand ;
    rdfs:label "00732" ;
    qudt:hasQuantityKind quantitykind:DimensionlessRatio ;
    qudt:hasUnit unit:PERCENT .

ex1:00733 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        bob:Percent ;
    rdfs:label "00733" ;
    qudt:hasQuantityKind quantitykind:DimensionlessRatio ;
    qudt:hasUnit unit:PERCENT .

ex1:00736 a s223:ConnectionPoint,
        s223:ElectricalConnectionPoint,
        s223:InletConnectionPoint ;
    rdfs:label "fan.electricalInlet" ;
    s223:cnx ex1:00731 ;
    s223:hasMedium s223:Constituent-Electricity ;
    s223:isConnectionPointOf ex1:00731 .

ex1:00782 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "FS" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:00781 .

ex1:00800 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "IFS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00799 .

ex1:00822 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        bob:Percent ;
    rdfs:label "EVP" ;
    s223:hasExternalReference ex1:00821 ;
    qudt:hasQuantityKind quantitykind:DimensionlessRatio ;
    qudt:hasUnit unit:PERCENT .

ex1:00839 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        bob:PercentCommand ;
    rdfs:label "00839" ;
    qudt:hasQuantityKind quantitykind:DimensionlessRatio ;
    qudt:hasUnit unit:PERCENT .

ex1:00840 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        bob:Percent ;
    rdfs:label "00840" ;
    qudt:hasQuantityKind quantitykind:DimensionlessRatio ;
    qudt:hasUnit unit:PERCENT .

ex1:00843 a s223:ConnectionPoint,
        s223:ElectricalConnectionPoint,
        s223:InletConnectionPoint ;
    rdfs:label "fan.electricalInlet" ;
    s223:cnx ex1:00838 ;
    s223:hasMedium s223:Constituent-Electricity ;
    s223:isConnectionPointOf ex1:00838 .

ex1:00889 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "FS" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:00888 .

ex1:00907 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "IFS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:00906 .

ex1:00929 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        bob:Percent ;
    rdfs:label "EVP" ;
    s223:hasExternalReference ex1:00928 ;
    qudt:hasQuantityKind quantitykind:DimensionlessRatio ;
    qudt:hasUnit unit:PERCENT .

ex1:00946 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        bob:PercentCommand ;
    rdfs:label "00946" ;
    qudt:hasQuantityKind quantitykind:DimensionlessRatio ;
    qudt:hasUnit unit:PERCENT .

ex1:00947 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        bob:Percent ;
    rdfs:label "00947" ;
    qudt:hasQuantityKind quantitykind:DimensionlessRatio ;
    qudt:hasUnit unit:PERCENT .

ex1:00950 a s223:ConnectionPoint,
        s223:ElectricalConnectionPoint,
        s223:InletConnectionPoint ;
    rdfs:label "fan.electricalInlet" ;
    s223:cnx ex1:00945 ;
    s223:hasMedium s223:Constituent-Electricity ;
    s223:isConnectionPointOf ex1:00945 .

ex1:00996 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "FS" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:00995 .

ex1:01014 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "IFS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01013 .

ex1:01036 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        bob:Percent ;
    rdfs:label "EVP" ;
    s223:hasExternalReference ex1:01035 ;
    qudt:hasQuantityKind quantitykind:DimensionlessRatio ;
    qudt:hasUnit unit:PERCENT .

ex1:01053 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        bob:PercentCommand ;
    rdfs:label "01053" ;
    qudt:hasQuantityKind quantitykind:DimensionlessRatio ;
    qudt:hasUnit unit:PERCENT .

ex1:01054 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        bob:Percent ;
    rdfs:label "01054" ;
    qudt:hasQuantityKind quantitykind:DimensionlessRatio ;
    qudt:hasUnit unit:PERCENT .

ex1:01057 a s223:ConnectionPoint,
        s223:ElectricalConnectionPoint,
        s223:InletConnectionPoint ;
    rdfs:label "fan.electricalInlet" ;
    s223:cnx ex1:01052 ;
    s223:hasMedium s223:Constituent-Electricity ;
    s223:isConnectionPointOf ex1:01052 .

ex1:01103 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "FS" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:01102 .

ex1:01121 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "IFS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01120 .

ex1:01143 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        bob:Percent ;
    rdfs:label "EVP" ;
    s223:hasExternalReference ex1:01142 ;
    qudt:hasQuantityKind quantitykind:DimensionlessRatio ;
    qudt:hasUnit unit:PERCENT .

ex1:01160 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        bob:PercentCommand ;
    rdfs:label "01160" ;
    qudt:hasQuantityKind quantitykind:DimensionlessRatio ;
    qudt:hasUnit unit:PERCENT .

ex1:01161 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        bob:Percent ;
    rdfs:label "01161" ;
    qudt:hasQuantityKind quantitykind:DimensionlessRatio ;
    qudt:hasUnit unit:PERCENT .

ex1:01164 a s223:ConnectionPoint,
        s223:ElectricalConnectionPoint,
        s223:InletConnectionPoint ;
    rdfs:label "fan.electricalInlet" ;
    s223:cnx ex1:01159 ;
    s223:hasMedium s223:Constituent-Electricity ;
    s223:isConnectionPointOf ex1:01159 .

ex1:01210 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "FS" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:01209 .

ex1:01228 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "IFS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01227 .

ex1:01250 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        bob:Percent ;
    rdfs:label "EVP" ;
    s223:hasExternalReference ex1:01249 ;
    qudt:hasQuantityKind quantitykind:DimensionlessRatio ;
    qudt:hasUnit unit:PERCENT .

ex1:01267 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        bob:PercentCommand ;
    rdfs:label "01267" ;
    qudt:hasQuantityKind quantitykind:DimensionlessRatio ;
    qudt:hasUnit unit:PERCENT .

ex1:01268 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        bob:Percent ;
    rdfs:label "01268" ;
    qudt:hasQuantityKind quantitykind:DimensionlessRatio ;
    qudt:hasUnit unit:PERCENT .

ex1:01271 a s223:ConnectionPoint,
        s223:ElectricalConnectionPoint,
        s223:InletConnectionPoint ;
    rdfs:label "fan.electricalInlet" ;
    s223:cnx ex1:01266 ;
    s223:hasMedium s223:Constituent-Electricity ;
    s223:isConnectionPointOf ex1:01266 .

ex1:01317 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "FS" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:01316 .

ex1:01335 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "IFS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01334 .

ex1:01357 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        bob:Percent ;
    rdfs:label "EVP" ;
    s223:hasExternalReference ex1:01356 ;
    qudt:hasQuantityKind quantitykind:DimensionlessRatio ;
    qudt:hasUnit unit:PERCENT .

ex1:01374 a s223:ActuatableProperty,
        s223:Property,
        s223:QuantifiableActuatableProperty,
        s223:QuantifiableProperty,
        bob:PercentCommand ;
    rdfs:label "01374" ;
    qudt:hasQuantityKind quantitykind:DimensionlessRatio ;
    qudt:hasUnit unit:PERCENT .

ex1:01375 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        bob:Percent ;
    rdfs:label "01375" ;
    qudt:hasQuantityKind quantitykind:DimensionlessRatio ;
    qudt:hasUnit unit:PERCENT .

ex1:01378 a s223:ConnectionPoint,
        s223:ElectricalConnectionPoint,
        s223:InletConnectionPoint ;
    rdfs:label "fan.electricalInlet" ;
    s223:cnx ex1:01373 ;
    s223:hasMedium s223:Constituent-Electricity ;
    s223:isConnectionPointOf ex1:01373 .

ex1:01424 a s223:ActuatableProperty,
        s223:EnumerableProperty,
        s223:EnumeratedActuatableProperty,
        s223:Property ;
    rdfs:label "FS" ;
    s223:hasEnumerationKind s223:EnumerationKind-HVACOperatingMode ;
    s223:hasExternalReference ex1:01423 .

ex1:01442 a s223:EnumerableProperty,
        s223:EnumeratedObservableProperty,
        s223:ObservableProperty,
        s223:Property ;
    rdfs:label "IFS" ;
    s223:hasEnumerationKind s223:EnumerationKind-OnOff ;
    s223:hasExternalReference ex1:01441 .

ex1:01464 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        bob:Percent ;
    rdfs:label "EVP" ;
    s223:hasExternalReference ex1:01463 ;
    qudt:hasQuantityKind quantitykind:DimensionlessRatio ;
    qudt:hasUnit unit:PERCENT .

ex1:01492 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        bob:Percent ;
    rdfs:label "FS" ;
    s223:hasExternalReference ex1:01491 ;
    qudt:hasQuantityKind quantitykind:DimensionlessRatio ;
    qudt:hasUnit unit:PERCENT .

ex1:01494 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        bob:Percent ;
    rdfs:label "EVP1" ;
    s223:hasExternalReference ex1:01493 ;
    qudt:hasQuantityKind quantitykind:DimensionlessRatio ;
    qudt:hasUnit unit:PERCENT .

ex1:01508 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        bob:Percent ;
    rdfs:label "SEVP" ;
    s223:hasExternalReference ex1:01507 ;
    qudt:hasQuantityKind quantitykind:DimensionlessRatio ;
    qudt:hasUnit unit:PERCENT .

ex1:01520 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        bob:Percent ;
    rdfs:label "BFS" ;
    s223:hasExternalReference ex1:01519 ;
    qudt:hasQuantityKind quantitykind:DimensionlessRatio ;
    qudt:hasUnit unit:PERCENT .

ex1:01522 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        bob:Percent ;
    rdfs:label "BEVP" ;
    s223:hasExternalReference ex1:01521 ;
    qudt:hasQuantityKind quantitykind:DimensionlessRatio ;
    qudt:hasUnit unit:PERCENT .

ex1:01536 a s223:ObservableProperty,
        s223:Property,
        s223:QuantifiableObservableProperty,
        s223:QuantifiableProperty,
        bob:Percent ;
    rdfs:label "BSEVP" ;
    s223:hasExternalReference ex1:01535 ;
    qudt:hasQuantityKind quantitykind:DimensionlessRatio ;
    qudt:hasUnit unit:PERCENT .

dcterms:abstract a rdf:Property,
        owl:AnnotationProperty ;
    rdfs:label "abstract"^^xsd:string ;
    rdfs:isDefinedBy dcterms:,
        <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:range xsd:string .

dcterms:created a rdf:Property,
        owl:AnnotationProperty ;
    rdfs:label "created"^^xsd:string ;
    rdfs:isDefinedBy dcterms: ;
    rdfs:range xsd:date .

dcterms:modified a rdf:Property,
        owl:AnnotationProperty ;
    rdfs:label "modified"^^xsd:string ;
    rdfs:isDefinedBy dcterms: ;
    rdfs:range xsd:date .

dcterms:title a rdf:Property,
        owl:AnnotationProperty ;
    rdfs:label "title"^^xsd:string ;
    rdfs:isDefinedBy dcterms: ;
    rdfs:range xsd:string .

qudt:BitEncoding a qudt:BitEncodingType ;
    rdfs:label "Bit Encoding"^^xsd:string ;
    qudt:bits 1 ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:BooleanEncoding a qudt:BooleanEncodingType ;
    rdfs:label "Boolean Encoding"^^xsd:string ;
    qudt:bits 1 ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype>,
        <http://qudt.org/3.1.8/vocab/datatype> .

qudt:CCT_SunCentered a qudt:CoordinateCenterKind ;
    rdfs:label "Sun-centered Coordinate System Type"^^xsd:string ;
    ns2:literal "sunCentered"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:CT_COUNTABLY-INFINITE a qudt:CardinalityType ;
    rdfs:label "Countably Infinite Cardinality Type"^^xsd:string ;
    dcterms:description """
  A set of numbers is called countably infinite if there is a way to enumerate them.
  Formally this is done with a bijection function that associates each number in the set with exactly one of the positive integers.
  The set of all fractions is also countably infinite.
  In other words, any set $X$ that has the same cardinality as the set of the natural numbers,
   or $| X | \\; =  \\; | \\mathbb N | \\; = \\; \\aleph0$, is said to be a countably infinite set.
  """^^qudt:LatexString ;
    qudt:informativeReference "http://www.math.vanderbilt.edu/~schectex/courses/infinity.pdf"^^xsd:anyURI ;
    ns2:literal "countable"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:CT_FINITE a qudt:CardinalityType ;
    rdfs:label "Finite Cardinality Type"^^xsd:string ;
    dcterms:description """
  Any set $X$ with cardinality less than that of the natural numbers, or
  $$| X | \\; <  \\; | \\mathbb N | $$
  is said to be a finite set.
  """^^qudt:LatexString ;
    ns2:literal "finite"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:CT_UNCOUNTABLE a qudt:CardinalityType ;
    rdfs:label "Uncountable Cardinality Type"^^xsd:string ;
    dcterms:description """
  Any set with cardinality greater than that of the natural numbers, or 
  $$| X | \\; >  \\; | \\mathbb N | $$
  
  For example $| R| \\; =  \\;  c  \\; > |\\mathbb N |$, is said to be uncountable.
  """^^qudt:LatexString ;
    ns2:literal "uncountable"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:CharEncoding a qudt:BooleanEncodingType,
        qudt:CharEncodingType ;
    rdfs:label "Char Encoding"^^xsd:string ;
    dcterms:description "7 bits of 1 octet"^^xsd:string ;
    qudt:bytes 1 ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype>,
        <http://qudt.org/3.1.8/vocab/datatype> .

qudt:Coordinates-2D-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-2D-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:DatatypePropertyShape 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:DimensionsPropertyShape a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:node qudt:IntegerListShape ;
    sh:path qudt:dimensions .

qudt:IntegerUnionList a rdf:List ;
    rdfs:label "Integer Union List"^^xsd:string ;
    rdf:first [ sh:datatype xsd:int ] ;
    rdf:rest ( [ sh:datatype xsd:nonNegativeInteger ] [ sh:datatype xsd:positiveInteger ] [ sh:datatype xsd:integer ] ) ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:LongUnsignedIntegerEncoding a qudt:IntegerEncodingType ;
    rdfs:label "Long Unsigned Integer Encoding"^^xsd:string ;
    qudt:bytes 8 ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype>,
        <http://qudt.org/3.1.8/vocab/datatype> .

qudt:MaybeUnitPropertyShape 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:N-Tuple-elementType a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:Datatype ;
    sh:minCount 0 ;
    sh:path qudt:elementDatatype .

qudt:QuantityKindsPropertyShape a sh:PropertyShape ;
    rdfs:comment "Invalid quantity kinds list - TODO: SPARQL Query"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:node qudt:QuantityKindList ;
    sh:path qudt:hasQuantityKindsList .

qudt:RRF_EMR a qudt:RotatingReferenceFrame ;
    rdfs:label "Earth-Moon Rotating"^^xsd:string ;
    dcterms:description """
  <p>In this coordinate frame, the two collinear Lagrange points LL_1 and LL_2 (sometimes called Libration points) both lie along the positive X-axis approximately 60000 kilometers from the Moon. 
  The LL_1 point lies on the X-axis between the Moon and the Earth and the LL_2 point lies on the X-axis on the other side of the Moon away from the Earth. 
  See [Roncoli2005] for more information about Lagrange points.
  """^^rdf:HTML ;
    qudt:frameType qudt:FT_ROTATING ;
    qudt:id "T110-08"^^xsd:string ;
    qudt:xAxisDefinition "Points in the direction of the vector from the Earth to the Moon."^^xsd:string ;
    qudt:yAxisDefinition "Completes a standard, right-handed coordinate frame."^^xsd:string ;
    qudt:zAxisDefinition "Points in the direction of the instantaneous orbit normal of the Moon about the Earth."^^xsd:string ;
    ns2:code 20 ;
    ns2:literal "EM-ROT"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> ;
    skos:definition "Earth-Moon Rotating Coordinate System"^^xsd:string ;
    skos:prefLabel "Earth-Moon Rotating"^^xsd:string .

qudt:RRF_ICRF a qudt:ReferenceFrame ;
    rdfs:label "International Celestial Reference Frame"^^xsd:string ;
    dcterms:description """
  The ICRF is the best-determined and most stable reference frame and is the “root” frame—other reference frames are often given with respect to the ICRF.
  The vehicle-centered, EME2000 coordinate system is useful for vehicle attitude determination since the positions of stars in star catalogs used with star trackers,
   and other celestial sensors are generally expressed using the EME2000 coordinate frame. 
  However, caution must be exercised here since the EME2000 frames realized in the past by various star catalogs (such as FK5) and ephemerides (such as DE205) were actually slightly different frames,
   because estimates of the actual location EME2000 changed with improvements in models and new data. 
  For this reason the ICRF is the recommended standard.
  """^^rdf:HTML ;
    qudt:exactMatch qudt:NRIF_ICRF ;
    qudt:frameType qudt:FT_NON-ROTATING ;
    qudt:id "T110-06"^^xsd:string ;
    qudt:realization "The International Celestial Reference Frame (ICRF) was defined in 1995 with locations given for 22 quasars and other bright radio objects. This definition was extended by the addition of more sources in 2000. See Reference 8 for further information."^^xsd:string ;
    qudt:xAxisDefinition "Defined as the cross product of the Z-axis (as defined above) and the Earth mean orbit pole of J2000 (i.e. the ecliptic pole of J2000). The X-axis of this coordinate frame is the Earth vernal equinox of J2000."^^xsd:string ;
    qudt:yAxisDefinition "Completes a standard, right-handed coordinate frame."^^xsd:string ;
    qudt:zAxisDefinition "Defined as the pole vector of the Earth Mean Equator of J2000 (where J2000 = Julian date 2451545.0 TDB (Barycentric Dynamical Time))."^^xsd:string ;
    ns2:literal "ICRF"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> ;
    skos:altLabel "Earth Mean Equator and Equinox of J2000"^^xsd:string ;
    skos:prefLabel "International Celestial Reference Frame"^^xsd:string .

qudt:RRF_ITRF a qudt:RotatingReferenceFrame ;
    rdfs:label "International Terrestrial Reference Frame"^^xsd:string ;
    dcterms:description "At current levels of accuracy and precision the location of the ITRF at any point in time with respect to the ICRF cannot be predicted because the Earth (and its weather!) are not modeled that accurately. The location of the true pole depends on modeling precession and nutation and then measuring the actual rotation pole relative to the modeled pole with respect to both the ITRF and the ICRF. One can use either the NASA Deep Space Network’s models and file of pole locations, which also includes timing information to tell where the prime meridian was OR one can use the IERS models and file of pole locations and timing called the Earth Orientation Parameters (EOP) file BUT NOT BOTH, e.g., do not use the IERS EOP with the DSN models for precession and nutation. The IERS information is more publicly available and is recommended. See Reference 8 for more information, including the relationships between the various ITRF frames."^^rdf:HTML ;
    qudt:exactMatch qudt:NRIF_ETEPMBF ;
    qudt:frameType qudt:FT_ROTATING ;
    qudt:id "T110-09"^^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; ITRF93 is recommended."^^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 ;
    ns2:literal "ITRF"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> ;
    rdfs:seeAlso qudt:RRF_ICRF ;
    skos:prefLabel "International Terrestrial Reference Frame"^^xsd:string .

qudt:RRF_SER a qudt:RotatingReferenceFrame ;
    rdfs:label "Sun-Earth Rotating"^^xsd:string ;
    dcterms:description """
  <p>In this coordinate frame, the two collinear Lagrange points EL_1 and EL_2 (sometimes called Libration points) both lie along the positive X-axis approximately 1.5 million kilometers from the Earth. 
  The EL_1 point lies on the X-axis between the Earth and the Sun and the EL_2 point lies on the X-axis on the other side of the Earth away from the Sun. 
  See [Roncoli2005] for more information about Lagrange points.
  """^^rdf:HTML ;
    qudt:frameType qudt:FT_ROTATING ;
    qudt:id "T110-15"^^xsd:string ;
    qudt:informativeReference qudt:Roncoli2005 ;
    qudt:xAxisDefinition "Points in the direction of the vector from the Sun to the Earth."^^xsd:string ;
    qudt:yAxisDefinition "Completes a standard, right-handed coordinate frame."^^xsd:string ;
    qudt:zAxisDefinition "Points in the direction of the instantaneous orbit normal of the Earth about the Sun."^^xsd:string ;
    ns2:code 92 ;
    ns2:literal "SE-ROT"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:RawValueTupleMember-elementType a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:UnsignedIntegerType ;
    sh:path qudt:elementDatatype .

qudt:ShortSignedIntegerEncoding a qudt:IntegerEncodingType ;
    rdfs:label "Short Signed Integer Encoding"^^xsd:string ;
    qudt:bytes 2 ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype>,
        <http://qudt.org/3.1.8/vocab/datatype> .

qudt:ShortUnsignedIntegerEncoding a qudt:BooleanEncodingType,
        qudt:IntegerEncodingType ;
    rdfs:label "Short Unsigned Integer Encoding"^^xsd:string ;
    qudt:bytes 2 ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype>,
        <http://qudt.org/3.1.8/vocab/datatype> .

qudt:Tuple-elementType a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:TupleMember ;
    sh:path qudt:elementDatatype .

qudt:Tuple-elementTypeCount a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:integer ;
    sh:minCount 0 ;
    sh:path qudt:elementTypeCount .

qudt:Tuple-length a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:integer ;
    sh:maxCount 1 ;
    sh:minCount 0 ;
    sh:path qudt:length .

qudt:UCUMcs a rdfs:Datatype,
        sh:NodeShape ;
    rdfs:label "case-sensitive UCUM code"^^xsd:string ;
    dcterms:description "Lexical pattern for the case-sensitive version of UCUM code"^^xsd:string ;
    dcterms:source <https://ucum.org/ucum.html> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:seeAlso <https://ucum.org/ucum.html> ;
    rdfs:subClassOf xsd:string .

qudt:UTF16-CHAR a qudt:CharacterType ;
    rdfs:label "UTF16 CHAR"^^xsd:string ;
    qudt:bits 16 ;
    qudt:bytes 2 ;
    qudt:id "T001-04"^^xsd:string ;
    qudt:rdfsDatatype xsd:short ;
    ns2:code 150 ;
    ns2:literal "utf16"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:UTF8-CHAR a qudt:CharacterType ;
    rdfs:label "UTF8 CHAR"^^xsd:string ;
    qudt:bits 8 ;
    qudt:bytes 1 ;
    qudt:id "T001-05"^^xsd:string ;
    qudt:rdfsDatatype xsd:byte ;
    ns2:code 122 ;
    ns2:literal "utf8"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:allowedPattern a rdf:Property ;
    rdfs:label "allowed pattern"^^xsd:string ;
    dcterms:description "This property relates a date string encoding (c.f. type:DateStringEncodingType) to one or more XML Schema compliant regular expressions that together determine the allowed lexical expressions that can be unambiguously parsed to determine a temporal quantity."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:applicableSystem a rdf:Property ;
    rdfs:label "applicable system"^^xsd:string ;
    dcterms:description """
  This property relates a unit of measure with a unit system that may or may not define the unit,
   but within which the unit is compatible.
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/qudt> .

qudt:basis a rdf:Property ;
    rdfs:label "basis"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:bitOrder a rdf:Property ;
    rdfs:label "bit order"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:byteOrder a rdf:Property ;
    rdfs:label "byte order"^^xsd:string ;
    dcterms:description "Byte order is an enumeration of two values: 'Big Endian' and 'Little Endian' and is used to denote whether the most signiticant byte is either first or last, respectively."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:bytes a rdf:Property ;
    rdfs:label "bytes"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:currencyCode a rdf:Property ;
    rdfs:label "currency code"^^xsd:string ;
    dcterms:description "Alphabetic Currency Code as defined by ISO 4217. For example, the currency code for the US dollar is USD."^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:currencyExponent a rdf:Property ;
    rdfs:label "currency exponent"^^xsd:string ;
    dcterms:description """
  The currency exponent indicates the number of decimal places between a major currency unit and its minor currency unit. 
  For example, the US dollar is the major currency unit of the United States, and the US cent is the minor currency unit. Since one cent is 1/100 of a dollar, the US dollar has a currency exponent of 2. 
  However, the Japanese Yen has no minor currency units, so the yen has a currency exponent of 0.
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:dataStructure a rdf:Property ;
    rdfs:label "data structure"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:dbpediaMatch a rdf:Property ;
    rdfs:label "dbpedia match"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:dimensions a rdf:Property ;
    rdfs:label "dimensions"^^xsd:string ;
    dcterms:description """
  The extent of each dimension making up a matrix or an array. 
  For example a 4 by 4 array has dimensions (4 4),
  whereas a vector or a string has dimensions (1).
  """^^xsd:string,
        """
  The extent of each dimension making up an array or matrix.
  Dimensions are expressed as an integer list.
  For example a 4 by 4 array has dimensions (4 4), whereas a vector or a string has dimensions (1).
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:enumeration a rdf:Property ;
    rdfs:label "enumeration"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:exactConstant a rdf:Property ;
    rdfs:label "exact constant"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:expression a rdf:Property ;
    rdfs:label "expression"^^xsd:string ;
    dcterms:description """
  An 'expression' is a finite combination of symbols that are well-formed according to rules that apply to units of measure, quantity kinds and their dimensions.
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:float_X a rdf:Property ;
    rdfs:label "float X"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:float_Y a rdf:Property ;
    rdfs:label "float Y"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:hasBaseQuantityKind a rdf:Property ;
    rdfs:label "has base quantity kind"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subPropertyOf qudt:hasQuantityKind .

qudt:hasUnitSystem a rdf:Property ;
    rdfs:label "has unit system"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:image a rdf:Property ;
    rdfs:label "image"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:informativeReference a rdf:Property ;
    rdfs:label "informative reference"^^xsd:string ;
    dcterms:description "Provides a way to reference a source that provided useful but non-normative information."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:isoNormativeReference a rdf:Property ;
    rdfs:label "normative reference (ISO)"^^xsd:string ;
    dcterms:description "Provides a way to reference the ISO unit definition."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subPropertyOf qudt:normativeReference .

qudt:lowerBound a rdf:Property ;
    rdfs:label "lower bound"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:maxLength a rdf:Property ;
    rdfs:label "max length"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:optional a rdf:Property ;
    rdfs:label "optional"^^xsd:string .

qudt:permissibleMaths a rdf:Property ;
    rdfs:label "permissible maths"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:permissibleTransformation a rdf:Property ;
    rdfs:label "permissible transformation"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:prefix a rdf:Property ;
    rdfs:label "prefix"^^xsd:string ;
    dcterms:description "Associates a unit with the appropriate prefix, if any."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:qkdvDenominator a rdf:Property ;
    rdfs:label "denominator dimension vector"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:qkdvNumerator a rdf:Property ;
    rdfs:label "numerator dimension vector"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:quantityValue a rdf:Property ;
    rdfs:label "quantity value"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:rationale a rdf:Property ;
    rdfs:label "rationale"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:realization a rdf:Property ;
    rdfs:label "realization"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:upperBound a rdf:Property ;
    rdfs:label "upper bound"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:url a rdf:Property ;
    rdfs:label "url"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:xAxisDefinition a rdf:Property ;
    rdfs:label "X-Axis Definition"^^xsd:string ;
    dcterms:description """
  The definition of the X-Axis could be an intersection, cross-product or other function of a  meridian or orbit. 
  It could also mention any aspects of rotation, for example, the rotation equator of the Earth, Sun, Moon or other celestial body. 
  An epoch might also be given.
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:yAxisDefinition a rdf:Property ;
    rdfs:label "Y-Axis definition"^^xsd:string ;
    dcterms:description """
  The definition of the Y-Axis could be an intersection, cross-product or other function of a meridian or orbit. 
  It could also mention any aspects of rotation, for example, the rotation equator of the Earth, Sun, Moon or other celestial body. 
  An epoch might also be given.
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:zAxisDefinition a rdf:Property ;
    rdfs:label "Z-Axis definition"^^xsd:string ;
    dcterms:description """
  The definition of the Y-Axis could be an intersection, croos-product or other function of a meridian or orbit. 
  It could also mention any aspects of rotation, for example, the rotation equator of the Earth, Sun, Moon or other celestial body. 
  An epoch might also be given.
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

<http://qudt.org/vocab/constant/ElectromagneticPermeabilityOfVacuum> a qudt:PhysicalConstant ;
    rdfs:label "Permeability of Vacuum"@en ;
    dcterms:description """
  The $\\textit{Permeability of Vacuum}$, also known as $\\textit{Magnetic Constant}$, is a scalar constant 
  $\\mu_0$ such that, in a vacuum the product with the magnetic field vector, $\\overrightarrow{H}$ 
  is equal to the magnetic flux density vector, $\\overrightarrow{B}$.
  """^^qudt:LatexString ;
    qudt:applicableUnit unit:H-PER-M ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Vacuum_permeability"^^xsd:anyURI ;
    qudt:exactConstant true ;
    qudt:exactMatch <http://qudt.org/vocab/constant/MagneticConstant> ;
    qudt:hasQuantityKind quantitykind:Permittivity ;
    qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=705-03-14"^^xsd:anyURI,
        "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ;
    qudt:latexDefinition "$\\mu_0 = \\frac{\\overrightarrow{B}}{\\overrightarrow{H}}$, where $\\overrightarrow{B}$ is the B-Filed magnetic vector, and $\\overrightarrow{H}$ is the H-Field magnetic vector. The value of $\\mu_0$ is $\\approx 1.256637e-6\\,henry\\,per\\,metre$."^^qudt:LatexString ;
    qudt:latexSymbol "$\\mu_0$"^^qudt:LatexString ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_MagneticConstant> ;
    qudt:ucumCode "[mu_0]"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/PermittivityOfVacuum> a qudt:PhysicalConstant ;
    rdfs:label "Permittivity of Vacuum"@en ;
    dcterms:description """
  The constant $\\textit{Permittivity of Vacuum}$, also known as the $\\textit{electric constant}$ is a constant 
  whose value is $\\approx\\,6.854188e-12\\, farad\\,per\\,metre$. Sometimes also referred to as 
  the $\\textit{Permittivity of Free Space}$.
  """^^qudt:LatexString ;
    qudt:applicableUnit unit:FARAD-PER-M ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Permittivity"^^xsd:anyURI ;
    qudt:hasQuantityKind quantitykind:Permittivity ;
    qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ;
    qudt:latexDefinition "$\\epsilon = \\frac{\\mathbf{D}}{\\mathbf{E}}$, where $\\mathbf{D}$ is electric flux density and $\\mathbf{E}$ is electric field strength."^^qudt:LatexString ;
    qudt:latexSymbol "$\\epsilon_0$"^^qudt:LatexString ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_PermittivityOfVacuum> ;
    qudt:ucumCode "[eps_0]"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    rdfs:seeAlso quantitykind:ElectricFieldStrength,
        quantitykind:ElectricFluxDensity,
        quantitykind:Permittivity .

<http://qudt.org/vocab/constant/Value_MagneticConstant> a qudt:ConstantValue ;
    rdfs:label "Value for magnetic constant"^^xsd:string ;
    qudt:hasUnit unit:FARAD-PER-M ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:value 0.0000012566370614 ;
    qudt:valueSN 1.256637e-06 ;
    ns1:website "http://physics.nist.gov/cgi-bin/cuu/Value?mu0#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_MolarGasConstant> a qudt:ConstantValue ;
    rdfs:label "Value for molar gas constant"^^xsd:string ;
    qudt:hasUnit unit:J-PER-MOL-K ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000015 ;
    qudt:standardUncertaintySN 1.5e-05 ;
    qudt:value 8.31446261815324 ;
    qudt:valueSN 8.314463e+00 ;
    ns1:website "http://physics.nist.gov/cgi-bin/cuu/Value?r#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_MolarVolumeOfIdealGas273dot15K100KiloPA> a qudt:ConstantValue ;
    rdfs:label "Value for molar volume of ideal gas 273.15 K 101.325 kPa"^^xsd:string ;
    qudt:hasUnit unit:M3-PER-MOL ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0 ;
    qudt:standardUncertaintySN 0e+00 ;
    qudt:value 0.02271095464 ;
    qudt:valueSN 2.271095e-02 ;
    ns1: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_MolarVolumeOfIdealGas273dot15K101dot325KiloPA> a qudt:ConstantValue ;
    rdfs:label "Value for molar volume of ideal gas 273.15 K 101.325 kPa"^^xsd:string ;
    qudt:hasUnit unit:M3-PER-MOL ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0 ;
    qudt:standardUncertaintySN 0e+00 ;
    qudt:value 0.02241396954 ;
    qudt:valueSN 2.241397e-02 ;
    ns1: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_PlanckConstantOver2Pi> a qudt:ConstantValue ;
    rdfs:label "Value for Planck constant over 2 pi"^^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 ;
    ns1:website "http://physics.nist.gov/cgi-bin/cuu/Value?hbar#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/dimensionvector/A-1E0L2I0M1H0T-1D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A-1E0L2I0M1H0T-1D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance -1 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength 2 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 1 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime -1 ;
    qudt:dimensionlessExponent 0 ;
    qudt:hasReferenceQuantityKind quantitykind:MolarAngularMomentum ;
    qudt:latexDefinition " $A^{-1}$ $L^{2}$ $M^{1}$ $T^{-1}$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A-1E0L3I0M1H0T-2D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A-1E0L3I0M1H0T-2D0"^^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:hasReferenceQuantityKind quantitykind:LengthMolarEnergy ;
    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/A-1E2L0I0M-1H0T3D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_CGS,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A-1E2L0I0M-1H0T3D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance -1 ;
    qudt:dimensionExponentForElectricCurrent 2 ;
    qudt:dimensionExponentForLength 0 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass -1 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime 3 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition " $A^{-1}$ $E^{2}$ $M^{-1}$ $T^{3}$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E-1L0I0M1H0T-1D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E-1L0I0M1H0T-1D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent -1 ;
    qudt:dimensionExponentForLength 0 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 1 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime -1 ;
    qudt:dimensionlessExponent 0 ;
    qudt:hasReferenceQuantityKind quantitykind:MassPerElectricCharge ;
    qudt:latexDefinition " $E^{-1}$ $M^{1}$ $T^{-1}$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E-1L0I0M1H0T-3D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E-1L0I0M1H0T-3D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent -1 ;
    qudt:dimensionExponentForLength 0 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 1 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime -3 ;
    qudt:dimensionlessExponent 0 ;
    qudt:hasReferenceQuantityKind quantitykind:EnergyPerAreaElectricCharge ;
    qudt:latexDefinition " $E^{-1}$ $M^{1}$ $T^{-3}$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E-2L2I0M1H-1T-2.5D0> a qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E-2L2I0M1H-1T-2.5D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent -2 ;
    qudt:dimensionExponentForLength 2 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 1 ;
    qudt:dimensionExponentForThermodynamicTemperature -1 ;
    qudt:dimensionExponentForTime -2.5 ;
    qudt:dimensionlessExponent 0 ;
    qudt:hasReferenceQuantityKind quantitykind:ThermalInertia ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E-2L3I0M1H0T-4D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E-2L3I0M1H0T-4D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent -2 ;
    qudt:dimensionExponentForLength 3 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 1 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime -4 ;
    qudt:dimensionlessExponent 0 ;
    qudt:hasReferenceQuantityKind quantitykind:InversePermittivity ;
    qudt:latexDefinition " $E^{-2}$ $L^{3}$ $M^{1}$ $T^{-4}$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E-2L4I0M2H-2T-6D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_CGS,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E-2L4I0M2H-2T-6D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent -2 ;
    qudt:dimensionExponentForLength 4 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 2 ;
    qudt:dimensionExponentForThermodynamicTemperature -2 ;
    qudt:dimensionExponentForTime -6 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition " $E^{-2}$ $L^{4}$ $M^{2}$ $H^{-2}$ $T^{-6}$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H-1T-2D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E0L-1I0M0H-1T-2D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength -1 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 0 ;
    qudt:dimensionExponentForThermodynamicTemperature -1 ;
    qudt:dimensionExponentForTime -2 ;
    qudt:dimensionlessExponent 0 ;
    qudt:hasReferenceQuantityKind quantitykind:SpecificHeatVolume ;
    qudt:latexDefinition " $L^{-1}$ $H^{-1}$ $T^{-2}$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H-1T0D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E0L-1I0M0H-1T0D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength -1 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 0 ;
    qudt:dimensionExponentForThermodynamicTemperature -1 ;
    qudt:dimensionExponentForTime 0 ;
    qudt:dimensionlessExponent 0 ;
    qudt:hasReferenceQuantityKind quantitykind:InverseLengthTemperature ;
    qudt:latexDefinition " $L^{-1}$ $H^{-1}$"^^qudt:LatexString ;
    qudt:latexSymbol "$L^{-1} \\Theta^{-1}$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H0T-1D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_CGS,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E0L-1I0M0H0T-1D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength -1 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 0 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime -1 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition " $L^{-1}$ $T^{-1}$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L-2I0M2H0T-3D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_CGS,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E0L-2I0M2H0T-3D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength -2 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 2 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime -3 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition " $L^{-2}$ $M^{2}$ $T^{-3}$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L-2I1M-1H0T3D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E0L-2I1M-1H0T3D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength -2 ;
    qudt:dimensionExponentForLuminousIntensity 1 ;
    qudt:dimensionExponentForMass -1 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime 3 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition " $L^{-2}$ $I^{1}$ $M^{-1}$ $T^{3}$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L-4I0M1H0T-3D0> a qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E0L-4I0M1H0T-3D0"^^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 0 ;
    qudt:hasReferenceQuantityKind quantitykind:SpectralEmittance,
        quantitykind:SpectralIrradiance ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T-3D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_CGS,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E0L1I0M0H0T-3D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength 1 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 0 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime -3 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition " $L^{1}$ $T^{-3}$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H1T1D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_CGS,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E0L1I0M0H1T1D0"^^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/A0E0L2I0M0H-1T-1D0> a qudt:QuantityKindDimensionVector ;
    rdfs:label "A0E0L2I0M0H-1T-1D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength 2 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 0 ;
    qudt:dimensionExponentForThermodynamicTemperature -1 ;
    qudt:dimensionExponentForTime -1 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition "$L^2 H^-1 T^-1 $"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H-1T0D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E0L2I0M0H-1T0D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength 2 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 0 ;
    qudt:dimensionExponentForThermodynamicTemperature -1 ;
    qudt:dimensionExponentForTime 0 ;
    qudt:dimensionlessExponent 0 ;
    qudt:hasReferenceQuantityKind quantitykind:AreaThermalExpansion ;
    qudt:latexDefinition " $L^{2}$ $H^{-1}$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L3I0M-1H-1T0D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E0L3I0M-1H-1T0D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength 3 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass -1 ;
    qudt:dimensionExponentForThermodynamicTemperature -1 ;
    qudt:dimensionExponentForTime 0 ;
    qudt:dimensionlessExponent 0 ;
    qudt:hasReferenceQuantityKind quantitykind:SpecificHeatPressure ;
    qudt:latexDefinition " $L^{3}$ $M^{-1}$ $H^{-1}$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L3I0M-1H0T-2D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E0L3I0M-1H0T-2D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength 3 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass -1 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime -2 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition " $L^{3}$ $M^{-1}$ $T^{-2}$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L4I0M2H0T-4D0> a qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E0L4I0M2H0T-4D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength 4 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 2 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime -4 ;
    qudt:dimensionlessExponent 0 ;
    qudt:hasReferenceQuantityKind quantitykind:SquareEnergy ;
    qudt:latexDefinition "$L^4 M^2 T^-4$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L5I0M0H0T0D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_CGS,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E0L5I0M0H0T0D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength 5 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 0 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime 0 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition " $L^{5}$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E1L-2I0M0H-2T0D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_CGS,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E1L-2I0M0H-2T0D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 1 ;
    qudt:dimensionExponentForLength -2 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 0 ;
    qudt:dimensionExponentForThermodynamicTemperature -2 ;
    qudt:dimensionExponentForTime 0 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition " $E^{1}$ $L^{-2}$ $H^{-2}$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E1L0I0M-1H1T2D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E1L0I0M-1H1T2D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 1 ;
    qudt:dimensionExponentForLength 0 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass -1 ;
    qudt:dimensionExponentForThermodynamicTemperature 1 ;
    qudt:dimensionExponentForTime 2 ;
    qudt:dimensionlessExponent 0 ;
    qudt:hasReferenceQuantityKind quantitykind:TemperaturePerMagneticFluxDensity ;
    qudt:latexDefinition " $E^{1}$ $M^{-1}$ $H^{1}$ $T^{2}$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E1L2I0M0H0T1D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E1L2I0M0H0T1D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 1 ;
    qudt:dimensionExponentForLength 2 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 0 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime 1 ;
    qudt:dimensionlessExponent 0 ;
    qudt:hasReferenceQuantityKind quantitykind:ElectricQuadrupoleMoment ;
    qudt:latexDefinition " $E^{1}$ $L^{2}$ $T^{1}$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E2L-2I0M-1H0T2D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E2L-2I0M-1H0T2D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 2 ;
    qudt:dimensionExponentForLength -2 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass -1 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime 2 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition " $E^{2}$ $L^{-2}$ $M^{-1}$ $T^{2}$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/prefix/Deka> a qudt:DecimalPrefix,
        qudt:Prefix ;
    rdfs:label "Deka"^^xsd:string,
        "Deka"@en ;
    dcterms:description "<strong>deka</strong> is a decimal prefix for expressing a value with a scaling of \\(10^{1}\\)."^^qudt:LatexString ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Deca"^^xsd:anyURI ;
    qudt:exactMatch <http://qudt.org/vocab/prefix/Deca> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Deca?oldid=480093935"^^xsd:anyURI ;
    qudt:prefixMultiplier 10.0 ;
    qudt:prefixMultiplierSN 1e+01 ;
    qudt:siExactMatch <https://si-digital-framework.org/SI/prefixes/deca> ;
    qudt:symbol "da"^^xsd:string ;
    qudt:ucumCode "da"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/prefix> .

<http://qudt.org/vocab/prefix/Exbi> a qudt:BinaryPrefix,
        qudt:Prefix ;
    rdfs:label "Exbi"^^xsd:string,
        "Exbi"@en ;
    dcterms:description "A binary prefix for expressing a value with a scaling of $1024^{6}$, or $2^{60}$."^^qudt:LatexString ;
    qudt:prefixMultiplier 152921504606846976.0 ;
    qudt:prefixMultiplierSN 1.529215e+17 ;
    qudt:symbol "Ei"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/prefix> .

<http://qudt.org/vocab/prefix/Gibi> a qudt:BinaryPrefix,
        qudt:Prefix ;
    rdfs:label "Gibi"^^xsd:string,
        "Gibi"@en ;
    dcterms:description "A binary prefix for expressing a value with a scaling of $1024^{3}$, or $2^{30}$."^^qudt:LatexString ;
    qudt:prefixMultiplier 1073741824.0 ;
    qudt:prefixMultiplierSN 1.073742e+09 ;
    qudt:symbol "Gi"^^xsd:string ;
    qudt:ucumCode "Gi"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/prefix> .

<http://qudt.org/vocab/prefix/Kibi> a qudt:BinaryPrefix,
        qudt:Prefix ;
    rdfs:label "Kibi"^^xsd:string,
        "Kibi"@en ;
    dcterms:description "A binary prefix for expressing a value with a scaling of $1024$, or $2^{10}$."^^qudt:LatexString ;
    qudt:prefixMultiplier 1024.0 ;
    qudt:prefixMultiplierSN 1.024e+03 ;
    qudt:symbol "Ki"^^xsd:string ;
    qudt:ucumCode "Ki"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/prefix> .

<http://qudt.org/vocab/prefix/Mebi> a qudt:BinaryPrefix,
        qudt:Prefix ;
    rdfs:label "Mebi"^^xsd:string,
        "Mebi"@en ;
    dcterms:description "A binary prefix for expressing a value with a scaling of $1024^{2}$, or $2^{20}$."^^qudt:LatexString ;
    qudt:prefixMultiplier 1048576.0 ;
    qudt:prefixMultiplierSN 1.048576e+06 ;
    qudt:symbol "Mi"^^xsd:string ;
    qudt:ucumCode "Mi"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/prefix> .

<http://qudt.org/vocab/prefix/Pebi> a qudt:BinaryPrefix,
        qudt:Prefix ;
    rdfs:label "Pebi"^^xsd:string,
        "Pebi"@en ;
    dcterms:description "A binary prefix for expressing a value with a scaling of $1024^{5}$, or $2^{50}$."^^qudt:LatexString ;
    qudt:prefixMultiplier 125899906842624.0 ;
    qudt:prefixMultiplierSN 1.258999e+14 ;
    qudt:symbol "Pi"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/prefix> .

<http://qudt.org/vocab/prefix/Tebi> a qudt:BinaryPrefix,
        qudt:Prefix ;
    rdfs:label "Tebi"^^xsd:string,
        "Tebi"@en ;
    dcterms:description "A binary prefix for expressing a value with a scaling of $1024^4}$, or $2^{40}$."^^qudt:LatexString ;
    qudt:prefixMultiplier 1099511627776.0 ;
    qudt:prefixMultiplierSN 1.099512e+12 ;
    qudt:symbol "Ti"^^xsd:string ;
    qudt:ucumCode "Ti"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/prefix> .

<http://qudt.org/vocab/prefix/Yocto> a qudt:DecimalPrefix,
        qudt:Prefix ;
    rdfs:label "Yocto"^^xsd:string,
        "Yocto"@en ;
    dcterms:description "'yocto' is a decimal prefix for expressing a value with a scaling of \\(10^{-24}\\)."^^qudt:LatexString ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Yocto-"^^xsd:anyURI ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Yocto-?oldid=488155799"^^xsd:anyURI ;
    qudt:prefixMultiplier 0.000000000000000000000001 ;
    qudt:prefixMultiplierSN 1e-24 ;
    qudt:siExactMatch <https://si-digital-framework.org/SI/prefixes/yocto> ;
    qudt:symbol "y"^^xsd:string ;
    qudt:ucumCode "y"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/prefix> .

<http://qudt.org/vocab/prefix/Yotta> a qudt:DecimalPrefix,
        qudt:Prefix ;
    rdfs:label "Yotta"^^xsd:string,
        "Yotta"@en ;
    dcterms:description "'yotta' is a decimal prefix for expressing a value with a scaling of \\(10^{24}\\)."^^qudt:LatexString ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Yotta-"^^xsd:anyURI ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Yotta-?oldid=494538119"^^xsd:anyURI ;
    qudt:prefixMultiplier 1000000000000000000000000.0 ;
    qudt:prefixMultiplierSN 1e+24 ;
    qudt:siExactMatch <https://si-digital-framework.org/SI/prefixes/yotta> ;
    qudt:symbol "Y"^^xsd:string ;
    qudt:ucumCode "Y"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/prefix> .

<http://qudt.org/vocab/prefix/Zepto> a qudt:DecimalPrefix,
        qudt:Prefix ;
    rdfs:label "Zepto"^^xsd:string,
        "Zepto"@en ;
    dcterms:description "'zepto' is a decimal prefix for expressing a value with a scaling of \\(10^{-21}\\)."^^qudt:LatexString ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Zepto-"^^xsd:anyURI ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Zepto-?oldid=476974663"^^xsd:anyURI ;
    qudt:prefixMultiplier 0.000000000000000000001 ;
    qudt:prefixMultiplierSN 1e-21 ;
    qudt:siExactMatch <https://si-digital-framework.org/SI/prefixes/zepto> ;
    qudt:symbol "z"^^xsd:string ;
    qudt:ucumCode "z"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/prefix> .

<http://qudt.org/vocab/prefix/Zetta> a qudt:DecimalPrefix,
        qudt:Prefix ;
    rdfs:label "Zetta"^^xsd:string,
        "Zetta"@en ;
    dcterms:description "'zetta' is a decimal prefix for expressing a value with a scaling of \\(10^{21}\\)."^^qudt:LatexString ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Zetta-"^^xsd:anyURI ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Zetta-?oldid=495223080"^^xsd:anyURI ;
    qudt:prefixMultiplier 1000000000000000000000.0 ;
    qudt:prefixMultiplierSN 1e+21 ;
    qudt:siExactMatch <https://si-digital-framework.org/SI/prefixes/zetta> ;
    qudt:symbol "Z"^^xsd:string ;
    qudt:ucumCode "Z"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/prefix> .

quantitykind:APIGravity 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 ;
    qudt:applicableUnit unit:DEGREE_API ;
    qudt:baseSIUnitDimensions "$qkdv:A0E0L0I0M0H0T0D1$"^^qudt:LatexString ;
    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> ;
    rdfs:comment "Applicable units are those of quantitykind:APIGravity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader quantitykind:DimensionlessRatio .

quantitykind:AbsoluteHumidity a qudt:QuantityKind ;
    rdfs:label "Absolute Humidity"@en ;
    dcterms:description """
  $\\textit{Absolute Humidity}$ is an amount of water vapor, usually discussed per unit volume. 
  Absolute humidity in air ranges from zero to roughly 30 grams per cubic meter when the air is saturated at $30 ^\\circ C$. 
  The absolute humidity changes as air temperature or pressure changes. 
  $$$$
  This is very inconvenient for chemical engineering calculations, e.g. for clothes dryers, where temperature can vary considerably. 
  As a result, absolute humidity is generally defined in chemical engineering as mass of water vapor per unit mass of dry air,
   also known as the mass mixing ratio, which is much more rigorous for heat and mass balance calculations. 
  $$$$
  Mass of water per unit volume as in the equation above would then be defined as volumetric humidity, because of the potential confusion.
  """^^qudt:LatexString ;
    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:informativeReference "http://en.wikipedia.org/wiki/Humidity"^^xsd:anyURI,
        "http://en.wikipedia.org/wiki/Humidity#Absolute_humidity"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ;
    qudt:latexDefinition """$AH = \\frac{\\mathcal{M}_\\omega}{\\vee_{net}}$,
where $\\mathcal{M}_\\omega$ is the mass of water vapor per unit volume of total air and $\\vee_{net}$ is water vapor mixture."""^^qudt:LatexString ;
    qudt:symbol "AH"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Density"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    rdfs:seeAlso quantitykind:RelativeHumidity ;
    skos:broader quantitykind:Density .

quantitykind:Absorptance a qudt:QuantityKind ;
    rdfs:label "Absorptance"@en ;
    dcterms:description "Absorptance is the ratio of the radiation absorbed by a surface to that incident upon it. Also known as absorbance."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Absorbance"^^xsd:anyURI,
        "https://en.wikipedia.org/wiki/Absorptance"^^xsd:anyURI,
        "https://www.researchgate.net/post/Absorptance_or_absorbance"^^xsd:anyURI ;
    qudt:latexDefinition "$\\alpha = \\frac{\\Phi_a}{\\Phi_m}$, where $\\Phi_a$ is the absorbed radiant flux or the absorbed luminous flux, and $\\Phi_m$ is the radiant flux or luminous flux of the incident radiation."^^qudt:LatexString ;
    qudt:latexSymbol "$\\alpha$"^^qudt:LatexString ;
    qudt:plainTextDescription "Absorptance is the ratio of the radiation absorbed by a surface to that incident upon it. Also known as absorbance."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q16635541> ;
    ns1:todo "belongs to SOQ-ISO"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Absorptance"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:Acidity a qudt:QuantityKind ;
    rdfs:label "Acidity"@en ;
    dcterms:description """
  Chemicals or substances having a pH less than 7 are said to be acidic;
   lower pH means higher acidity.
  """^^qudt:LatexString ;
    qudt:applicableUnit unit:PH ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Acid"^^xsd:anyURI,
        "https://en.wikipedia.org/wiki/PH"^^xsd:anyURI,
        "https://iupac.org/wp-content/uploads/2019/05/IUPAC-GB3-2012-2ndPrinting-PDFsearchable.pdf"^^xsd:anyURI ;
    qudt:plainTextDescription "Chemicals or substances having a pH less than 7 are said to be acidic; lower pH means higher acidity."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Acidity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    rdfs:seeAlso quantitykind:Basicity .

quantitykind:ApparentThermalInertia a qudt:QuantityKind ;
    rdfs:label "Measurement Unit for a quantity approximately proportional to Thermal Inertia"^^xsd:string ;
    qudt:applicableUnit unit:PER-K ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H-1T0D0> ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Thermal_inertia"^^xsd:anyURI ;
    qudt:plainTextDescription "Thermal inertia is a term used to describe the observed delays in a body's temperature response during heat transfers"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:ApparentThermalInertia"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:AreaPerPower a qudt:QuantityKind ;
    rdfs:label "Fläche pro Heizlast"@de,
        "area per heating load"@en ;
    qudt:applicableUnit unit:M2-PER-KiloW,
        unit:M2-PER-W ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M-1H0T3D0> ;
    qudt:plainTextDescription "The ratio of an area and the power required for maintaining room temperature at a given level"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:AreaPerPower"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:Basicity a qudt:QuantityKind ;
    rdfs:label "Basicity"@en ;
    dcterms:description """
  Chemicals or substances having a $pH$ higher than 7 are said to be basic;
   higher $pH$ means higher basicity.
  """^^qudt:LatexString ;
    qudt:applicableUnit unit:PH ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Base_(chemistry)"^^xsd:anyURI,
        "https://en.wikipedia.org/wiki/PH"^^xsd:anyURI,
        "https://iupac.org/wp-content/uploads/2019/05/IUPAC-GB3-2012-2ndPrinting-PDFsearchable.pdf"^^xsd:anyURI ;
    qudt:plainTextDescription "Chemicals or substances having a pH higher than 7 are said to be basic; higher pH means higher basicity."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Basicity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    rdfs:seeAlso quantitykind:Acidity .

quantitykind:BitRate a qudt:QuantityKind ;
    rdfs:label "bit rate"^^xsd:string ;
    qudt:applicableUnit unit:OCTET-PER-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:iec61360Code "0112/2///62720#UAD018"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD018"^^xsd:anyURI ;
    rdfs:comment "Applicable units are those of quantitykind:BitRate"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:CO2Equivalent a qudt:QuantityKind ;
    rdfs:label "CO2Equivalent"^^xsd:string ;
    dcterms:description """The CO2 equivalent is a measure used to compare the emissions from various greenhouse gases 
  on the basis of their global-warming potential (GWP), by converting amounts of other gases to the equivalent amount 
  of carbon dioxide with the same global warming potential."""^^rdf:HTML ;
    qudt:applicableUnit unit:KiloGM,
        unit:TONNE ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T0D0> ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Global_warming_potential"^^xsd:anyURI ;
    rdfs:comment "Applicable units are those of quantitykind:CO2Equivalent"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader quantitykind:MassEquivalent .

quantitykind:Circulation a qudt:QuantityKind ;
    rdfs:label "Circulation"@en ;
    dcterms:description "In fluid dynamics, circulation is the line integral around a closed curve of the fluid velocity. It has dimensions of length squared over time."^^qudt:LatexString ;
    qudt:applicableUnit unit:CentiM2-PER-SEC,
        unit:FT2-PER-HR,
        unit:FT2-PER-SEC,
        unit:IN2-PER-SEC,
        unit:M2-HZ,
        unit:M2-PER-HR,
        unit:M2-PER-SEC,
        unit:MilliM2-PER-SEC ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Circulation_%28fluid_dynamics%29"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T-1D0> ;
    qudt:latexSymbol "$\\Gamma$"^^qudt:LatexString ;
    qudt:plainTextDescription "In fluid dynamics, circulation is the line integral around a closed curve of the fluid velocity. It has dimensions of length squared over time."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:AreaPerTime"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader quantitykind:AreaPerTime .

quantitykind:Coercivity a qudt:QuantityKind ;
    rdfs:label "Coercivity"@en ;
    dcterms:description "$\\textit{Coercivity}$, also referred to as $\\textit{Coercive Field Strength}$, is the magnetic field strength to be applied to bring the magnetic flux density in a substance from its remaining magnetic flux density to zero. This is defined as the coercive field strength in a substance when either the magnetic flux density or the magnetic polarization and magnetization is brought from its value at magnetic saturation to zero by monotonic reduction of the applied magnetic field strength. The quantity which is brought to zero should be stated, and the appropriate symbol used: $H_{cB}$, $H_{cJ}$ or $H_{cM}$ for the coercivity relating to the magnetic flux density, the magnetic polarization or the magnetization respectively, where $H_{cJ} = H_{cM}$."^^qudt:LatexString ;
    qudt:applicableUnit unit:A-PER-M ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L-1I0M0H0T0D0> ;
    qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=121-12-69"^^xsd:anyURI,
        "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ;
    qudt:symbol "H_{c,B}"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q432635> ;
    rdfs:comment "Applicable units are those of quantitykind:Coercivity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    rdfs:seeAlso quantitykind:MagneticFieldStrength .

quantitykind:ConductivityVariance a qudt:QuantityKind ;
    rdfs:label "Conductivity Variance"@en ;
    dcterms:description "Variance for conductivity data."^^xsd:string ;
    qudt:applicableUnit unit:MicroS2-PER-CentiM2 ;
    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 conductivity data."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:ConductivityVariance"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:CostPerArea a qudt:QuantityKind ;
    rdfs:label "Kosten pro Fläche"@de,
        "cost per area"@en ;
    qudt:applicableUnit unit:CCY_CHF-PER-HA,
        unit:CCY_EUR-PER-M2 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T0D0> ;
    qudt:informativeReference "https://www.designingbuildings.co.uk/wiki/Cost_per_m2_of_gross_internal_floor_area"^^xsd:anyURI ;
    qudt:plainTextDescription "In the construction industry, cost per area is the unit rate which, when multiplied by the gross internal floor area (GIFA), gives the total building works estimate (i.e.works cost estimate less main contractor’s preliminaries and main contractor’s overheads and profit)."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:CostPerArea"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:CostPerMass a qudt:QuantityKind ;
    rdfs:label "Kosten pro Masse"@de,
        "cost per mass"@en ;
    qudt:applicableUnit unit:CCY_CHF-PER-KiloGM ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M-1H0T0D0> ;
    qudt:plainTextDescription "Represents the cost associated with a unit mass of a substance or material. It is typically used in economic and engineering contexts to evaluate the expense incurred per kilogram, gram, or other units of mass. This measure helps in comparing the economic efficiency of different materials or substances based on their mass."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:CostPerMass"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:CostPerPower a qudt:QuantityKind ;
    rdfs:label "Anschaffungskosten pro Watt"@de,
        "cost per power"@en ;
    qudt:applicableUnit unit:CCY_EUR-PER-KiloW,
        unit:CCY_EUR-PER-W ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M-1H0T3D0> ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Photovoltaics"^^xsd:anyURI ;
    qudt:plainTextDescription "In photovoltaics, cost per power of electricity produced measures the cost of installing the hardware relative to the power produced."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:CostPerPower"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:CouplingFactor a qudt:QuantityKind ;
    rdfs:label "coupling factor"@en,
        "constante de acoplamiento"@es,
        "constante de couplage"@fr,
        "fattore di accoppiamento"@it,
        "結合定数"@ja,
        "stała sprzężenia"@pl,
        "Constantă de cuplaj"@ro,
        "Константа взаимодействия"@ru,
        "Çiftlenim sabiti"@tr,
        "耦合常數"@zh ;
    dcterms:description "\"Coupling Factor\" is the ratio of an electromagnetic quantity, usually voltage or current, appearing at a specified location of a given circuit to the corresponding quantity at a specified location in the circuit from which energy is transferred by coupling."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=161-03-18"^^xsd:anyURI,
        "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ;
    qudt:latexDefinition "For inductive coupling between two inductive elements, $k = \\frac{\\left | L_{mn} \\right |}{\\sqrt{L_m L_n}}$, where $L_m$ and $L_n$ are their self inductances, and $L_{mn}$ is their mutual inductance."^^qudt:LatexString ;
    qudt:plainTextDescription "\"Coupling Factor\" is the ratio of an electromagnetic quantity, usually voltage or current, appearing at a specified location of a given circuit to the corresponding quantity at a specified location in the circuit from which energy is transferred by coupling."^^xsd:string ;
    qudt:symbol "k"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:CouplingFactor"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:CurieTemperature a qudt:QuantityKind ;
    rdfs:label "درجة حرارة كوري"@ar,
        "Curieova teplota"@cs,
        "Curie-Temperatur"@de,
        "Curie temperature"@en,
        "temperatura de Curie"@es,
        "نقطه کوری"@fa,
        "température de Curie"@fr,
        "क्यूरी ताप"@hi,
        "punto di Curie"@it,
        "キュリー温度"@ja,
        "Suhu Curie"@ms,
        "temperatura Curie"@pl,
        "temperatura de Curie"@pt,
        "Punct Curie"@ro,
        "Точка Кюри"@ru,
        "Curie sıcaklığı"@tr,
        "居里点"@zh ;
    dcterms:description "\"Curie Temperature\" is the critical thermodynamic temperature of a ferromagnet."^^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/Curie_temperature"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Curie Temperature\" is the critical thermodynamic temperature of a ferromagnet."^^xsd:string ;
    qudt:symbol "T_C"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q191073> ;
    rdfs:comment "Applicable units are those of quantitykind:Temperature"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader quantitykind:Temperature ;
    skos:closeMatch quantitykind:NeelTemperature,
        quantitykind:SuperconductionTransitionTemperature .

quantitykind:CurrencyPerFlight a qudt:QuantityKind ;
    rdfs:label "Currency Per Flight"@en ;
    qudt:applicableUnit unit:MegaCCY_USD-PER-FLIGHT ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:qkdvDenominator <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:qkdvNumerator <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    rdfs:comment "Applicable units are those of quantitykind:CurrencyPerFlight"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader quantitykind:DimensionlessRatio .

quantitykind:DebyeAngularWavenumber a qudt:QuantityKind ;
    rdfs:label "Debye Angular Wavenumber"@en ;
    dcterms:description "\"Debye Angular Wavenumber\" is the cut-off angular wavenumber in the Debye model of the vibrational spectrum of a solid."^^qudt:LatexString ;
    qudt:applicableUnit unit:DEG-PER-M,
        unit:RAD-PER-M ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H0T0D0> ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Debye Angular Wavenumber\" is the cut-off angular wavenumber in the Debye model of the vibrational spectrum of a solid."^^xsd:string ;
    qudt:symbol "q_D"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q105554370> ;
    rdfs:comment "Applicable units are those of quantitykind:DebyeAngularWavenumber"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader quantitykind:InverseLength .

quantitykind:DecayConstant a qudt:QuantityKind ;
    rdfs:label "Decay Constant"@en ;
    dcterms:description "The \"Decay Constant\" is the proportionality between the size of a population of radioactive atoms and the rate at which the population decreases because of radioactive decay."^^qudt:LatexString ;
    qudt:applicableUnit unit:KiloCI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Exponential_decay"^^xsd:anyURI,
        "http://www.britannica.com/EBchecked/topic/154945/decay-constant"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:latexDefinition "Relative variation $\\frac{dN}{N}$ of the number $N$ of atoms or nuclei in a system, due to spontaneous emission from these atoms or nuclei during an infinitesimal time interval, divided by its duration $dt$, thus $\\lambda = -\\frac{1}{N}\\frac{dN}{dt}$."^^qudt:LatexString ;
    qudt:latexSymbol "$\\lambda$"^^qudt:LatexString ;
    qudt:plainTextDescription "The \"Decay Constant\" is the proportionality between the size of a population of radioactive atoms and the rate at which the population decreases because of radioactive decay."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q11477200> ;
    rdfs:comment "Applicable units are those of quantitykind:DecayConstant"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader quantitykind:InverseTime .

quantitykind:EinsteinTransitionProbability a qudt:QuantityKind ;
    rdfs:label "Einstein Transition Probability"@en ;
    dcterms:description "Given two atomic states of energy $E_j$ and $E_k$.  Let $E_j > E_k$.  Assume the atom is bathed in radiation of energy density $u(w)$.  Transitions between these states can take place in three different ways. Spontaneous, induced/stimulated emission, and induced absorption. $A_jk$ represents the Einstein transition probability for spontaneous emission."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://electron6.phys.utk.edu/qm2/modules/m10/einstein.htm"^^xsd:anyURI ;
    qudt:latexDefinition "$\\frac{-dN_j}{dt} = A_jkN_j$, where $-dN_j$ is the number of molecules spontaneously leaving the state j for the state k during a time interval of duration $dt$, $N_j$ is the number of molecules in the state j, and $E_j > E_k$."^^qudt:LatexString ;
    qudt:symbol "A_jkN_j"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:EinsteinTransitionProbability"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:ElectricChargeLinearDensity a qudt:QuantityKind ;
    rdfs:label "Electric Charge Linear Density"@en ;
    dcterms:description "In electromagnetism, charge density is a measure of electric charge per unit volume of space, in one, two or three dimensions. More specifically: the linear, surface, or volume charge density is the amount of electric charge per unit length, surface area, or volume, respectively."^^qudt:LatexString ;
    qudt:applicableUnit unit:C-PER-M ;
    qudt:expression "$linear-charge-density$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L-1I0M0H0T1D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Charge_density"^^xsd:anyURI,
        "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ;
    qudt:latexDefinition "$\\rho_l = \\frac{dQ}{dl}$, where $Q$ is electric charge and $l$ is length."^^qudt:LatexString ;
    qudt:latexSymbol "$\\rho_l$"^^qudt:LatexString,
        "$\\tau$"^^qudt:LatexString ;
    qudt:plainTextDescription "In electromagnetism, charge density is a measure of electric charge per unit volume of space, in one, two or three dimensions. More specifically: the linear, surface, or volume charge density is the amount of electric charge per unit length, surface area, or volume, respectively."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:ElectricChargeLinearDensity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    rdfs:seeAlso quantitykind:ElectricChargeDensity .

quantitykind:ElectricCurrentPerAngle a qudt:QuantityKind ;
    rdfs:label "Electric Current per Angle"@en ;
    qudt:applicableUnit unit:A-PER-RAD ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L0I0M0H0T0D0> ;
    rdfs:comment "Applicable units are those of quantitykind:ElectricCurrentPerAngle"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:ElectricSusceptibility a qudt:QuantityKind ;
    rdfs:label "المتأثرية الكهربائية، سرعة التأثر الكهربائية"@ar,
        "elektrische Suszeptibilität"@de,
        "electric susceptibility"@en,
        "susceptibilidad eléctrica"@es,
        "susceptibilité électrique"@fr,
        "suscettività elettrica"@it,
        "電気感受率"@ja,
        "podatność elektryczna"@pl,
        "susceptibilidade eléctrica"@pt,
        "электрическая восприимчивость"@ru ;
    dcterms:description "\"Electric Susceptibility\" is the ratio of electric polarization to electric field strength, normalized to the electric constant. The definition applies to an isotropic medium. For an anisotropic medium, electric susceptibility is a second order tensor."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Permittivity"^^xsd:anyURI ;
    qudt:expression "$e-susceptibility$"^^qudt:LatexString ;
    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 "$\\chi = \\frac{P}{(\\epsilon_0 E)}$, where $P$ is electric polorization, $\\epsilon_0$ is the electric constant, and $E$ is electric field strength."^^qudt:LatexString ;
    qudt:latexSymbol "$\\chi$"^^qudt:LatexString ;
    qudt:plainTextDescription "\"Electric Susceptibility\" is the ratio of electric polarization to electric field strength, normalized to the electric constant. The definition applies to an isotropic medium. For an anisotropic medium, electric susceptibility is a second order tensor."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q598305> ;
    rdfs:comment "Applicable units are those of quantitykind:ElectricSusceptibility"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    rdfs:seeAlso quantitykind:ElectricFieldStrength,
        quantitykind:ElectricPolarization ;
    skos:altLabel "susceptywność elektryczna"@pl,
        "диэлектрическая восприимчивость"@ru .

quantitykind:ElectrolyticConductivity a qudt:QuantityKind ;
    rdfs:label "Electrolytic Conductivity"@en ;
    dcterms:description "\"Electrolytic Conductivity\" of an electrolyte solution is a measure of its ability to conduct electricity."^^qudt:LatexString ;
    qudt:applicableUnit unit:MicroS-PER-CentiM,
        unit:S-PER-M ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E2L-3I0M-1H0T3D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Conductivity_(electrolytic)"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ;
    qudt:latexDefinition "$x = \\frac{J}{E}$, where $J$ is the electrolytic current density and $E$ is the electric field strength."^^qudt:LatexString ;
    qudt:plainTextDescription "\"Electrolytic Conductivity\" of an electrolyte solution is a measure of its ability to conduct electricity."^^xsd:string ;
    qudt:symbol "x"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q907564> ;
    rdfs:comment "Applicable units are those of quantitykind:ElectrolyticConductivity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:EnergyInternal a qudt:QuantityKind ;
    rdfs:label "طاقة داخلية"@ar,
        "vnitřní energie"@cs,
        "innere Energie"@de,
        "internal energy"@en,
        "energía interna"@es,
        "انرژی درونی"@fa,
        "énergie interne"@fr,
        "आन्तरिक ऊर्जा"@hi,
        "energia interna"@it,
        "内部エネルギー"@ja,
        "Tenaga dalaman"@ms,
        "energia wewnętrzna"@pl,
        "energia interna"@pt,
        "energie internă"@ro,
        "внутренняя энергия"@ru,
        "Notranja energija"@sl,
        "İç enerji"@tr,
        "内能"@zh ;
    dcterms:description "The internal energy is the total energy contained by a thermodynamic system. It is the energy needed to create the system, but excludes the energy to displace the system's surroundings, any energy associated with a move as a whole, or due to external force fields. Internal energy has two major components, kinetic energy and potential energy. The internal energy (U) is the sum of all forms of energy (Ei) intrinsic to a thermodynamic system:  $  U = \\sum_i E_i $"^^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/Internal_energy"^^xsd:anyURI ;
    qudt:exactMatch quantitykind:InternalEnergy,
        quantitykind:ThermodynamicEnergy ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Internal_energy"^^xsd:anyURI ;
    qudt:symbol "U"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q180241> ;
    rdfs:comment "Applicable units are those of quantitykind:Energy"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:altLabel "thermodynamische Energie"@de,
        "thermodynamic energy"@en,
        "énergie thermodynamique"@fr,
        "energia termodinamica"@it,
        "tenaga termodinamik"@ms ;
    skos:broader quantitykind:Energy .

quantitykind:EvaporativeHeatTransferCoefficient a qudt:QuantityKind ;
    rdfs:label "Combined Non Evaporative Heat Transfer Coefficient"@en ;
    dcterms:description "\"Evaporative Heat Transfer Coefficient\" is the areic heat transfer coefficient multiplied by the water vapor pressure difference between skind and the environment, and by the exchange area."^^qudt:LatexString ;
    qudt:applicableUnit unit:W-PER-M2-PA ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T-1D0> ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Evaporative Heat Transfer Coefficient\" is the areic heat transfer coefficient multiplied by the water vapor pressure difference between skind and the environment, and by the exchange area."^^xsd:string ;
    qudt:symbol "h_e"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:EvaporativeHeatTransferCoefficient"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:FermiAngularWavenumber a qudt:QuantityKind ;
    rdfs:label "Fermi Angular Wavenumber"@en ;
    qudt:applicableUnit unit:DEG-PER-M,
        unit:RAD-PER-M ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H0T0D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Heavy_fermion"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
    qudt:symbol "k_F"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q105554303> ;
    rdfs:comment "Applicable units are those of quantitykind:FermiAngularWavenumber"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader quantitykind:InverseLength .

quantitykind:ForcePerAngle a qudt:QuantityKind ;
    rdfs:label "Force per Angle"@en ;
    qudt:applicableUnit unit:N-PER-RAD ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-2D0> ;
    rdfs:comment "Applicable units are those of quantitykind:ForcePerAngle"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:ForcePerElectricCharge a qudt:QuantityKind ;
    rdfs:label "Force per Electric Charge"@en ;
    dcterms:description "The electric field depicts the force exerted on other electrically charged objects by the electrically charged particle the field is surrounding. The electric field is a vector field with SI units of newtons per coulomb ($N C^{-1}$) or, equivalently, volts per metre ($V m^{-1}$ ). The SI base units of the electric field are $kg m s^{-3} A^{-1}$. The strength or magnitude of the field at a given point is defined as the force that would be exerted on a positive test charge of 1 coulomb placed at that point"^^qudt:LatexString ;
    qudt:applicableUnit unit:N-PER-C ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-1L1I0M1H0T-3D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Electric_field"^^xsd:anyURI ;
    rdfs:comment "Applicable units are those of quantitykind:ForcePerElectricCharge"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:Fugacity a qudt:QuantityKind ;
    rdfs:label "انفلاتية"@ar,
        "fugacita"@cs,
        "Fugazität"@de,
        "fugacity"@en,
        "fugacidad"@es,
        "بی‌دوامی"@fa,
        "fugacité"@fr,
        "fugacità"@it,
        "フガシティー"@ja,
        "Fugasiti"@ms,
        "Lotność"@pl,
        "fugacidade"@pt,
        "fugacitate"@ro,
        "fügasite"@tr,
        "逸度"@zh ;
    dcterms:description "\"Fugacity\" of a real gas is an effective pressure which replaces the true mechanical pressure in accurate chemical equilibrium calculations. It is equal to the pressure of an ideal gas which has the same chemical potential as the real gas."^^qudt:LatexString ;
    qudt:applicableUnit unit:PA,
        unit:PicoPA ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-2D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Fugacity"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ;
    qudt:latexSymbol "$\\tilde{p}_B$"^^qudt:LatexString ;
    qudt:plainTextDescription "\"Fugacity\" of a real gas is an effective pressure which replaces the true mechanical pressure in accurate chemical equilibrium calculations. It is equal to the pressure of an ideal gas which has the same chemical potential as the real gas."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q898412> ;
    rdfs:comment "Applicable units are those of quantitykind:Fugacity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:GeneralizedCoordinate a qudt:QuantityKind ;
    rdfs:label "Generalized Coordinate"@en ;
    dcterms:description "Generalized Coordinates refers to the parameters that describe the configuration of the system relative to some reference configuration. These parameters must uniquely define the configuration of the system relative to the reference configuration."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Generalized_coordinates"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ;
    qudt:latexDefinition "$q_i$, where $q_i$ is one of the coordinates that is used to describe the position of the system under consideration, and $N$ is the lowest number of coordinates necessary to fully define the position of the system."^^qudt:LatexString ;
    qudt:plainTextDescription "Generalized Coordinates refers to the parameters that describe the configuration of the system relative to some reference configuration. These parameters must uniquely define the configuration of the system relative to the reference configuration."^^xsd:string ;
    qudt:symbol "q_i"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q1057607> ;
    rdfs:comment "Applicable units are those of quantitykind:GeneralizedCoordinate"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:GeneralizedForce a qudt:QuantityKind ;
    rdfs:label "Generalized Force"@en ;
    dcterms:description "Generalized Forces find use in Lagrangian mechanics, where they play a role conjugate to generalized coordinates."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Generalized_forces"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ;
    qudt:latexDefinition "$\\delta A = \\sum Q_i\\delta q_i$, where $A$ is work and $q_i$ is a generalized coordinate."^^qudt:LatexString ;
    qudt:plainTextDescription "Generalized Forces find use in Lagrangian mechanics, where they play a role conjugate to generalized coordinates."^^xsd:string ;
    qudt:symbol "Q_i"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q1153787> ;
    rdfs:comment "Applicable units are those of quantitykind:GeneralizedForce"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:GeneralizedMomentum a qudt:QuantityKind ;
    rdfs:label "Generalized Force"@en ;
    dcterms:description "Generalized Momentum, also known as the canonical or conjugate momentum, extends the concepts of both linear momentum and angular momentum. To distinguish it from generalized momentum, the product of mass and velocity is also referred to as mechanical, kinetic or kinematic momentum."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Momentum"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ;
    qudt:latexDefinition "$p_i = \\frac{\\partial L}{\\partial \\dot{q_i}}$, where $L$ is the Langrange function and $\\dot{q_i}$ is a generalized velocity."^^qudt:LatexString ;
    qudt:plainTextDescription "Generalized Momentum, also known as the canonical or conjugate momentum, extends the concepts of both linear momentum and angular momentum. To distinguish it from generalized momentum, the product of mass and velocity is also referred to as mechanical, kinetic or kinematic momentum."^^xsd:string ;
    qudt:symbol "p_i"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q6806305> ;
    rdfs:comment "Applicable units are those of quantitykind:GeneralizedMomentum"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:GeneralizedVelocity a qudt:QuantityKind ;
    rdfs:label "Generalized Velocity"@en ;
    dcterms:description "Generalized Velocities are the time derivatives of the generalized coordinates of the system."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Generalized_coordinates"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ;
    qudt:latexDefinition "$\\dot{q_i} = \\frac{dq_i}{dt}$, where $q_i$ is the generalized coordinate and $t$ is time."^^qudt:LatexString ;
    qudt:latexSymbol "$\\dot{q_i}$"^^qudt:LatexString ;
    qudt:plainTextDescription "Generalized Velocities are the time derivatives of the generalized coordinates of the system."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q74317892> ;
    rdfs:comment "Applicable units are those of quantitykind:GeneralizedVelocity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:Gradient a qudt:QuantityKind ;
    rdfs:label "gradient"^^xsd:string ;
    qudt:applicableUnit unit:MicroM-PER-M,
        unit:MilliM-PER-M ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:iec61360Code "0112/2///62720#UAD058"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD058"^^xsd:anyURI ;
    rdfs:comment "Applicable units are those of quantitykind:Gradient"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:GroupSpeedOfSound a qudt:QuantityKind ;
    rdfs:label "Group Speed of Sound"@en ;
    dcterms:description "In a dispersive medium sound speed is a function of sound frequency, through the dispersion relation. The spatial and temporal distribution of a propagating disturbance will continually change. The group speed of sound describes the propagation of the disturbance."^^qudt:LatexString ;
    qudt:applicableUnit unit:GigaHZ-M,
        unit:KiloHZ-M ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T-1D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Speed_of_sound"^^xsd:anyURI ;
    qudt:latexDefinition "$c_g = \\frac{d\\omega}{dk}$, where $\\omega$ is the angular frequency and $k$ is angular wavenumber."^^qudt:LatexString ;
    qudt:plainTextDescription "In a dispersive medium sound speed is a function of sound frequency, through the dispersion relation. The spatial and temporal distribution of a propagating disturbance will continually change. The group speed of sound describes the propagation of the disturbance."^^xsd:string ;
    qudt:symbol "c"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q86508881> ;
    ns1:todo "belongs to SOQ-ISO"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:GroupSpeedOfSound"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader quantitykind:SpeedOfSound .

quantitykind:GrowingDegreeDay 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 ;
    qudt:applicableUnit unit:DEG_C_GROWING_CEREAL-DAY ;
    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:GrowingDegreeDay"^^xsd:string ;
    rdfs:isDefinedBy <https://data.agrimetrics.co.uk/ontologies/qudt-extension> ;
    skos:broader quantitykind:TimeTemperature .

quantitykind:HeatFlowRatePerArea a qudt:QuantityKind ;
    rdfs:label "Heat Flow Rate per Unit Area"@en ;
    dcterms:description "$\\textit{Heat Flux}$ is the heat rate per area. In SI units, heat flux is measured in $W/m^2$. Heat rate is a scalar quantity, while heat flux is a vectorial quantity. To define the heat flux at a certain point in space, one takes the limiting case where the size of the surface becomes infinitesimally small."^^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/Heat_flux"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ;
    qudt:qkdvDenominator <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T0D0> ;
    qudt:qkdvNumerator <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-3D0> ;
    rdfs:comment "Applicable units are those of quantitykind:PowerPerArea"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader quantitykind:PowerPerArea .

quantitykind:IonizationEnergy a qudt:QuantityKind ;
    rdfs:label "Ionization Energy"@en ;
    dcterms:description "\"Ionization Energy\" is the energy difference between an electron at rest at infinity and an electron at a certain energy level. The amount of energy required to remove an electron from that atom or molecule in the gas phase."^^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 "\"Ionization Energy\" is the energy difference between an electron at rest at infinity and an electron at a certain energy level. The amount of energy required to remove an electron from that atom or molecule in the gas phase."^^xsd:string ;
    qudt:symbol "E_i"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q483769> ;
    rdfs:comment "Applicable units are those of quantitykind:Energy"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader quantitykind:Energy .

quantitykind:LeakageFactor a qudt:QuantityKind ;
    rdfs:label "Leakage Factor"@en ;
    dcterms:description "\"Leakage Factor\" is the ratio of the total magnetic flux to the useful magnetic flux of a magnetic circuit."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:expression "$leakage-factor$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=221-04-12"^^xsd:anyURI,
        "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ;
    qudt:latexDefinition "$\\sigma = 1 - k^2$, where $k$ is the coupling factor."^^qudt:LatexString ;
    qudt:latexSymbol "$\\sigma$"^^qudt:LatexString ;
    qudt:plainTextDescription "\"Leakage Factor\" is the ratio of the total magnetic flux to the useful magnetic flux of a magnetic circuit."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:LeakageFactor"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:LengthRatio a qudt:QuantityKind ;
    rdfs:label "Length Ratio"@en ;
    qudt:applicableUnit unit:PERCENT ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:qkdvDenominator <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:qkdvNumerator <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    rdfs:comment "Applicable units are those of quantitykind:LengthRatio"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader quantitykind:DimensionlessRatio .

quantitykind:LinearDensity a qudt:QuantityKind ;
    rdfs:label "Linear Density"@en ;
    dcterms:description "The Linear density, linear mass density or linear mass is a measure of mass per unit of length, and it is a characteristic of strings or other one-dimensional objects."^^qudt:LatexString ;
    qudt:applicableUnit unit:KiloGM-PER-M,
        unit:KiloGM-PER-MilliM ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T0D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Linear_density"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ;
    qudt:latexDefinition "$\\rho_l = \\frac{dm}{dl}$, where $m$ is mass and $l$ is length."^^qudt:LatexString ;
    qudt:latexSymbol "$\\rho_l$"^^qudt:LatexString ;
    qudt:plainTextDescription "The Linear density, linear mass density or linear mass is a measure of mass per unit of length, and it is a characteristic of strings or other one-dimensional objects."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q56298294> ;
    rdfs:comment "Applicable units are those of quantitykind:LinearDensity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:LinearElectricCurrent a qudt:QuantityKind ;
    rdfs:label "Linear Electric Current"@en ;
    dcterms:description "\"Linear Electric Linear Current\" is the electric current per unit line."^^qudt:LatexString ;
    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:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L-1I0M0H0T0D0> ;
    qudt:iec61360Code "0112/2///62720#UAD076"^^xsd:string ;
    qudt:informativeReference "http://www.asknumbers.com/ElectricalConversion.aspx"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD076"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Linear Electric Linear Current\" is the electric current per unit line."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:LinearElectricCurrentDensity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader quantitykind:LinearElectricCurrentDensity .

quantitykind:LinearMass a qudt:QuantityKind ;
    rdfs:label "lineic mass"^^xsd:string ;
    qudt:applicableUnit unit:KiloGM-PER-KiloM,
        unit:LB-PER-YD ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T0D0> ;
    qudt:iec61360Code "0112/2///62720#UAD079"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD079"^^xsd:anyURI ;
    rdfs:comment "Applicable units are those of quantitykind:LinearMass"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:LinearStrain a qudt:QuantityKind ;
    rdfs:label "Linear Strain"@en ;
    dcterms:description "A strain is a normalized measure of deformation representing the displacement between particles in the body relative to a reference length."^^qudt:LatexString ;
    qudt:applicableUnit unit:PERCENT ;
    qudt:exactMatch quantitykind:Strain ;
    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 "$\\xi = \\frac{\\Delta l}{l_0}$, where $\\Delta l$ is the increase in length and $l_0$ is the length in a reference state to be specified."^^qudt:LatexString ;
    qudt:latexSymbol "$\\xi$"^^qudt:LatexString ;
    qudt:plainTextDescription "A strain is a normalized measure of deformation representing the displacement between particles in the body relative to a reference length."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q1990546> ;
    rdfs:comment "Applicable units are those of quantitykind:LengthRatio"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader quantitykind:LengthRatio .

quantitykind:LinearTorque a qudt:QuantityKind ;
    rdfs:label "lineic torque"^^xsd:string ;
    qudt:applicableUnit unit:LB_F-FT-PER-IN,
        unit:LB_F-IN-PER-IN ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-2D0> ;
    qudt:iec61360Code "0112/2///62720#UAD082"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD082"^^xsd:anyURI ;
    rdfs:comment "Applicable units are those of quantitykind:LinearTorque"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:LossFactor a qudt:QuantityKind ;
    rdfs:label "Loss Factor"@en ;
    dcterms:description """
  $\\textit{Loss Factor}$ is the inverse of $\\textit{Quality Factor}$ and is the ratio of the $\\textit{resistance}$ and modulus of $\\textit{reactance}$.
  """^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    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 "$d = \\frac{1}{Q}$, where $Q$ is quality factor."^^qudt:LatexString ;
    qudt:plainTextDescription "Loss Factor is the inverse of Quality Factor and is the ratio of the resistance and modulus of reactance."^^xsd:string ;
    qudt:symbol "d"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q79468728> ;
    rdfs:comment "Applicable units are those of quantitykind:LossFactor"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    rdfs:seeAlso quantitykind:QualityFactor,
        quantitykind:Reactance,
        quantitykind:Resistance .

quantitykind:LuminousEfficacy a qudt:QuantityKind ;
    rdfs:label "Luminous Efficacy"@en ;
    dcterms:description "Luminous Efficacy is the ratio of luminous flux (in lumens) to power (usually measured in watts). Depending on context, the power can be either the radiant flux of the source's output, or it can be the total electric power consumed by the source."^^qudt:LatexString ;
    qudt:applicableUnit unit:LM-PER-W ;
    qudt:expression "$lm/w$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I1M-1H0T3D0> ;
    qudt:iec61360Code "0112/2///62720#UAD091"^^xsd:string ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Luminous_efficacy"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD091"^^xsd:anyURI ;
    qudt:latexDefinition "$K = \\frac{\\Phi_v}{\\Phi}$, where $\\Phi_v$ is the luminous flux and $\\Phi$ is the corresponding radiant flux."^^qudt:LatexString ;
    qudt:plainTextDescription "Luminous Efficacy is the ratio of luminous flux (in lumens) to power (usually measured in watts). Depending on context, the power can be either the radiant flux of the source's output, or it can be the total electric power consumed by the source."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q1504173> ;
    rdfs:comment "Applicable units are those of quantitykind:LuminousEfficacy"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:LuminousExposure a qudt:QuantityKind ;
    rdfs:label "Luminous Exposure"@en ;
    dcterms:description "Luminous Exposure is the time-integrated illuminance."^^qudt:LatexString ;
    qudt:altSymbol "Hv"^^xsd:string ;
    qudt:applicableUnit unit:LUX-HR,
        unit:LUX-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I1M0H0T1D0> ;
    qudt:iec61360Code "0112/2///62720#UAD093"^^xsd:string ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Luminous_energy"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD093"^^xsd:anyURI,
        "https://en.wikipedia.org/wiki/Exposure_(photography)#Photometric_and_radiometric_exposure"^^xsd:anyURI ;
    qudt:plainTextDescription "Luminous Exposure is the time-integrated illuminance."^^xsd:string ;
    qudt:symbol "H_v"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q815588> ;
    rdfs:comment "Applicable units are those of quantitykind:LuminousExposure"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:LuminousIntensityDistribution a qudt:QuantityKind ;
    rdfs:label "Ion Concentration"@en ;
    dcterms:description "\"Luminous Intensity Distribution\" is a measure of the luminous intensity of a light source that changes according to the direction of the ray. It is normally based on some standardized distribution light distribution curves. Usually measured in Candela/Lumen (cd/lm) or (cd/klm)."^^qudt:LatexString ;
    qudt:applicableUnit unit:CD-PER-KiloLM,
        unit:CD-PER-LM ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:plainTextDescription "\"Luminous Intensity Distribution\" is a measure of the luminous intensity of a light source that changes according to the direction of the ray. It is normally based on some standardized distribution light distribution curves. Usually measured in Candela/Lumen (cd/lm) or (cd/klm)."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:LuminousIntensityDistribution"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:MagneticSusceptability a qudt:QuantityKind ;
    rdfs:label "Magnetic Susceptability"@en ;
    dcterms:description "\"Magnetic Susceptability\" is a scalar or tensor quantity the product of which by the magnetic constant $\\mu_0$ and by the magnetic field strength $H$ is equal to the magnetic polarization $J$. The definition given applies to an isotropic medium. For an anisotropic medium permeability is a second order tensor."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:expression "$\\kappa = \\frac{M}{H}$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=121-12-37"^^xsd:anyURI,
        "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ;
    qudt:latexDefinition "$\\kappa = \\frac{M}{H}$,  where $M$ is magnetization,  and $H$ is magnetic field strength."^^qudt:LatexString ;
    qudt:latexSymbol "$\\kappa$"^^qudt:LatexString ;
    rdfs:comment "Applicable units are those of quantitykind:MagneticSusceptability"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    rdfs:seeAlso <http://qudt.org/vocab/constant/MagneticConstant>,
        quantitykind:MagneticFieldStrength,
        quantitykind:Magnetization .

quantitykind:MassAbsorptionCoefficient a qudt:QuantityKind ;
    rdfs:label "Mass Absorption Coefficient"@en ;
    dcterms:description "The mass absorption coefficient is the linear absorption coefficient divided by the density of the absorber."^^qudt:LatexString ;
    qudt:applicableUnit unit:M2-PER-KiloGM ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M-1H0T0D0> ;
    qudt:informativeReference "http://medical-dictionary.thefreedictionary.com/mass+absorption+coefficient"^^xsd:anyURI ;
    qudt:latexDefinition "$a_m = \\frac{a}{\\rho}$, where $a$ is the linear absorption coefficient and $\\rho$ is the mass density of the medium."^^qudt:LatexString ;
    qudt:latexSymbol "$a_m$"^^qudt:LatexString ;
    qudt:plainTextDescription "The mass absorption coefficient is the linear absorption coefficient divided by the density of the absorber."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q86202147> ;
    rdfs:comment "Applicable units are those of quantitykind:MassAbsorptionCoefficient"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:MassConcentrationOfWater a qudt:QuantityKind ;
    rdfs:label "Mass Concentration of Water"@en ;
    dcterms:description "\"Mass Concentration of Water\" is one of a number of $\\textit{Concentration}$ quantities defined by ISO 80000."^^qudt:LatexString ;
    qudt:applicableUnit unit:KiloGM-PER-M3 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M1H0T0D0> ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ;
    qudt:latexDefinition "$w = m/V$, where $m$ is mass of water, irrespective of the form of aggregation, and $V$ is volume. Mass concentration of water at saturation is denoted $w_{sat}$."^^qudt:LatexString ;
    qudt:plainTextDescription "Mass Concentration of Water is one of a number of Concentration quantities defined by ISO 80000."^^xsd:string ;
    qudt:symbol "w"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q76378758> ;
    rdfs:comment "Applicable units are those of quantitykind:MassConcentrationOfWater"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:MassConcentrationOfWaterVapour a qudt:QuantityKind ;
    rdfs:label "Mass Concentration of Water Vapour"@en ;
    dcterms:description "\"Mass Concentration of Water Vapour\" is one of a number of $\\textit{Concentration}$ quantities defined by ISO 80000."^^qudt:LatexString ;
    qudt:applicableUnit unit:KiloGM-PER-M3 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M1H0T0D0> ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ;
    qudt:latexDefinition "$w = m/V$, where $m$ is mass of water vapour and $V$ is total gas volume. Mass concentration of water vapour at saturation is denoted $v_{sat}$."^^qudt:LatexString ;
    qudt:plainTextDescription "Mass Concentration of Water is one of a number of Concentration quantities defined by ISO 80000."^^xsd:string ;
    qudt:symbol "v"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q76378808> ;
    rdfs:comment "Applicable units are those of quantitykind:MassConcentrationOfWaterVapour"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:MassEquivalent 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 ;
    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> ;
    rdfs:comment "Applicable units are those of quantitykind:Mass"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader quantitykind:Mass .

quantitykind:MassRatioOfWaterToDryMatter a qudt:QuantityKind ;
    rdfs:label "Mass Concentration of Water To Dry Matter"@en ;
    dcterms:description "\"Mass Ratio of Water to Dry Matter\" is one of a number of $\\textit{Concentration Ratio}$ quantities defined by ISO 80000."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ;
    qudt:latexDefinition "$u = m/m_d$, where $m$ is mass of water vapour and $m_d$ is mass of dry matter. Mass ratio of water to dry matter at saturation is denoted $u_{sat}$."^^qudt:LatexString ;
    qudt:plainTextDescription "Mass Ratio of Water to Dry Matter is one of a number of Concentration Ratio quantities defined by ISO 80000."^^xsd:string ;
    qudt:symbol "u"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:MassRatioOfWaterToDryMatter"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:MassRatioOfWaterVapourToDryGas a qudt:QuantityKind ;
    rdfs:label "Mass Ratio of Water Vapour to Dry Gas"@en ;
    dcterms:description "\"Mass Ratio of Water Vapour to Dry Gas\" is one of a number of $\\textit{Concentration Ratio}$ quantities defined by ISO 80000."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ;
    qudt:latexDefinition "$x = m/m_d$, where $m$ is mass of water vapour and $m_d$ is mass of dry gas. Mass ratio of water vapour to dry gas  at saturation is denoted $x_{sat}$."^^qudt:LatexString ;
    qudt:plainTextDescription "Mass Ratio of Water Vapour to Dry Gas is one of a number of Concentration Ratio quantities defined by ISO 80000."^^xsd:string ;
    qudt:symbol "x"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q17232415> ;
    rdfs:comment "Applicable units are those of quantitykind:MassRatioOfWaterVapourToDryGas"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:MassicHeatCapacity a qudt:QuantityKind ;
    rdfs:label "massic heat capacity"^^xsd:string,
        "massic heat capacity"@en-us ;
    dcterms:description "ratio of heat capacity divided by mass"@en ;
    qudt:applicableUnit unit:BTU_TH-PER-LB-DEG_R,
        unit:KiloCAL_IT-PER-GM-K ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H-1T-2D0> ;
    qudt:iec61360Code "0112/2///62720#UAD112"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD112"^^xsd:anyURI ;
    qudt:plainTextDescription "Quotient Wärmekapazität dividiert durch Masse"@de ;
    qudt:symbol "0173-1#Z4-BAJ345#002"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:MassicHeatCapacity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:ModulusOfImpedance a qudt:QuantityKind ;
    rdfs:label "Modulus Of Impedance"@en ;
    dcterms:description """"Modulus Of Impedance} is the absolute value of the quantity $\\textit{impedance}$. Apparent impedance is defined more generally as

the quotient of rms voltage and rms electric current; it is often denoted by $Z$."""^^qudt:LatexString ;
    qudt:applicableUnit unit:OHM ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-2L2I0M1H0T-3D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Absolute_value"^^xsd:anyURI,
        "http://en.wikipedia.org/wiki/Electrical_impedance"^^xsd:anyURI,
        "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ;
    qudt:latexDefinition "$Z = \\left | \\underline{Z} \\right |$, where $\\underline{Z}$ is impedance."^^qudt:LatexString ;
    qudt:symbol "Z"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q25457909> ;
    rdfs:comment "Applicable units are those of quantitykind:ModulusOfImpedance"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    rdfs:seeAlso quantitykind:Impedance .

quantitykind:ModulusOfLinearSubgradeReaction a qudt:QuantityKind ;
    rdfs:label "Modulus of Linear Subgrade Reaction"@en ;
    dcterms:description "Modulus of Linear Subgrade Reaction is a measure for modulus of linear subgrade reaction, which expresses the elastic bedding of a linear structural element per length, such as for a beam. It is typically measured in N/m^2"^^qudt:LatexString ;
    qudt:applicableUnit unit:N-PER-M2,
        unit:PDL-PER-IN2 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-2D0> ;
    qudt:informativeReference "https://www.lusas.com/user_area/documentation/1004_Winkler_spring_models.pdf"^^xsd:anyURI ;
    qudt:plainTextDescription "Modulus of Linear Subgrade Reaction is a measure for modulus of linear subgrade reaction, which expresses the elastic bedding of a linear structural element per length, such as for a beam. It is typically measured in N/m^2"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:ModulusOfLinearSubgradeReaction"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader quantitykind:ForcePerArea .

quantitykind:MolarFluxDensityVariance a qudt:QuantityKind ;
    rdfs:label "Molar Flux Density Variance"@en ;
    dcterms:description "Variance for Molar Flux Density data."^^xsd:string ;
    qudt:applicableUnit unit:MicroMOL2-PER-M4-SEC2 ;
    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 Molar Flux Density data."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:MolarFluxDensityVariance"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:MolecularMass a qudt:QuantityKind ;
    rdfs:label "Molecular Mass"@en ;
    dcterms:description "The molecular mass, or molecular weight of a chemical compound is the mass of one molecule of that compound, relative to the unified atomic mass unit, u. Molecular mass should not be confused with molar mass, which is the mass of one mole of a substance."^^qudt:LatexString ;
    qudt:applicableUnit unit:DA ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Molecular_mass"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T0D0> ;
    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 "The molecular mass, or molecular weight of a chemical compound is the mass of one molecule of that compound, relative to the unified atomic mass unit, u. Molecular mass should not be confused with molar mass, which is the mass of one mole of a substance."^^xsd:string ;
    qudt:symbol "M"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q182854> ;
    rdfs:comment "Applicable units are those of quantitykind:MolecularMass"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader quantitykind:Mass .

quantitykind:MortalityRate a qudt:QuantityKind ;
    rdfs:label "Mortality Rate"@en ;
    dcterms:description "Mortality rate, or death rate, is a measure of the number of deaths (in general, or due to a specific cause) in a particular population, scaled to the size of that population, per unit of time."^^qudt:LatexString ;
    qudt:applicableUnit unit:DEATHS-PER-KiloINDIV-YR,
        unit:DEATHS-PER-MegaINDIV-YR ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Mortality_rate"^^xsd:anyURI ;
    qudt:plainTextDescription "Mortality rate, or death rate, is a measure of the number of deaths (in general, or due to a specific cause) 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:MortalityRate"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader quantitykind:Incidence .

quantitykind:MutualInductance a qudt:QuantityKind ;
    rdfs:label "Mutual Inductance"@en ;
    dcterms:description "$\\textit{Mutual Inductance}$ is the non-diagonal term of the inductance matrix. For two loops, the symbol $M$ is used for $L_{12}$."^^qudt:LatexString ;
    qudt:applicableUnit unit:H,
        unit:H_Ab,
        unit:H_Stat,
        unit:KiloH,
        unit:MicroH,
        unit:MilliH,
        unit:NanoH,
        unit:PicoH ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-2L2I0M1H0T-2D0> ;
    qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=131-12-36"^^xsd:anyURI,
        "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ;
    qudt:latexDefinition "$L_{mn} = \\frac{\\Psi_m}{I_n}$, where $I_n$ is an electric current in a thin conducting loop $n$ and $\\Psi_m$ is the linked flux caused by that electric current in another loop $m$."^^qudt:LatexString ;
    qudt:symbol "L_{mn}"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q78101401> ;
    rdfs:comment "Applicable units are those of quantitykind:Inductance"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    rdfs:seeAlso quantitykind:Inductance ;
    skos:broader quantitykind:Inductance .

quantitykind:NapierianAbsorbance a qudt:QuantityKind ;
    rdfs:label "Napierian Absorbance"@en ;
    dcterms:description "Napierian Absorbance is the natural (Napierian) logarithm of the reciprocal of the spectral internal transmittance."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Absorbance#Beer-Lambert_law"^^xsd:anyURI,
        "https://en.wikipedia.org/wiki/Beer%E2%80%93Lambert_law#Formulation"^^xsd:anyURI ;
    qudt:latexDefinition "$A_e(\\lambda) = -ln(\\tau(\\lambda))$, where $\\tau$ is the transmittance at a given wavelength $\\lambda$."^^qudt:LatexString ;
    qudt:plainTextDescription "Napierian Absorbance is the natural (Napierian) logarithm of the reciprocal of the spectral internal transmittance."^^xsd:string ;
    qudt:symbol "A_e, B"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q85664557> ;
    rdfs:comment "Applicable units are those of quantitykind:NapierianAbsorbance"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:NeelTemperature a qudt:QuantityKind ;
    rdfs:label "Neel Temperature"@en ;
    dcterms:description "\"Neel Temperature\" is the critical thermodynamic temperature of an antiferromagnet."^^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/Néel_temperature"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Neel Temperature\" is the critical thermodynamic temperature of an antiferromagnet."^^xsd:string ;
    qudt:symbol "T_C"^^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 quantitykind:Temperature ;
    skos:closeMatch quantitykind:CurieTemperature,
        quantitykind:SuperconductionTransitionTemperature .

quantitykind:Pace a qudt:QuantityKind ;
    rdfs:label "Pace"@en ;
    dcterms:description "Running is often measured in terms of pace, expressed in units of minutes per mile or minutes per kilometer (the inverse of speed, in mph or km/h)."^^qudt:LatexString ;
    qudt:applicableUnit unit:MIN-PER-KiloM,
        unit:MIN-PER-MI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H0T1D0> ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Running#Stride_rate_and_types"^^xsd:anyURI ;
    qudt:plainTextDescription "Running is often measured in terms of pace, expressed in units of minutes per mile or minutes per kilometer (the inverse of speed, in mph or km/h)."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Pace"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:ParticleFluenceRate a qudt:QuantityKind ;
    rdfs:label "Particle Fluence Rate"@en ;
    dcterms:description "\"Particle Fluence Rate\" can be defined as the total number of particles (typically Gamma Ray Photons ) crossing over a sphere of unit cross section which surrounds a Point Source of Ionising Radiation."^^qudt:LatexString ;
    qudt:applicableUnit unit:MicroM-PER-L-DAY,
        unit:PER-M2-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T-1D0> ;
    qudt:informativeReference "http://www.encyclo.co.uk/define/Fluence%20Rate"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:latexDefinition "$\\theta = \\frac{d\\Phi}{dt}$, where $d\\Phi$ is the increment of the particle fluence during an infinitesimal time interval with duration $dt$."^^qudt:LatexString ;
    qudt:latexSymbol "$\\theta$"^^qudt:LatexString ;
    qudt:plainTextDescription "\"Particle Fluence Rate\" can be defined as the total number of particles (typically Gamma Ray Photons ) crossing over a sphere of unit cross section which surrounds a Point Source of Ionising Radiation."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q98497410> ;
    rdfs:comment "Applicable units are those of quantitykind:ParticleFluenceRate"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:Period a qudt:QuantityKind ;
    rdfs:label "Period"@en ;
    dcterms:description "Duration of one cycle of a periodic phenomenon."^^qudt:LatexString ;
    qudt:applicableUnit unit:MegaSEC,
        unit:SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T1D0> ;
    qudt:plainTextDescription "Duration of one cycle of a periodic phenomenon."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q2642727> ;
    ns1:todo "belongs to SOQ-ISO"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Period"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:Permeance a qudt:QuantityKind ;
    rdfs:label "Permeance"@en ;
    dcterms:description "\"Permeance\" is the inverse of reluctance. Permeance is a measure of the quantity of flux for a number of current-turns in magnetic circuit. A magnetic circuit almost acts as though the flux is \"conducted\", therefore permeance is larger for large cross sections of a material and smaller for longer lengths. This concept is analogous to electrical conductance in the electric circuit."^^qudt:LatexString ;
    qudt:applicableUnit unit:NanoH ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-2L2I0M1H0T-2D0> ;
    qudt:iec61360Code "0112/2///62720#UAD135"^^xsd:string ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Permeance"^^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%23UAD135"^^xsd:anyURI ;
    qudt:latexDefinition "$\\Lambda = \\frac{1}{R_m}$, where $R_m$ is reluctance."^^qudt:LatexString ;
    qudt:latexSymbol "$\\Lambda$"^^qudt:LatexString ;
    qudt:plainTextDescription "\"Permeance\" is the inverse of reluctance. Permeance is a measure of the quantity of flux for a number of current-turns in magnetic circuit. A magnetic circuit almost acts as though the flux is \"conducted\", therefore permeance is larger for large cross sections of a material and smaller for longer lengths. This concept is analogous to electrical conductance in the electric circuit."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q77997985> ;
    rdfs:comment "Applicable units are those of quantitykind:Permeance"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    rdfs:seeAlso quantitykind:Reluctance .

quantitykind:PermittivityRatio a qudt:QuantityKind ;
    rdfs:label "Permittivity Ratio"@en ;
    dcterms:description "\"Permittivity Ratio\" is the ratio of permittivity to the permittivity of a vacuum."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Permittivity"^^xsd:anyURI ;
    qudt:expression "$rel-permittivity$"^^qudt:LatexString ;
    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 "$\\epsilon_r = \\epsilon / \\epsilon_0$, where $\\epsilon$ is permittivity and $\\epsilon_0$ is the electric constant."^^qudt:LatexString ;
    qudt:latexSymbol "$\\epsilon_r$"^^qudt:LatexString ;
    qudt:plainTextDescription "\"Permittivity Ratio\" is the ratio of permittivity to the permittivity of a vacuum."^^xsd:string ;
    qudt:qkdvDenominator <http://qudt.org/vocab/dimensionvector/A0E2L-3I0M-1H0T4D0> ;
    qudt:qkdvNumerator <http://qudt.org/vocab/dimensionvector/A0E2L-3I0M-1H0T4D0> ;
    rdfs:comment "Applicable units are those of quantitykind:PermittivityRatio"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    rdfs:seeAlso quantitykind:Permittivity ;
    skos:broader quantitykind:DimensionlessRatio .

quantitykind:PlasmaLevel a qudt:QuantityKind ;
    rdfs:label "Plasma Level"@en ;
    qudt:applicableUnit unit:IU-PER-L,
        unit:IU-PER-MilliL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L-3I0M0H0T0D0> ;
    rdfs:comment "Applicable units are those of quantitykind:PlasmaLevel"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader quantitykind:AmountOfSubstancePerVolume .

quantitykind:PoissonRatio a qudt:QuantityKind ;
    rdfs:label "Poisson Ratio"@en ;
    dcterms:description "The Poisson Ratio is the negative ratio of transverse to axial strain. In fact, when a sample object is stretched (or squeezed), to an extension (or contraction) in the direction of the applied load, it corresponds a contraction (or extension) in a direction perpendicular to the applied load. The ratio between these two quantities is the Poisson's ratio."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Poisson%27s_ratio"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ;
    qudt:latexDefinition "$\\mu = \\frac{\\Delta \\delta}{\\Delta l}$, where $\\Delta \\delta$ is the lateral contraction and $\\Delta l$ is the elongation."^^qudt:LatexString ;
    qudt:latexSymbol "$\\mu$"^^qudt:LatexString ;
    qudt:plainTextDescription "The Poisson Ratio is the negative ratio of transverse to axial strain. In fact, when a sample object is stretched (or squeezed), to an extension (or contraction) in the direction of the applied load, it corresponds a contraction (or extension) in a direction perpendicular to the applied load. The ratio between these two quantities is the Poisson's ratio."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:PoissonRatio"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:Population a qudt:QuantityKind ;
    rdfs:label "Population"@en ;
    dcterms:description "Population typically refers to the number of people in a single area, whether it be a city or town, region, country, continent, or the world, but can also represent the number of any kind of entity."^^qudt:LatexString ;
    qudt:applicableUnit unit:NUM ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Population"^^xsd:anyURI ;
    qudt:plainTextDescription "Population typically refers to the number of people in a single area, whether it be a city or town, region, country, continent, or the world, but can also represent the number of any kind of entity."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Population"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader quantitykind:Count .

quantitykind:PositionVector a qudt:QuantityKind ;
    rdfs:label "Position Vector"@en ;
    dcterms:description "A \"Position Vector\", also known as location vector or radius vector, is a Euclidean vector which represents the position of a point P in space in relation to an arbitrary reference origin O."^^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:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ;
    qudt:latexDefinition "$r = \\overrightarrow{OP}$, where $O$ and $P$ are two points in space."^^qudt:LatexString ;
    qudt:plainTextDescription "A \"Position Vector\", also known as location vector or radius vector, is a Euclidean vector which represents the position of a point P in space in relation to an arbitrary reference origin O."^^xsd:string ;
    qudt:symbol "r"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q192388> ;
    rdfs:comment "Applicable units are those of quantitykind:Length"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader quantitykind:Length .

quantitykind:PowerDensity a qudt:QuantityKind ;
    rdfs:label "PowerDensity"@en ;
    qudt:applicableUnit unit:W-PER-M3 ;
    qudt:exactMatch quantitykind:PowerPerVolume ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-3D0> ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Power_density"^^xsd:anyURI ;
    rdfs:comment "Applicable units are those of quantitykind:PowerDensity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:PowerFactor a qudt:QuantityKind ;
    rdfs:label "معامل القدرة"@ar,
        "Účiník"@cs,
        "Leistungsfaktor"@de,
        "power factor"@en,
        "factor de potencia"@es,
        "ضریب توان"@fa,
        "facteur de puissance"@fr,
        "शक्ति गुणांक"@hi,
        "fattore di potenza"@it,
        "力率"@ja,
        "faktor kuasa"@ms,
        "Współczynnik mocy"@pl,
        "fator de potência"@pt,
        "factor de putere"@ro,
        "Коэффициент_мощности"@ru,
        "güç faktörü"@tr,
        "功率因数"@zh ;
    dcterms:description "\"Power Factor\", under periodic conditions, is the ratio of the absolute value of the active power $P$ to the apparent power $S$."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:expression "$power-factor$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=131-11-46"^^xsd:anyURI,
        "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ;
    qudt:latexDefinition "$\\lambda = \\left | P \\right | / \\left | S \\right |$, where $P$ is active power and $S$ is apparent power."^^qudt:LatexString ;
    qudt:latexSymbol "$\\lambda$"^^qudt:LatexString ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q750454> ;
    rdfs:comment "Applicable units are those of quantitykind:PowerFactor"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    rdfs:seeAlso quantitykind:ActivePower,
        quantitykind:ApparentPower .

quantitykind:PowerPerVolume a qudt:QuantityKind ;
    rdfs:label "Power per Volume"@en ;
    qudt:applicableUnit unit:W-PER-M3 ;
    qudt:exactMatch quantitykind:PowerDensity ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-3D0> ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Power_density"^^xsd:anyURI ;
    rdfs:comment "Applicable units are those of quantitykind:PowerPerVolume"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:RadianceFactor a qudt:QuantityKind ;
    rdfs:label "Radiance Factor"@en ;
    dcterms:description "Radiance Factor is the ratio of the radiance of the surface element in the given direction to that of a perfect reflecting or transmitting diffuser identically irradiated unit."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://www.encyclo.co.uk/define/radiance%20factor"^^xsd:anyURI ;
    qudt:latexDefinition "$\\beta = \\frac{L_n}{L_d}$, where $L_n$ is the radiance of a surface element in a given direction and $L_d$ is the radiance of the perfect reflecting or transmitting diffuser identically irradiated and viewed. Reflectance factor is equivalent to radiance factor or luminance factor (when the cone angle is infinitely small, and is equivalent to reflectance when the cone angle is $2π sr$."^^qudt:LatexString ;
    qudt:latexSymbol "$\\beta$"^^qudt:LatexString ;
    qudt:plainTextDescription "Radiance Factor is the ratio of the radiance of the surface element in the given direction to that of a perfect reflecting or transmitting diffuser identically irradiated unit."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q85811846> ;
    rdfs:comment "Applicable units are those of quantitykind:RadianceFactor"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:RadiantEnergyDensity a qudt:QuantityKind ;
    rdfs:label "Radiant Energy Density"@en ;
    dcterms:description "\"Radiant Energy Density\", or radiant power, is the radiant energy per unit volume."^^qudt:LatexString ;
    qudt:applicableUnit unit:J-PER-M3 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-2D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Radiant_energy_density"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31892"^^xsd:anyURI ;
    qudt:latexDefinition "$w$, $\\rho = \\frac{dQ}{dV}$, where $dQ$ is the radiant energy in an elementary three-dimensional domain, and $dV$ is the volume."^^qudt:LatexString ;
    qudt:latexSymbol "$w, \\rho$"^^qudt:LatexString ;
    qudt:plainTextDescription "\"Radiant Energy Density\", or radiant power, is the radiant energy per unit volume."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q15054312> ;
    rdfs:comment "Applicable units are those of quantitykind:RadiantEnergyDensity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:Radiosity a qudt:QuantityKind ;
    rdfs:label "Radiosity"@en ;
    dcterms:description "Radiosity is the total emitted and reflected radiation leaving a surface."^^qudt:LatexString ;
    qudt:applicableUnit unit:J-PER-CentiM2-DAY ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-3D0> ;
    qudt:plainTextDescription "Radiosity is the total emitted and reflected radiation leaving a surface."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Radiosity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader quantitykind:PowerPerArea .

quantitykind:RatioOfSpecificHeatCapacities a qudt:QuantityKind ;
    rdfs:label "Ratio of Specific Heat Capacities"@en ;
    dcterms:description """
  The specific heat ratio of a gas is the ratio of the specific heat at constant pressure,
   $c_p$, to the specific heat at constant volume, $c_V$. 
  It is sometimes referred to as the $\\textit{adiabatic index}$,
   or the $\\textit{heat capacity ratio}$,
   or the $\\textit{isentropic expansion factor}$,
   or the $\\textit{adiabatic exponent}$,
  or the $\\textit{isentropic exponent}$.
  """^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.citizendium.org/wiki/Specific_heat_ratio"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ;
    qudt:latexDefinition "$\\gamma = c_p / c_V$, where $c$ is the specific heat of a gas, $c_p$ is specific heat capacity at constant pressure, $c_V$ is specific heat capacity at constant volume."^^qudt:LatexString ;
    qudt:latexSymbol "$\\gamma$"^^qudt:LatexString,
        "$\\varkappa$"^^qudt:LatexString ;
    rdfs:comment "Applicable units are those of quantitykind:RatioOfSpecificHeatCapacities"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    rdfs:seeAlso quantitykind:IsentropicExponent .

quantitykind:ReflectanceFactor a qudt:QuantityKind ;
    rdfs:label "Reflectance Factor"@en ;
    dcterms:description "Reflectance Factor is the measure of the ability of a surface to reflect light or other electromagnetic radiation, equal to the ratio of the reflected flux to the incident flux."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://www.thefreedictionary.com/reflectance+factor"^^xsd:anyURI ;
    qudt:latexDefinition "$R = \\frac{\\Phi_n}{\\Phi_d}$, where $\\Phi_n$ is the radiant flux or luminous flux reflected in the directions delimited by a given cone and $\\Phi_d$ is the flux reflected in the same directions by an identically radiated diffuser of reflectance equal to 1."^^qudt:LatexString ;
    qudt:plainTextDescription "Reflectance Factor is the measure of the ability of a surface to reflect light or other electromagnetic radiation, equal to the ratio of the reflected flux to the incident flux."^^xsd:string ;
    qudt:symbol "R"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q86078369> ;
    rdfs:comment "Applicable units are those of quantitykind:ReflectanceFactor"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:RefractiveIndex a qudt:QuantityKind ;
    rdfs:label "معامل الانكسار"@ar,
        "Index lomu"@cs,
        "Brechzahl"@de,
        "refractive index"@en,
        "índice de refracción"@es,
        "ضریب شکست"@fa,
        "indice de réfraction"@fr,
        "अपवर्तनांक"@hi,
        "indice di rifrazione"@it,
        "屈折率"@ja,
        "Indeks biasan"@ms,
        "Współczynnik załamania"@pl,
        "índice refrativo"@pt,
        "Indice de refracție"@ro,
        "Показатель преломления"@ru,
        "kırılma indeksi"@tr,
        "折射率"@zh ;
    dcterms:description "\"refractive index\" or index of refraction n of a substance (optical medium) is a dimensionless number that describes how light, or any other radiation, propagates through that medium."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Refractive_index"^^xsd:anyURI ;
    qudt:latexDefinition "$n = \\frac{c_0}{c}$, where $c_0$ is the speed of light in vacuum, and $c$ is the speed of light in the medium."^^qudt:LatexString ;
    qudt:plainTextDescription "\"refractive index\" or index of refraction n of a substance (optical medium) is a dimensionless number that describes how light, or any other radiation, propagates through that medium."^^xsd:string ;
    qudt:symbol "n"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q174102> ;
    rdfs:comment "Applicable units are those of quantitykind:RefractiveIndex"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:altLabel "Brechungsindex"@de .

quantitykind:RelativeMassConcentrationOfVapour a qudt:QuantityKind ;
    rdfs:label "Relative Mass Concentration of Vapour"@en ;
    dcterms:description "\"Relative Mass Concentration of Vapour\" is one of a number of \"Relative Concentration\" quantities defined by ISO 80000."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ;
    qudt:latexDefinition "$\\varphi = v / v_{sat}$, where $v$ is mass concentration of water vapour,  $v_{sat}$ is its mass concentration of water vapour at saturation (at the same temperature). For normal cases, the relative partial pressure may be assumed to be equal to relative mass concentration of vapour."^^qudt:LatexString ;
    qudt:latexSymbol "$\\varphi$"^^qudt:LatexString ;
    qudt:plainTextDescription "Relative Mass Concentration of Vapour is one of a number of Relative Concentration quantities defined by ISO 80000."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q76379357> ;
    rdfs:comment "Applicable units are those of quantitykind:RelativeMassConcentrationOfVapour"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    rdfs:seeAlso quantitykind:RelativePartialPressure .

quantitykind:RelativeMassRatioOfVapour a qudt:QuantityKind ;
    rdfs:label "Relative Mass Ratio of Vapour"@en ;
    dcterms:description "\"Relative Mass Ratio of Vapour\" is one of a number of \"Relative Concentration\" quantities defined by ISO 80000."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ;
    qudt:latexDefinition "$\\psi = x / x_{sat}$, where $x$ is mass ratio of water vapour to dry gas,  $x_{sat}$ is its mass raio of water vapour to dry gas at saturation (at the same temperature)."^^qudt:LatexString ;
    qudt:latexSymbol "$\\psi$"^^qudt:LatexString ;
    qudt:plainTextDescription "Relative Mass Ratio of Vapour is one of a number of Relative Concentration quantities defined by ISO 80000."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q76379414> ;
    rdfs:comment "Applicable units are those of quantitykind:RelativeMassRatioOfVapour"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:ScalarMagneticPotential a qudt:QuantityKind ;
    rdfs:label "Scalar Magnetic Potential"@en ;
    dcterms:description "\"Scalar Magnetic Potential\" is the scalar potential of an irrotational magnetic field strength. The negative of the gradient of the scalar magnetic potential is the irrotational magnetic field strength. The magnetic scalar potential is not unique since any constant scalar field can be added to it without changing its gradient."^^qudt:LatexString ;
    qudt:applicableUnit unit:V-SEC-PER-M ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-1L1I0M1H0T-2D0> ;
    qudt:iec61360Code "0112/2///62720#UAD164"^^xsd:string ;
    qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=121-11-58"^^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%23UAD164"^^xsd:anyURI ;
    qudt:latexDefinition "$\\mathbf{H} = -grad V_m$, where $\\mathbf{H}$ is magnetic field strength."^^qudt:LatexString ;
    qudt:latexSymbol "$\\varphi$"^^qudt:LatexString ;
    qudt:plainTextDescription "\"Scalar Magnetic Potential\" is the scalar potential of an irrotational magnetic field strength. The negative of the gradient of the scalar magnetic potential is the irrotational magnetic field strength. The magnetic scalar potential is not unique since any constant scalar field can be added to it without changing its gradient."^^xsd:string ;
    qudt:symbol "V_m"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:ScalarMagneticPotential"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    rdfs:seeAlso quantitykind:MagneticFieldStrength .

quantitykind:SerumLevel a qudt:QuantityKind ;
    rdfs:label "Serum Level"@en ;
    qudt:applicableUnit unit:IU-PER-L,
        unit:IU-PER-MilliL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L-3I0M0H0T0D0> ;
    rdfs:comment "Applicable units are those of quantitykind:SerumLevel"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader quantitykind:AmountOfSubstancePerVolume .

quantitykind:Slowing-DownDensity a qudt:QuantityKind ;
    rdfs:label "Slowing-Down Density"@en ;
    dcterms:description "\"Slowing-Down Density\" is a measure of the rate at which neutrons lose energy in a nuclear reactor through collisions; equal to the number of neutrons that fall below a given energy per unit volume per unit time."^^qudt:LatexString ;
    qudt:applicableUnit unit:PER-M3-SEC,
        unit:PER-SEC-M3 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M0H0T-1D0> ;
    qudt:iec61360Code "0112/2///62720#UAD170"^^xsd:string ;
    qudt:informativeReference "http://encyclopedia2.thefreedictionary.com/slowing-down+density"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD170"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:latexDefinition "$q = -\\frac{dn}{dt}$, where $n$ is the number density and $dt$ is the duration."^^qudt:LatexString ;
    qudt:plainTextDescription "\"Slowing-Down Density\" is a measure of the rate at which neutrons lose energy in a nuclear reactor through collisions; equal to the number of neutrons that fall below a given energy per unit volume per unit time."^^xsd:string ;
    qudt:symbol "q"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q98915830> ;
    rdfs:comment "Applicable units are those of quantitykind:Slowing-DownDensity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:SoundExposure a qudt:QuantityKind ;
    rdfs:label "Sound exposure"@en ;
    dcterms:description "Sound Exposure is the energy of the A-weighted sound calculated over the measurement time(s). For a given period of time, an increase of 10 dB(A) in sound pressure level corresponds to a tenfold increase in E."^^qudt:LatexString ;
    qudt:applicableUnit unit:PA2-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M2H0T-3D0> ;
    qudt:iec61360Code "0112/2///62720#UAD172"^^xsd:string ;
    qudt:informativeReference "http://www.acoustic-glossary.co.uk/definitions-s.htm"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD172"^^xsd:anyURI ;
    qudt:latexDefinition "$E = \\int_{t1}^{t2}p^2dt$, where $t1$ and $t2$ are the starting and ending times for the integral and $p$ is the sound pressure."^^qudt:LatexString ;
    qudt:plainTextDescription "Sound Exposure is the energy of the A-weighted sound calculated over the measurement time(s). For a given period of time, an increase of 10 dB(A) in sound pressure level corresponds to a tenfold increase in E."^^xsd:string ;
    qudt:symbol "E"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q2230528> ;
    ns1:todo "belongs to SOQ-ISO"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:SoundExposure"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:SoundVolumeVelocity a qudt:QuantityKind ;
    rdfs:label "Sound volume velocity"@en ;
    dcterms:description "Sound Volume Velocity is the product of particle velocity $v$ and the surface area $S$ through which an acoustic wave of frequency $f$ propagates. Also, the surface integral of the normal component of the sound particle velocity over the cross-section (through which the sound propagates). It is used to calculate acoustic impedance."^^qudt:LatexString ;
    qudt:applicableUnit unit:M3-PER-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T-1D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Acoustic_impedance"^^xsd:anyURI ;
    qudt:latexDefinition "$q= vS$, where $v$ is sound particle velocity and $S$ is the surface area through which an acoustic wave of frequence $f$ propagates."^^qudt:LatexString ;
    qudt:symbol "q"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q1640308> ;
    ns1:todo "belongs to SOQ-ISO"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:SoundVolumeVelocity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:SpecificElectricCharge a qudt:QuantityKind ;
    rdfs:label "Specific Electric Charge"@en ;
    dcterms:description "Electric charge (often capacity in the context of electrochemical cells) relativ to the mass (often only active components). capacity "^^qudt:LatexString ;
    qudt:applicableUnit unit:MilliA-HR-PER-GM ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L0I0M-1H0T1D0> ;
    qudt:plainTextDescription "Electric charge (often capacity in the context of electrochemical cells) relativ to the mass (often only active components). capacity "^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:SpecificElectricCharge"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:SpecificElectricCurrent a qudt:QuantityKind ;
    rdfs:label "Specific Electrical Current"@en ;
    dcterms:description "\"Specific Electric Current\" is a measure to specify the applied current relative to a corresponding mass. This measure is often used for standardization within electrochemistry."^^qudt:LatexString ;
    qudt:applicableUnit unit:A-PER-GM ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L0I0M-1H0T0D0> ;
    rdfs:comment "Applicable units are those of quantitykind:SpecificElectricCurrent"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:SpecificImpulseByMass a qudt:QuantityKind ;
    rdfs:label "Specific Impulse by Mass"@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:wikidataMatch <http://www.wikidata.org/entity/Q100793317> ;
    rdfs:comment "Applicable units are those of quantitykind:Velocity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader quantitykind:Velocity .

quantitykind:SpectralAngularCrossSection a qudt:QuantityKind ;
    rdfs:label "Spectral Angular Cross-section"@en ;
    dcterms:description "\"Spectral Angular Cross-section\" is the cross-section for ejecting or scattering a particle into an elementary cone with energy $E$ in an energy interval, divided by the solid angle $d\\Omega$ of that cone and the range $dE$ of that interval."^^qudt:LatexString ;
    qudt:applicableUnit unit:CentiM2-PER-SR-ERG,
        unit:M2-PER-SR-J ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M-1H0T2D0> ;
    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 "$\\sigma = \\int \\int \\sigma_{\\Omega,E} d\\Omega dE$"^^qudt:LatexString ;
    qudt:latexSymbol "$\\sigma_{\\Omega, E}$"^^qudt:LatexString ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q98269571> ;
    rdfs:comment "Applicable units are those of quantitykind:SpectralAngularCrossSection"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:closeMatch quantitykind:AngularCrossSection,
        quantitykind:SpectralCrossSection .

quantitykind:SpeedOfLight a qudt:QuantityKind ;
    rdfs:label "سرعة الضوء"@ar,
        "Rychlost světla"@cs,
        "Lichtgeschwindigkeit"@de,
        "speed of light"@en,
        "velocidad de la luz"@es,
        "سرعت نور"@fa,
        "vitesse de la lumière"@fr,
        "प्रकाश का वेग"@hi,
        "velocità della luce"@it,
        "光速"@ja,
        "Kelajuan cahaya"@ms,
        "Prędkość światła"@pl,
        "Velocidade da luz"@pt,
        "Viteza luminii"@ro,
        "Скорость света"@ru,
        "Hitrost svetlobe"@sl,
        "Işık hızı"@tr,
        "光速"@zh ;
    dcterms:description """
  The quantity kind $\\text{Speed of Light}$ is the speed of electomagnetic waves in a given medium.
  """^^qudt:LatexString ;
    qudt:applicableUnit unit:SpeedOfLight ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Speed_of_light"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T-1D0> ;
    qudt:informativeReference "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 ;
    rdfs:comment "Applicable units are those of quantitykind:SpeedOfLight"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    rdfs:seeAlso <http://qudt.org/vocab/constant/MagneticConstant>,
        <http://qudt.org/vocab/constant/PermittivityOfVacuum>,
        <http://qudt.org/vocab/constant/SpeedOfLight_Vacuum> ;
    skos:broader quantitykind:Speed .

quantitykind:StateOfCharge a qudt:QuantityKind ;
    rdfs:label "State of charge"@en ;
    dcterms:description "\"State of Charge\",quantifies the remaining capacity available in a battery at a given time and in relation to a given state of ageing."^^qudt:LatexString ;
    qudt:applicableSIUnit unit:PERCENT ;
    qudt:applicableUnit unit:FRACTION,
        unit:PERCENT ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/State_of_charge"^^xsd:anyURI ;
    qudt:plainTextDescription "\"\"State of Charge\",quantifies the remaining capacity available in a battery at a given time and in relation to a given state of ageing."^^xsd:string ;
    qudt:symbol "SoC"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:StateOfCharge"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:altLabel "Remaining battery energy level"@en ;
    skos:broader quantitykind:DimensionlessRatio .

quantitykind:SuperconductionTransitionTemperature a qudt:QuantityKind ;
    rdfs:label "Superconduction Transition Temperature"@en ;
    dcterms:description "\"Superconduction Transition Temperature\" is the critical thermodynamic temperature of a superconductor."^^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/Superconductivity"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Superconduction Transition Temperature\" is the critical thermodynamic temperature of a superconductor."^^xsd:string ;
    qudt:symbol "T_c"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q106103037> ;
    rdfs:comment "Applicable units are those of quantitykind:Temperature"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader quantitykind:Temperature ;
    skos:closeMatch quantitykind:CurieTemperature,
        quantitykind:NeelTemperature .

quantitykind:SurfaceCoefficientOfHeatTransfer a qudt:QuantityKind ;
    rdfs:label "Surface Coefficient of Heat Transfer"@en ;
    qudt:applicableUnit unit:KiloW-PER-M2-K,
        unit:W-PER-M2-K ;
    qudt:expression "$surface-heat-xfer-coeff$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H-1T-3D0> ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ;
    qudt:latexDefinition "$q = h (T_s - T_r)$, where $T_s$ is areic heat flow rate is the thermodynamic temperature of the surface, and is a reference thermodynamic temperature characteristic of the adjacent surroundings."^^qudt:LatexString ;
    qudt:latexSymbol "$\\alpha$"^^qudt:LatexString ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q74770365> ;
    rdfs:comment "Applicable units are those of quantitykind:SurfaceCoefficientOfHeatTransfer"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:SurfaceRelatedVolumeFlowRate a qudt:QuantityKind ;
    rdfs:label "surface‑related volume flow rate"^^xsd:string ;
    qudt:applicableUnit unit:M3-PER-SEC-M2 ;
    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:comment "Applicable units are those of quantitykind:SurfaceRelatedVolumeFlowRate"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:TemperatureGradient a qudt:QuantityKind ;
    rdfs:label "Temperature Gradient"@en ;
    dcterms:description "The temperature gradient measures the difference of a temperature per length, as for instance used in an external wall or its layers. It is usually measured in K/m."^^qudt:LatexString ;
    qudt:applicableUnit unit:DEG_C-PER-M,
        unit:K-PER-M ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H1T0D0> ;
    qudt:informativeReference "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD1/HTML/link/ifctemperaturegradientmeasure.htm"^^xsd:anyURI ;
    qudt:plainTextDescription "The temperature gradient measures the difference of a temperature per length, as for instance used in an external wall or its layers. It is usually measured in K/m."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:TemperatureGradient"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:TemperatureVariance a qudt:QuantityKind ;
    rdfs:label "Temperature Variance"@en ;
    dcterms:description "Variance for temperature data."^^xsd:string ;
    qudt:applicableUnit unit:DEG_C2 ;
    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 temperature data."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:TemperatureVariance"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:TemporalSummationFunction a qudt:QuantityKind ;
    rdfs:label "Temporal Summation Function"@en ;
    dcterms:description "\"Temporal Summation Function\" is the ability of the human eye to produce a composite signal from the signals coming into an eye during a short time interval."^^qudt:LatexString ;
    qudt:applicableUnit unit:PER-SEC-SR ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Summation_(neurophysiology)#Temporal_summation"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Temporal Summation Function\" is the ability of the human eye to produce a composite signal from the signals coming into an eye during a short time interval."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:TemporalSummationFunction"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:ThermalCapacitance a qudt:QuantityKind ;
    rdfs:label "thermal capacitance"^^xsd:string,
        "thermal capacitance"@en-us ;
    dcterms:description "ratio between the supplied quantity of heat and the temperature range caused by the supplied quantity of heat"@en ;
    qudt:applicableUnit unit:BTU_TH-PER-DEG_F,
        unit:BTU_TH-PER-DEG_R ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H-1T-2D0> ;
    qudt:iec61360Code "0112/2///62720#UAD187"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD187"^^xsd:anyURI ;
    qudt:plainTextDescription "Quotient aus der zugeführten Wärmemenge und der Temperaturänderungen, die durch diese zugeführte Wärmemenge verursacht wird"@de ;
    qudt:symbol "0173-1#Z4-BAJ406#002"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:ThermalCapacitance"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:ThermalInertia a qudt:QuantityKind ;
    rdfs:label "Measurement Unit of Thermal Inertia"^^xsd:string ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-2L2I0M1H-1T-2.5D0> ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Thermal_inertia"^^xsd:anyURI ;
    qudt:plainTextDescription "Thermal inertia is a term used to describe the observed delays in a body's temperature response during heat transfers"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:TimeRatio a qudt:QuantityKind ;
    rdfs:label "Time Ratio"@en ;
    qudt:applicableUnit unit:HR-PER-YR,
        unit:PERCENT ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:qkdvDenominator <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T1D0> ;
    qudt:qkdvNumerator <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T1D0> ;
    rdfs:comment "Applicable units are those of quantitykind:TimeRatio"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader quantitykind:DimensionlessRatio .

quantitykind:TorquePerLength a qudt:QuantityKind ;
    rdfs:label "Torque per Length"@en ;
    qudt:applicableUnit unit:KiloN-M-PER-M,
        unit:N-M-PER-M ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-2D0> ;
    rdfs:comment "Applicable units are those of quantitykind:TorquePerLength"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:TotalAtomicStoppingPower a qudt:QuantityKind ;
    rdfs:label "Total Atomic Stopping Power"@en ;
    dcterms:description "The \"Total Atomic Stopping Power\" for an ionizing particle passing through an element, is the particle's energy loss per atom within a unit area normal to the particle's path; equal to the linear energy transfer (energy loss per unit path length) divided by the number of atoms per unit volume."^^qudt:LatexString ;
    qudt:applicableUnit unit:EV-M2,
        unit:J-M2 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L4I0M1H0T-2D0> ;
    qudt:informativeReference "http://www.answers.com/topic/atomic-stopping-power"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:latexDefinition "$S_a = \\frac{S}{n}$, where $S$ is the total linear stopping power and $n$ is the number density of the atoms in the substance."^^qudt:LatexString ;
    qudt:plainTextDescription "The \"Total Atomic Stopping Power\" for an ionizing particle passing through an element, is the particle's energy loss per atom within a unit area normal to the particle's path; equal to the linear energy transfer (energy loss per unit path length) divided by the number of atoms per unit volume."^^xsd:string ;
    qudt:symbol "S_a"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q112725871> ;
    rdfs:comment "Applicable units are those of quantitykind:TotalAtomicStoppingPower"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:TotalCurrentDensity a qudt:QuantityKind ;
    rdfs:label "Total Current Density"@en ;
    dcterms:description "\"Total Current Density\" is the sum of the electric current density and the displacement current density."^^qudt:LatexString ;
    qudt:applicableUnit unit:A-PER-M2 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L-2I0M0H0T0D0> ;
    qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ;
    qudt:latexDefinition "$J_{tot}= J + J_D$, where $J$ is electric current density and $J_D$ is displacement current density."^^qudt:LatexString ;
    qudt:latexSymbol "$J_{tot}$"^^qudt:LatexString ;
    qudt:plainTextDescription "\"Total Current Density\" is the sum of the electric current density and the displacement current density."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q77680811> ;
    rdfs:comment "Applicable units are those of quantitykind:TotalCurrentDensity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    rdfs:seeAlso quantitykind:DisplacementCurrentDensity,
        quantitykind:ElectricCurrentDensity .

quantitykind:TransmittanceDensity a qudt:QuantityKind ;
    rdfs:label "Transmittance Density"@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:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:latexDefinition "$A_{10}(\\lambda) = -lg(\\tau(\\lambda))$, where $\\tau$ is the transmittance at a given wavelength $\\lambda$."^^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:symbol "A_10, D"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:TransmittanceDensity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:Turns a qudt:QuantityKind ;
    rdfs:label "Turns"@en ;
    dcterms:description "\"Turns\" is the number of turns in a winding."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:plainTextDescription "\"Turns\" is the number of turns in a winding."^^xsd:string ;
    qudt:symbol "N"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Turns"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader quantitykind:Count .

quantitykind:VapourPermeability a qudt:QuantityKind ;
    rdfs:label "Vapour Permeability"@en ;
    dcterms:description "The moisture transmission rate of a material is referred to as its \"permeability\"."^^qudt:LatexString ;
    qudt:applicableUnit unit:KiloGM-PER-PA-SEC-M ;
    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:comment "Applicable units are those of quantitykind:VapourPermeability"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:VolumePerArea a qudt:QuantityKind ;
    rdfs:label "Volume per Unit Area"@en ;
    qudt:applicableUnit unit:M3-PER-HA,
        unit:M3-PER-M2 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    rdfs:comment "Applicable units are those of quantitykind:VolumePerArea"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:VolumetricFlux a qudt:QuantityKind ;
    rdfs:label "Volumetric Flux"@en ;
    dcterms:description "In fluid dynamics, the volumetric flux is the rate of volume flow across a unit area (m3·s−1·m−2).[Wikipedia]"^^qudt:LatexString ;
    qudt:applicableUnit unit:MilliL-PER-CentiM2-MIN,
        unit:MilliL-PER-CentiM2-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T-1D0> ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Volumetric_flux"^^xsd:anyURI ;
    qudt:plainTextDescription "In fluid dynamics, the volumetric flux is the rate of volume flow across a unit area (m3·s−1·m−2).[Wikipedia]"^^xsd:string ;
    qudt:qkdvDenominator <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T0D0> ;
    qudt:qkdvNumerator <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T-1D0> ;
    rdfs:comment "Applicable units are those of quantitykind:VolumetricFlux"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:WarpingConstant a qudt:QuantityKind ;
    rdfs:label "Warping Constant"@en ;
    dcterms:description "The \"Warping Constant\" is a measure for the warping constant or warping resistance of a cross section under torsional loading. It is usually measured in m⁶."^^qudt:LatexString ;
    qudt:applicableUnit unit:CentiM6,
        unit:M6 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L6I0M0H0T0D0> ;
    qudt:informativeReference "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD1/HTML/link/ifcwarpingconstantmeasure.htm"^^xsd:anyURI ;
    qudt:plainTextDescription "The \"Warping Constant\" is a measure for the warping constant or warping resistance of a cross section under torsional loading. It is usually measured in m⁶."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:WarpingConstant"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:WarpingMoment a qudt:QuantityKind ;
    rdfs:label "Warping Moment"@en ;
    dcterms:description "The warping moment measure is a measure for the warping moment, which occurs in warping torsional analysis. It is usually measured in kNm²."^^qudt:LatexString ;
    qudt:applicableUnit unit:KiloN-M2,
        unit:N-M2 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M1H0T-2D0> ;
    qudt:informativeReference "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD1/HTML/link/ifcwarpingmomentmeasure.htm"^^xsd:anyURI ;
    qudt:plainTextDescription "The warping moment measure is a measure for the warping moment, which occurs in warping torsional analysis. It is usually measured in kNm²."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:WarpingMoment"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

unit:A-HR-PER-DeciM3 a qudt:Unit ;
    rdfs:label "Ampere Hour per Cubic Decimetre"^^xsd:string,
        "Ampere Hour per Cubic Decimetre"@en,
        "Ampere Hour per Cubic Decimeter"@en-us ;
    dcterms:description """$\\textit{Ampere Hour per Cubic Decimetre}$ is the product of the SI base unit ampere
 and the unit hour divided by 0.001-fold of the power of the SI base unit metre with
  the exponent 3.
 """^^qudt:LatexString ;
    qudt:conversionMultiplier 3600000.0 ;
    qudt:conversionMultiplierSN 3.6e+06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L-3I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:DeciM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:A ] ;
    qudt:hasQuantityKind quantitykind:ElectricChargeDensity,
        quantitykind:ElectricChargeVolumeDensity ;
    qudt:iec61360Code "0112/2///62720#UAD883"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD883"^^xsd:anyURI ;
    qudt:symbol "A·h/dm³"^^xsd:string ;
    qudt:ucumCode "A.h.dm-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:A-HR-PER-KiloGM a qudt:Unit ;
    rdfs:label "Ampere Hour per Kilogram"^^xsd:string,
        "Ampere Hour per Kilogram"@en ;
    dcterms:description "product of the SI base unit ampere and the unit hour divided by the SI base unit kilogram"^^xsd:string ;
    qudt:conversionMultiplier 3600.0 ;
    qudt:conversionMultiplierSN 3.6e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L0I0M-1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:KiloGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:A ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ] ;
    qudt:hasQuantityKind quantitykind:ElectricChargePerMass ;
    qudt:iec61360Code "0112/2///62720#UAD884"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD884"^^xsd:anyURI ;
    qudt:symbol "A·h/kg"^^xsd:string ;
    qudt:ucumCode "A.h.kg-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:A-HR-PER-M3 a qudt:Unit ;
    rdfs:label "Ampere Hour per Cubic Metre"^^xsd:string,
        "Ampere Hour per Cubic Metre"@en,
        "Ampere Hour per Cubic Meter"@en-us ;
    dcterms:description "product of the SI base unit ampere and the unit hour divided by the power of the SI base unit metre with the exponent 3"^^xsd:string ;
    qudt:conversionMultiplier 3600.0 ;
    qudt:conversionMultiplierSN 3.6e+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:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:A ] ;
    qudt:hasQuantityKind quantitykind:ElectricChargeDensity,
        quantitykind:ElectricChargeVolumeDensity ;
    qudt:iec61360Code "0112/2///62720#UAD882"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD882"^^xsd:anyURI ;
    qudt:symbol "A·h/m³"^^xsd:string ;
    qudt:ucumCode "A.h.m-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:A-M2 a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Ampere Square Metre"^^xsd:string,
        "Ампер Квадратен Метър"@bg,
        "Ampér Čtvereční Metr"@cs,
        "Ampere Quadratmeter"@de,
        "Αμπέρ Τετραγωνικό Μέτρο"@el,
        "Ampere Square Metre"@en,
        "Ampere Square Meter"@en-us,
        "Amperio Metro Cuadrado"@es,
        "Ampère Mètre Carré"@fr,
        "Ampere Metro Quadrato"@it,
        "Amperium Metrum Quadratum"@la,
        "Ampere Meter Persegi"@ms,
        "Amper Metr Kwadratowy"@pl,
        "Ampere Metro Quadrado"@pt,
        "Amper Metru Pătrat"@ro,
        "Ампер Квадратный Метр"@ru,
        "Amper Kvadratni Meter"@sl,
        "Amper Metrekare"@tr ;
    dcterms:description "The SI unit of electromagnetic moment."^^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 "$A-M^2$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L2I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:A ],
        [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind quantitykind:MagneticAreaMoment,
        quantitykind:MagneticMoment ;
    qudt:iec61360Code "0112/2///62720#UAA106"^^xsd:string ;
    qudt:informativeReference "http://encyclopedia2.thefreedictionary.com/ampere+meter+squared"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA106"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:symbol "A·m²"^^xsd:string ;
    qudt:ucumCode "A.m2"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "A5"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q71581529> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:AT-PER-IN a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Ampere Turn per Inch"^^xsd:string,
        "Ampere Turn per Inch"@en ;
    dcterms:description """
  The $\\textit{Ampere Turn per Inch}$ is a measure of magnetic field intensity and is equal to 12.5664 Oersted.
  """^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 39.37007874015748031496062992125984 ;
    qudt:conversionMultiplierSN 3.937008e+01 ;
    qudt:expression "$At/in$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L-1I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:IN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:AT ] ;
    qudt:hasQuantityKind quantitykind:MagneticFieldStrength ;
    qudt:symbol "AT/in"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q30064318> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:AT-PER-M a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Ampere Turn per Metre"^^xsd:string,
        "Ampere Turn per Metre"@en,
        "Ampere Turn per Meter"@en-us ;
    dcterms:description """
  The  $\\textit{Ampere Turn per Metre}$ is the SI unit of magnetic field strength. 
  One ampere per meter is equal to $\\pi/250$ oersteds (12.566 371 millioersteds) in CGS units. 
  The ampere per meter is also the SI unit of "magnetization" in the sense of magnetic dipole moment per unit volume;
   in this context $1 A/m = 0.001 emu per cubic centimeter$.
  """^^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 "$At/m$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L-1I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:AT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind quantitykind:MagneticFieldStrength ;
    qudt:symbol "AT/m"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q30064324> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:A_Ab-CentiM2 a qudt:Unit ;
    rdfs:label "Abampere Square Centimetre"^^xsd:string,
        "Abampere Square Centimetre"@en,
        "Abampere Square Centimeter"@en-us ;
    dcterms:description """
  The unit $\\textit{Abampere Square Centimeter}$ is the unit of magnetic moment in the electromagnetic centimeter-gram-second system.
  """^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU> ;
    qudt:conversionMultiplier 0.001 ;
    qudt:conversionMultiplierSN 1e-03 ;
    qudt:expression "$aAcm2$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L2I0M0H0T0D0> ;
    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 quantitykind:MagneticAreaMoment,
        quantitykind:MagneticMoment ;
    qudt:informativeReference "http://wordinfo.info/unit/4266"^^xsd:anyURI ;
    qudt:symbol "abA·cm²"^^xsd:string ;
    qudt:ucumCode "Bi.cm2"^^qudt:UCUMcs ;
    ns1:todo "Determine type for magnetic moment"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BAN a qudt:Unit ;
    rdfs:label "Ban"^^xsd:string,
        "Ban"@en ;
    dcterms:description """
  A $\\textit{ban}$ is a logarithmic unit which measures information or entropy,
   based on base 10 logarithms and powers of 10, rather than the powers of 2
   and base 2 logarithms which define the bit. 
  One $\\textit{ban}$ is approximately $3.32 (log_2 10) bits$.
  """^^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 2.30258509 ;
    qudt:conversionMultiplierSN 2.302585e+00 ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Ban"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:InformationEntropy ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Ban?oldid=472969907"^^xsd:anyURI ;
    qudt:scalingOf unit:NUM ;
    qudt:symbol "ban"^^xsd:string ;
    qudt:uneceCommonCode "Q15"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q324923> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BAR-PER-DEG_C a qudt:Unit ;
    rdfs:label "Bar per Degree Celsius"^^xsd:string,
        "Bar per Degree Celsius"@en ;
    dcterms:description "unit bar divided by the unit °Celsius"^^xsd:string ;
    qudt:conversionMultiplier 100000.0 ;
    qudt:conversionMultiplierSN 1e+05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H-1T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DEG_C ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:BAR ] ;
    qudt:hasQuantityKind quantitykind:PressureCoefficient ;
    qudt:hasReciprocalUnit unit:DEG_C-PER-BAR ;
    qudt:iec61360Code "0112/2///62720#UAD921"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD921"^^xsd:anyURI ;
    qudt:symbol "bar/°C"^^xsd:string ;
    qudt:ucumCode "bar.Cel-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BAR-PER-K a qudt:Unit ;
    rdfs:label "Bar per Kelvin"^^xsd:string,
        "Bar per Kelvin"@en ;
    dcterms:description "unit with the name bar divided by the SI base unit kelvin"^^rdf:HTML ;
    qudt:conversionMultiplier 100000.0 ;
    qudt:conversionMultiplierSN 1e+05 ;
    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:BAR ] ;
    qudt:hasQuantityKind quantitykind:PressureCoefficient ;
    qudt:hasReciprocalUnit unit:K-PER-BAR ;
    qudt:iec61360Code "0112/2///62720#UAA324"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA324"^^xsd:anyURI ;
    qudt:plainTextDescription "unit with the name bar divided by the SI base unit kelvin"^^xsd:string ;
    qudt:symbol "bar/K"^^xsd:string ;
    qudt:ucumCode "bar.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F81"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BFT a qudt:Unit ;
    rdfs:label "Beaufort"^^xsd:string,
        "Beaufort"@en ;
    dcterms:description "unit for classification of winds according to their speed, developed by Sir Francis Beaufort as measure for the over-all behaviour of a ship's sail at different wind speeds"^^rdf:HTML ;
    qudt:conversionMultiplier 0.0 ;
    qudt:conversionMultiplierSN 0e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T-1D0> ;
    qudt:hasQuantityKind quantitykind:Speed ;
    qudt:iec61360Code "0112/2///62720#UAA110"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA110"^^xsd:anyURI ;
    qudt:plainTextDescription "unit for classification of winds according to their speed, developed by Sir Francis Beaufort as measure for the over-all behaviour of a ship's sail at different wind speeds"^^xsd:string ;
    qudt:symbol "Bft"^^xsd:string ;
    qudt:uneceCommonCode "M19"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BREWSTER a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Brewster"^^xsd:string,
        "Brewster"@en ;
    dcterms:description "The brewster (B) is a non-SI unit used to measure the susceptibility of a material to photoelasticity, or the value of the stress-optic coefficient of the material. The unit has dimensions reciprocal to those of stress. One brewster is defined to be equal to 10^-12 square metres per newton (m^2/N or 1/Pa) or 10^-13 square centimetres per dyne (cm^2/dyn). The unit is named after David Brewster, who discovered stress-induced birefringence in 1816."^^rdf:HTML ;
    qudt:conversionMultiplier 0.000000000001 ;
    qudt:conversionMultiplierSN 1e-12 ;
    qudt:exactMatch unit:NanoM-PER-MilliM-MegaPA ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M-1H0T2D0> ;
    qudt:hasQuantityKind quantitykind:StressOpticCoefficient ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Brewster_(unit)"^^xsd:anyURI ;
    qudt:qkdvDenominator <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-2D0> ;
    qudt:qkdvNumerator <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:scalingOf unit:M2-PER-N ;
    qudt:siUnitsExpression "nm/mm/MPa"^^xsd:string ;
    qudt:symbol "B"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BTU_39DEG_F a qudt:ContextualUnit,
        qudt:Unit ;
    rdfs:label "British Thermal Unit (39 °F)"^^xsd:string,
        "British Thermal Unit (39 °F)"@en ;
    dcterms:description "unit of heat energy according to the Imperial system of units in a reference temperature of 39 °F"^^xsd:string ;
    qudt:conversionMultiplier 1059.67 ;
    qudt:conversionMultiplierSN 1.05967e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:hasQuantityKind quantitykind:ThermalEnergy ;
    qudt:iec61360Code "0112/2///62720#UAB216"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB216"^^xsd:anyURI ;
    qudt:scalingOf unit:J ;
    qudt:symbol "Btu (39 °F)"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BTU_59DEG_F a qudt:ContextualUnit,
        qudt:Unit ;
    rdfs:label "British Thermal Unit (59 °F)"^^xsd:string,
        "British Thermal Unit (59 °F)"@en ;
    dcterms:description "unit of heat energy according to the Imperial system of units in a reference temperature of 59 °F"^^xsd:string ;
    qudt:conversionMultiplier 1054.8 ;
    qudt:conversionMultiplierSN 1.0548e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:hasQuantityKind quantitykind:ThermalEnergy ;
    qudt:iec61360Code "0112/2///62720#UAB217"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB217"^^xsd:anyURI ;
    qudt:scalingOf unit:J ;
    qudt:symbol "Btu (59 °F)"^^xsd:string ;
    qudt:uneceCommonCode "N67"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BTU_60DEG_F a qudt:ContextualUnit,
        qudt:Unit ;
    rdfs:label "British Thermal Unit (60 °F)"^^xsd:string,
        "British Thermal Unit (60 °F)"@en ;
    dcterms:description "unit of head energy according to the Imperial system of units at a reference temperature of 60 °F"^^xsd:string ;
    qudt:conversionMultiplier 1054.68 ;
    qudt:conversionMultiplierSN 1.05468e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:hasQuantityKind quantitykind:ThermalEnergy ;
    qudt:iec61360Code "0112/2///62720#UAB218"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB218"^^xsd:anyURI ;
    qudt:scalingOf unit:J ;
    qudt:symbol "Btu (60 °F)"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BTU_IT-IN-PER-FT2-SEC-DEG_F a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "British Thermal Unit (international Definition) Inch per Square Foot Second Degree Fahrenheit"^^xsd:string,
        "British Thermal Unit (international Definition) Inch per Square Foot Second Degree Fahrenheit"@en ;
    dcterms:description "The unit $BTU_{IT}$, Inch per Square Foot Second Degree Fahrenheit, is an Imperial unit for 'Thermal Conductivity' expressed as $Btu_{it}-in/(ft^{2}-s-degF)$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 519.2203999114173228346456692913385 ;
    qudt:conversionMultiplierSN 5.192204e+02 ;
    qudt:exactMatch unit:BTU_IT-IN-PER-SEC-FT2-DEG_F ;
    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:IN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:BTU_IT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DEG_F ] ;
    qudt:hasQuantityKind quantitykind:ThermalConductivity ;
    qudt:iec61360Code "0112/2///62720#UAA118"^^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%23UAA118"^^xsd:anyURI ;
    qudt:plainTextDescription "British thermal unit (international table) inch per second Square foot degree Fahrenheit is the unit of the thermal conductivity according to the Imperial system of units."^^xsd:string ;
    qudt:symbol "Btu{IT}·in/(ft²·s·°F)"^^xsd:string ;
    qudt:ucumCode "[Btu_IT].[in_i].[ft_i]-2.s-1.[degF]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "J42"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BTU_IT-IN-PER-SEC-FT2-DEG_F a qudt:Unit ;
    rdfs:label "British Thermal Unit (international Definition) Inch per Second Square Foot Degree Fahrenheit"^^xsd:string,
        "British Thermal Unit (international Definition) Inch per Second Square Foot Degree Fahrenheit"@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 519.2203999114173228346456692913385 ;
    qudt:conversionMultiplierSN 5.192204e+02 ;
    qudt:exactMatch unit:BTU_IT-IN-PER-FT2-SEC-DEG_F ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H-1T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:IN ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DEG_F ],
        [ 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 -2 ;
            qudt:hasUnit unit:FT ] ;
    qudt:hasQuantityKind quantitykind:ThermalConductivity ;
    qudt:iec61360Code "0112/2///62720#UAA118"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA118"^^xsd:anyURI ;
    qudt:plainTextDescription "unit of the thermal conductivity according to the Imperial system of units"^^xsd:string ;
    qudt:symbol "Btu{IT}·in/(s·ft²·°F)"^^xsd:string ;
    qudt:ucumCode "[Btu_IT].[in_i].s-1.[ft_i]-2.[degF]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "J42"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BTU_IT-PER-LB-DEG_R a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "British Thermal Unit (international Definition) per Pound Mass Degree Rankine"^^xsd:string,
        "British Thermal Unit (international Definition) per Pound Mass Degree Rankine"@en ;
    dcterms:description "${\\bf BTU \\, per \\, Pound \\, Degree \\, Rankine}$ is a unit for 'Specific Heat Capacity' expressed as $Btu/(lb-degR)$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 4186.799999999999665056000000000027 ;
    qudt:conversionMultiplierSN 4.1868e+03 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/USCS> ;
    qudt:expression "$Btu/(lb-degR)$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H-1T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DEG_R ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:BTU_IT ] ;
    qudt:hasQuantityKind quantitykind:SpecificHeatCapacity ;
    qudt:symbol "Btu{IT}/(lbm·°R)"^^xsd:string ;
    qudt:ucumCode "[Btu_IT].[lb_av]-1.[degR]-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BTU_MEAN a qudt:Unit ;
    rdfs:label "British Thermal Unit (mean)"^^xsd:string,
        "British Thermal Unit (mean)"@en ;
    dcterms:description "unit of the heat energy 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 1055.05585262 ;
    qudt:conversionMultiplierSN 1.055056e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:hasQuantityKind quantitykind:ThermalEnergy ;
    qudt:iec61360Code "0112/2///62720#UAA113"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA113"^^xsd:anyURI ;
    qudt:plainTextDescription "unit of the heat energy according to the Imperial system of units"^^xsd:string ;
    qudt:scalingOf unit:J ;
    qudt:symbol "BTU{mean}"^^xsd:string ;
    qudt:ucumCode "[Btu_m]"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "J39"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q99491447> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BTU_TH-IN-PER-FT2-HR-DEG_F a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "British Thermal Unit (thermochemical Definition) Inch per Square Foot Hour Degree Fahrenheit"^^xsd:string,
        "British Thermal Unit (thermochemical Definition) Inch per Square Foot Hour Degree Fahrenheit"@en ;
    dcterms:description "${\\bf BTU_{th}}$, Inch per Square Foot Hour Degree Fahrenheit, is an Imperial unit for 'Thermal Conductivity' expressed as $Btu-in/(h-ft^{2}-degF)$. A thermochemical British thermal unit inch per second per square foot per degree Fahrenheit is a unit of thermal conductivity in the US Customary Units and British Imperial Units. $1 Btu_{th} \\cdot in/(h \\cdot ft^{2}  \\cdot degF)$ shows that one thermochemical BTU of heat per one hour moves through one square foot of material, which is one foot thick due to a temperature difference of one degree Fahrenheit."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 0.1441314337953849518810148731408574 ;
    qudt:conversionMultiplierSN 1.441314e-01 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:expression "$Btu(th)-in-per-h-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:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:IN ],
        [ 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 quantitykind:ThermalConductivity ;
    qudt:hasReciprocalUnit unit:DEG_F-HR-FT2-PER-BTU_TH-IN ;
    qudt:iec61360Code "0112/2///62720#UAA125"^^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%23UAA125"^^xsd:anyURI ;
    qudt:latexSymbol "$Btu_{th} \\cdot in/(h \\cdot ft^{2}  \\cdot degF)$"^^qudt:LatexString ;
    qudt:plainTextDescription "Unit of thermal conductivity according to the Imperial system of units"^^xsd:string ;
    qudt:symbol "Btu{th}·in/(ft²·h·°F)"^^xsd:string ;
    qudt:ucumCode "[Btu_th].[in_i].[ft_i]-2.h-1.[degF]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "J48"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BYTE-PER-SEC a qudt:Unit ;
    rdfs:label "Byte per Second"^^xsd:string,
        "Byte per Second"@en ;
    dcterms:description "unit byte divided by the SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 5.54517744447956247533785697166544 ;
    qudt:conversionMultiplierSN 5.545177e+00 ;
    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:BYTE ] ;
    qudt:hasQuantityKind quantitykind:ByteRate ;
    qudt:iec61360Code "0112/2///62720#UAB305"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB305"^^xsd:anyURI ;
    qudt:symbol "B/s"^^xsd:string ;
    qudt:ucumCode "By.s-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "P93"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:C-M2 a qudt:Unit ;
    rdfs:label "Coulomb Square Metre"^^xsd:string,
        "Кулон Квадратен Метър"@bg,
        "Coulomb Čtvereční Metr"@cs,
        "Coulomb Quadratmeter"@de,
        "Κουλόμπ Τετραγωνικό Μέτρο"@el,
        "Coulomb Square Metre"@en,
        "Coulomb Square Meter"@en-us,
        "Culombio Metro Cuadrado"@es,
        "کولن متر مربع"@fa,
        "Coulomb Mètre Carré"@fr,
        "Coulomb Metro Quadrato"@it,
        "Coulombium Metrum Quadratum"@la,
        "Coulomb Meter Persegi"@ms,
        "Kulomb Metr Kwadratowy"@pl,
        "Coulomb Metro Quadrado"@pt,
        "Coulomb Metru Pătrat"@ro,
        "Кулон Квадратный Метр"@ru,
        "Coulomb Kvadratni Meter"@sl,
        "Coulomb Metrekare"@tr,
        "库仑平方米"@zh ;
    dcterms:description "Coulomb Square Meter (C-m2) is a unit in the category of Electric quadrupole moment. This unit is commonly used in the SI unit system. Coulomb Square Meter (C-m2) has a dimension of L2TI where $L$ is length, $T$ is time, and $I$ is electric current. This unit is the standard SI unit in this category."^^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 "$C m^{2}$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L2I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:C ] ;
    qudt:hasQuantityKind quantitykind:ElectricQuadrupoleMoment ;
    qudt:symbol "C·m²"^^xsd:string ;
    qudt:ucumCode "C.m2"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:C-PER-M a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Coulomb per Metre"^^xsd:string,
        "Кулон на Метър"@bg,
        "Coulomb na Metr"@cs,
        "Coulomb pro Meter"@de,
        "Κουλόμπ ανά Μέτρο"@el,
        "Coulomb per Metre"@en,
        "Coulomb per Meter"@en-us,
        "Culombio por Metro"@es,
        "Coulomb par Mètre"@fr,
        "Coulomb per Metro"@it,
        "Coulombium per Metrum"@la,
        "Coulomb per Meter"@ms,
        "Kulomb na Metr"@pl,
        "Coulomb por Metro"@pt,
        "Coulomb pe Metru"@ro,
        "Кулон на Метр"@ru,
        "Coulomb na Meter"@sl,
        "Coulomb per Metre"@tr ;
    dcterms:description "\"Coulomb per Meter\" is a unit for  'Electric Charge Line Density' expressed as $C/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 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:derivedCoherentUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:expression "$C/m$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L-1I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:C ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind quantitykind:ElectricChargeLineDensity,
        quantitykind:ElectricChargeLinearDensity ;
    qudt:iec61360Code "0112/2///62720#UAB337"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB337"^^xsd:anyURI ;
    qudt:symbol "C/m"^^xsd:string ;
    qudt:ucumCode "C.m-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "P10"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q80117150> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:C2-M2-PER-J a qudt:Unit ;
    rdfs:label "Square Coulomb Square Metre per Joule"^^xsd:string,
        "Квадратен Кулон Квадратен Метър на Джаул"@bg,
        "Čtvereční Coulomb Čtvereční Metr na Joule"@cs,
        "Quadratcoulomb Quadratmeter pro Joule"@de,
        "Τετραγωνικό Κουλόμπ Τετραγωνικό Μέτρο ανά Τζάουλ"@el,
        "Square Coulomb Square Metre per Joule"@en,
        "Square Coulomb Square Meter per Joule"@en-us,
        "Culombio Cuadrado Metro Cuadrado por Julio"@es,
        "Coulomb Carré Mètre Carré par Joule"@fr,
        "Coulomb Quadrato Metro Quadrato per Joule"@it,
        "Coulombium Quadratum Metrum Quadratum per Joulium"@la,
        "Coulomb Persegi Meter Persegi per Joule"@ms,
        "Kulomb Kwadratowy Metr Kwadratowy na Dżul"@pl,
        "Coulomb Quadrado Metro Quadrado por Joule"@pt,
        "Coulomb Pătrat Metru Pătrat pe Joule"@ro,
        "Квадратный Кулон Квадратный Метр на Джоуль"@ru,
        "Kvadratni Coulomb Kvadratni Meter na Joule"@sl,
        "Coulombkare Metrekare per Joule"@tr ;
    dcterms:description "\"Square Coulomb Square Meter per Joule\" is a unit for  'Polarizability' expressed as $C^{2} m^{2} J^{-1}$."^^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:derivedCoherentUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:expression "$C^{2} m^{2} J^{-1}$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E2L0I0M-1H0T4D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:C ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:J ],
        [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind quantitykind:Polarizability ;
    qudt:symbol "C²·m²/J"^^xsd:string ;
    qudt:ucumCode "C2.m2.J-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:C3-M-PER-J2 a qudt:Unit ;
    rdfs:label "Cubic Coulomb Metre per Square Joule"^^xsd:string,
        "Кубичен Кулон Метър на Квадратен Джаул"@bg,
        "Coulomb Krychlový Metr na Čtvereční Joule"@cs,
        "Kubikcoulomb Meter pro Quadratjoule"@de,
        "Κυβικό Κουλόμπ Μέτρο ανά Τετραγωνικό Τζάουλ"@el,
        "Cubic Coulomb Metre per Square Joule"@en,
        "Cubic Coulomb Meter per Square Joule"@en-us,
        "Culombio Cúbico Metro por Julio Cuadrado"@es,
        "Coulomb Cube Mètre par Joule Carré"@fr,
        "Coulomb Cubo Metro per Joule Quadrato"@it,
        "Coulombium Cubicum Metrum per Joulium Quadratum"@la,
        "Coulomb Kubik Meter per Joule Persegi"@ms,
        "Kulomb Sześcienny Metr na Dżul Kwadratowy"@pl,
        "Coulomb Cúbico Metro por Joule Quadrado"@pt,
        "Coulomb Cub Metru pe Joule Pătrat"@ro,
        "Кубический Кулон Метр на Квадратный Джоуль"@ru,
        "Kubični Coulomb Meter na Kvadratni Joule"@sl,
        "Coulombküp Metre per Joulekare"@tr ;
    dcterms:description "\"Cubic Coulomb Meter per Square Joule\" is a unit for  'Cubic Electric Dipole Moment Per Square Energy' expressed as $C^{3} m^{3} J^{-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:derivedCoherentUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:expression "$C^{3} m J^{-2}$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E3L-3I0M-2H0T7D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:C ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:J ] ;
    qudt:hasQuantityKind quantitykind:CubicElectricDipoleMomentPerSquareEnergy ;
    qudt:symbol "C³·m/J²"^^xsd:string ;
    qudt:ucumCode "C3.m.J-2"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:C4-M4-PER-J3 a qudt:Unit ;
    rdfs:label "Quartic Coulomb Quartic Metre per Cubic Joule"^^xsd:string,
        "Coulomb hoch vier Meter hoch vier pro Kubikjoule"@de,
        "Quartic Coulomb Quartic Metre per Cubic Joule"@en,
        "Quartic Coulomb Quartic Meter per Cubic Joule"@en-us ;
    dcterms:description "\"Quartic Coulomb Meter per Cubic Energy\" is a unit for  'Quartic Electric Dipole Moment Per Cubic Energy' expressed as $C^{4} m^{4} J^{-3}$."^^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:derivedCoherentUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:expression "$C^4m^4/J^3$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E4L-2I0M-3H0T10D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 4 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 4 ;
            qudt:hasUnit unit:C ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:J ] ;
    qudt:hasQuantityKind quantitykind:QuarticElectricDipoleMomentPerCubicEnergy ;
    qudt:symbol "C⁴·m⁴/J³"^^xsd:string ;
    qudt:ucumCode "C4.m4.J-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CAL_20DEG_C a qudt:ContextualUnit,
        qudt:Unit ;
    rdfs:label "Calorie (20 °C)"^^xsd:string,
        "Calorie (20 °C)"@en ;
    dcterms:description "unit for quantity of heat, which is to be required for 1 g air free water at a constant pressure from 101,325 kPa, to warm up the pressure of standard atmosphere at sea level, from 19.5 °C on 20.5 °C"^^xsd:string ;
    qudt:conversionMultiplier 4.1819 ;
    qudt:conversionMultiplierSN 4.1819e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:hasQuantityKind quantitykind:ThermalEnergy ;
    qudt:iec61360Code "0112/2///62720#UAB219"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB219"^^xsd:anyURI,
        "https://physics.nist.gov/cuu/pdf/sp811.pdf"^^xsd:anyURI ;
    qudt:scalingOf unit:J ;
    qudt:symbol "cal₂₀"^^xsd:string ;
    qudt:uneceCommonCode "N69"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CAL_MEAN a qudt:Unit ;
    rdfs:label "Calorie (Mean)"^^xsd:string,
        "Calorie (Mean)"@en ;
    dcterms:description "unit used particularly for calorific values of foods"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 4.19 ;
    qudt:conversionMultiplierSN 4.19e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:hasQuantityKind quantitykind:ThermalEnergy ;
    qudt:iec61360Code "0112/2///62720#UAA360"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA360"^^xsd:anyURI ;
    qudt:plainTextDescription "unit used particularly for calorific values of foods"^^xsd:string ;
    qudt:scalingOf unit:J ;
    qudt:symbol "cal{mean}"^^xsd:string ;
    qudt:ucumCode "cal_m"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "J75"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q93811434> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_AED a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "United Arab Emirates Dirham"^^xsd:string,
        "United Arab Emirates Dirham"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    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:expression "$AED$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/United_Arab_Emirates_dirham?oldid=491806142"^^xsd:anyURI ;
    qudt:symbol "د.إ"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q200294> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_AFN a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Afghani"^^xsd:string,
        "Afghani"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "AFN"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "971"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Afghani"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Afghani?oldid=485904590"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q199471> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_ALL a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Lek"^^xsd:string,
        "Lek"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "ALL"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "008"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Lek"^^xsd:anyURI ;
    qudt:expression "$ALL$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Lek?oldid=495195665"^^xsd:anyURI ;
    qudt:symbol "L"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q125999> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_AMD a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Armenian Dram"^^xsd:string,
        "Armenian Dram"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "AMD"^^xsd:string ;
    qudt:currencyExponent 0 ;
    qudt:currencyNumber "051"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Armenian_dram"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Armenian_dram?oldid=492709723"^^xsd:anyURI ;
    qudt:symbol "֏"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q130498> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_ANG a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Netherlands Antillian Guilder"^^xsd:string,
        "Netherlands Antillian Guilder"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    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:expression "$ANG$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Netherlands_Antillean_guilder?oldid=490030382"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_AOA a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Kwanza"^^xsd:string,
        "Kwanza"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "AOA"^^xsd:string ;
    qudt:currencyExponent 1 ;
    qudt:currencyNumber "973"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Angolan_kwanza"^^xsd:anyURI ;
    qudt:expression "$AOA$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Angolan_kwanza?oldid=491748749"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q200337> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_ARS a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Argentine Peso"^^xsd:string,
        "Argentine Peso"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "ARS"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "032"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Argentine_peso"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Argentine_peso?oldid=491431588"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q199578> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_AUD a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Australian Dollar"^^xsd:string,
        "Australian Dollar"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "AUD"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "036"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Australian_dollar"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind: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 ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q259502> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_AWG a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Aruban Guilder"^^xsd:string,
        "Aruban Guilder"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "AWG"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "533"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Aruban_florin"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Aruban_florin?oldid=492925638"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q232270> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_AZN a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Azerbaijanian Manat"^^xsd:string,
        "Azerbaijanian Manat"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "AZN"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "944"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Azerbaijani_manat"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Azerbaijani_manat?oldid=495479090"^^xsd:anyURI ;
    qudt:symbol "₼"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q483725> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_BAM a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Convertible Marks"^^xsd:string,
        "Convertible Marks"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "BAM"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "977"^^xsd:string ;
    qudt:expression "$BAM$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:symbol "KM"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_BBD a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Barbados Dollar"^^xsd:string,
        "Barbados Dollar"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "BBD"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "052"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Barbadian_dollar"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Barbadian_dollar?oldid=494388633"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q194351> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_BDT a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Bangladeshi Taka"^^xsd:string,
        "Bangladeshi Taka"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "BDT"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "050"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Bangladeshi_taka"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Bangladeshi_taka?oldid=492673895"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q194453> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_BHD a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Bahraini Dinar"^^xsd:string,
        "Bahraini Dinar"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "BHD"^^xsd:string ;
    qudt:currencyExponent 3 ;
    qudt:currencyNumber "048"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Bahraini_dinar"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Bahraini_dinar?oldid=493086643"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q201871> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_BIF a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Burundian Franc"^^xsd:string,
        "Burundian Franc"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "BIF"^^xsd:string ;
    qudt:currencyExponent 0 ;
    qudt:currencyNumber "108"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Burundian_franc"^^xsd:anyURI ;
    qudt:expression "$BIF$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Burundian_franc?oldid=489383699"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q238007> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_BMD a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Bermuda Dollar"^^xsd:string,
        "Bermuda Dollar"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "BMD"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "060"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Bermudian_dollar"^^xsd:anyURI ;
    qudt:expression "$BMD$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Bermudian_dollar?oldid=492670344"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q210478> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_BND a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Brunei Dollar"^^xsd:string,
        "Brunei Dollar"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "BND"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "096"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Brunei_dollar"^^xsd:anyURI ;
    qudt:expression "$BND$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Brunei_dollar?oldid=495134546"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q206319> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_BOB a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Boliviano"^^xsd:string,
        "Boliviano"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "BOB"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "068"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Bolivian_boliviano"^^xsd:anyURI ;
    qudt:expression "$BOB$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Bolivian_boliviano?oldid=494873944"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q200737> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_BOV a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Bolivian Mvdol (funds Code)"^^xsd:string,
        "Bolivian Mvdol (funds Code)"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "BOV"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "984"^^xsd:string ;
    qudt:expression "$BOV$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_BRL a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Brazilian Real"^^xsd:string,
        "Brazilian Real"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "BRL"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "986"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Brazilian_real"^^xsd:anyURI ;
    qudt:expression "$BRL$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind: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 ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q173117> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_BSD a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Bahamian Dollar"^^xsd:string,
        "Bahamian Dollar"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "BSD"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "044"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Bahamian_dollar"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Bahamian_dollar?oldid=492776024"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q194339> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_BTN a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Ngultrum"^^xsd:string,
        "Ngultrum"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "BTN"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "064"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Bhutanese_ngultrum"^^xsd:anyURI ;
    qudt:expression "$BTN$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Bhutanese_ngultrum?oldid=491579260"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q201799> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_BWP a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Pula"^^xsd:string,
        "Pula"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "BWP"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "072"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Pula"^^xsd:anyURI ;
    qudt:expression "$BWP$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Pula?oldid=495207177"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q186794> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_BYN a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Belarussian Ruble"^^xsd:string,
        "Belarussian Ruble"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "BYN"^^xsd:string ;
    qudt:currencyExponent 0 ;
    qudt:currencyNumber "933"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Belarusian_ruble"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Belarusian_ruble?oldid=494143246"^^xsd:anyURI ;
    qudt:symbol "Rbl"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q160680> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_BZD a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Belize Dollar"^^xsd:string,
        "Belize Dollar"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "BZD"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "084"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Belize_dollar"^^xsd:anyURI ;
    qudt:expression "$BZD$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Belize_dollar?oldid=462662376"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q275112> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_CAD a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Canadian Dollar"^^xsd:string,
        "Canadian Dollar"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "CAD"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "124"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Canadian_dollar"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind: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 ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q1104069> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_CDF a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Franc Congolais"^^xsd:string,
        "Franc Congolais"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "CDF"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "976"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Congolese_franc"^^xsd:anyURI ;
    qudt:expression "$CDF$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Congolese_franc?oldid=490314640"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q4734> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_CHE a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Wir Euro (complementary Currency)"^^xsd:string,
        "Wir Euro (complementary Currency)"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "CHE"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "947"^^xsd:string ;
    qudt:expression "$CHE$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_CHF-PER-KiloGM a qudt:Unit ;
    rdfs:label "Swiss Franc per Kilogram"^^xsd:string,
        "Swiss Franc per Kilogram"@en ;
    dcterms:description "The Swiss Francs per kilogram (CHF/kg) is a unit for measuring the hardware cost of substance or material."^^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/A0E0L0I0M-1H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:CCY_CHF ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:KiloGM ] ;
    qudt:hasQuantityKind quantitykind: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:CCY_CHW a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Wir Franc (complementary Currency)"^^xsd:string,
        "Wir Franc (complementary Currency)"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "CHW"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "948"^^xsd:string ;
    qudt:expression "$CHW$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_CLF a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Unidades De Formento (funds Code)"^^xsd:string,
        "Unidades De Formento (funds Code)"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "CLF"^^xsd:string ;
    qudt:currencyExponent 0 ;
    qudt:currencyNumber "990"^^xsd:string ;
    qudt:expression "$CLF$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_CLP a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Chilean Peso"^^xsd:string,
        "Chilean Peso"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "CLP"^^xsd:string ;
    qudt:currencyExponent 0 ;
    qudt:currencyNumber "152"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Chilean_peso"^^xsd:anyURI ;
    qudt:expression "$CLP$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Chilean_peso?oldid=495455481"^^xsd:anyURI ;
    qudt:symbol "$"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q200050> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_CNY a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Yuan Renminbi"^^xsd:string,
        "Yuan Renminbi"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "CNY"^^xsd:string ;
    qudt:currencyExponent 1 ;
    qudt:currencyNumber "156"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Renminbi"^^xsd:anyURI ;
    qudt:expression "$CNY$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind: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/unit> .

unit:CCY_COP a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Colombian Peso"^^xsd:string,
        "Colombian Peso"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "COP"^^xsd:string ;
    qudt:currencyExponent 0 ;
    qudt:currencyNumber "170"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Colombian_peso"^^xsd:anyURI ;
    qudt:expression "$COP$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Colombian_peso?oldid=490834575"^^xsd:anyURI ;
    qudt:symbol "$"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q244819> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_COU a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Unidad De Valor Real"^^xsd:string,
        "Unidad De Valor Real"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "COU"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "970"^^xsd:string ;
    qudt:expression "$COU$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q73016560> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_CRC a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Costa Rican Colon"^^xsd:string,
        "Costa Rican Colon"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    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:expression "$CRC$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind: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/unit> .

unit:CCY_CUP a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Cuban Peso"^^xsd:string,
        "Cuban Peso"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "CUP"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "192"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Cuban_peso"^^xsd:anyURI ;
    qudt:expression "$CUP$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Cuban_peso?oldid=486492974"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q201505> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_CVE a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Cape Verde Escudo"^^xsd:string,
        "Cape Verde Escudo"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    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:expression "$CVE$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Cape_Verdean_escudo?oldid=491416749"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q4591> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_CYP a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Cyprus Pound"^^xsd:string,
        "Cyprus Pound"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "CYP"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "196"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Cypriot_pound"^^xsd:anyURI ;
    qudt:expression "$CYP$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Cypriot_pound?oldid=492644935"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_DJF a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Djibouti Franc"^^xsd:string,
        "Djibouti Franc"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "DJF"^^xsd:string ;
    qudt:currencyExponent 0 ;
    qudt:currencyNumber "262"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Djiboutian_franc"^^xsd:anyURI ;
    qudt:expression "$DJF$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Djiboutian_franc?oldid=486807423"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q4594> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_DOP a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Dominican Peso"^^xsd:string,
        "Dominican Peso"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "DOP"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "214"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Dominican_peso"^^xsd:anyURI ;
    qudt:expression "$DOP$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Dominican_peso?oldid=493950199"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q242922> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_DZD a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Algerian Dinar"^^xsd:string,
        "Algerian Dinar"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "DZD"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "012"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Algerian_dinar"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Algerian_dinar?oldid=492845503"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q199674> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_EEK a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Kroon"^^xsd:string,
        "Kroon"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "EEK"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "233"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Estonian_kroon"^^xsd:anyURI ;
    qudt:expression "$EEK$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Estonian_kroon?oldid=492626188"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q129983> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_EGP a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Egyptian Pound"^^xsd:string,
        "Egyptian Pound"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "EGP"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "818"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Egyptian_pound"^^xsd:anyURI ;
    qudt:expression "$EGP$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Egyptian_pound?oldid=494670285"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q199462> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_ERN a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Nakfa"^^xsd:string,
        "Nakfa"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "ERN"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "232"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Nakfa"^^xsd:anyURI ;
    qudt:expression "$ERN$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Nakfa?oldid=415286274"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q171503> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_ETB a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Ethiopian Birr"^^xsd:string,
        "Ethiopian Birr"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "ETB"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "230"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Ethiopian_birr"^^xsd:anyURI ;
    qudt:expression "$ETB$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Ethiopian_birr?oldid=493373507"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q206243> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_FJD a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Fiji Dollar"^^xsd:string,
        "Fiji Dollar"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "FJD"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "242"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Fijian_dollar"^^xsd:anyURI ;
    qudt:expression "$FJD$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Fijian_dollar?oldid=494373740"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_FKP a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Falkland Islands Pound"^^xsd:string,
        "Falkland Islands Pound"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    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:expression "$FKP$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Falkland_Islands_pound?oldid=489513616"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q330044> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_GEL a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Lari"^^xsd:string,
        "Lari"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "GEL"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "981"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Lari"^^xsd:anyURI ;
    qudt:expression "$GEL$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Lari?oldid=486808394"^^xsd:anyURI ;
    qudt:symbol "₾"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q4608> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_GHS a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Cedi"^^xsd:string,
        "Cedi"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "GHS"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "936"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Ghanaian_cedi"^^xsd:anyURI ;
    qudt:expression "$GHS$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Ghanaian_cedi?oldid=415914569"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q183530> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_GIP a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Gibraltar Pound"^^xsd:string,
        "Gibraltar Pound"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "GIP"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "292"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Gibraltar_pound"^^xsd:anyURI ;
    qudt:expression "$GIP$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Gibraltar_pound?oldid=494842600"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q41429> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_GMD a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Dalasi"^^xsd:string,
        "Dalasi"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "GMD"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "270"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Gambian_dalasi"^^xsd:anyURI ;
    qudt:expression "$GMD$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Gambian_dalasi?oldid=489522429"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q202885> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_GNF a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Guinea Franc"^^xsd:string,
        "Guinea Franc"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "GNF"^^xsd:string ;
    qudt:currencyExponent 0 ;
    qudt:currencyNumber "324"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Guinean_franc"^^xsd:anyURI ;
    qudt:expression "$GNF$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Guinean_franc?oldid=489527042"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q213311> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_GTQ a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Quetzal"^^xsd:string,
        "Quetzal"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "GTQ"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "320"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Quetzal"^^xsd:anyURI ;
    qudt:expression "$GTQ$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Quetzal?oldid=489813522"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q207396> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_GYD a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Guyana Dollar"^^xsd:string,
        "Guyana Dollar"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "GYD"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "328"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Guyanese_dollar"^^xsd:anyURI ;
    qudt:expression "$GYD$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Guyanese_dollar?oldid=495070062"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q213005> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_HKD a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Hong Kong Dollar"^^xsd:string,
        "Hong Kong Dollar"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    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:expression "$HKD$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind: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 ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q31015> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_HNL a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Lempira"^^xsd:string,
        "Lempira"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "HNL"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "340"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Lempira"^^xsd:anyURI ;
    qudt:expression "$HNL$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Lempira?oldid=389955747"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q4719> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_HRK a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Croatian Kuna"^^xsd:string,
        "Croatian Kuna"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "HRK"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "191"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Croatian_kuna"^^xsd:anyURI ;
    qudt:expression "$HRK$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Croatian_kuna?oldid=490959527"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q26360> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_HTG a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Haiti Gourde"^^xsd:string,
        "Haiti Gourde"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "HTG"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "332"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Haitian_gourde"^^xsd:anyURI ;
    qudt:expression "$HTG$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Haitian_gourde?oldid=486090975"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_IDR a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Rupiah"^^xsd:string,
        "Rupiah"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "IDR"^^xsd:string ;
    qudt:currencyExponent 0 ;
    qudt:currencyNumber "360"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Indonesian_rupiah"^^xsd:anyURI ;
    qudt:expression "$IDR$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Indonesian_rupiah?oldid=489729458"^^xsd:anyURI ;
    qudt:symbol "Rp"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q41588> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_ILS a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "New Israeli Shekel"^^xsd:string,
        "New Israeli Shekel"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    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:expression "$ILS$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind: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/unit> .

unit:CCY_INR a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Indian Rupee"^^xsd:string,
        "Indian Rupee"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "INR"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "356"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Indian_rupee"^^xsd:anyURI ;
    qudt:expression "$INR$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind: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 ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q80524> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_IQD a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Iraqi Dinar"^^xsd:string,
        "Iraqi Dinar"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "IQD"^^xsd:string ;
    qudt:currencyExponent 0 ;
    qudt:currencyNumber "368"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Iraqi_dinar"^^xsd:anyURI ;
    qudt:expression "$IQD$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Iraqi_dinar?oldid=494793908"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q193094> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_IRR a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Iranian Rial"^^xsd:string,
        "Iranian Rial"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "IRR"^^xsd:string ;
    qudt:currencyExponent 0 ;
    qudt:currencyNumber "364"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Iranian_rial"^^xsd:anyURI ;
    qudt:expression "$IRR$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Iranian_rial?oldid=495299431"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q188608> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_ISK a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Iceland Krona"^^xsd:string,
        "Iceland Krona"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    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:expression "$ISK$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Icelandic_króna?oldid=495457496"^^xsd:anyURI ;
    qudt:symbol "kr"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q131473> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_JMD a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Jamaican Dollar"^^xsd:string,
        "Jamaican Dollar"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "JMD"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "388"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Jamaican_dollar"^^xsd:anyURI ;
    qudt:expression "$JMD$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Jamaican_dollar?oldid=494039981"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q209792> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_JOD a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Jordanian Dinar"^^xsd:string,
        "Jordanian Dinar"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "JOD"^^xsd:string ;
    qudt:currencyExponent 3 ;
    qudt:currencyNumber "400"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Jordanian_dinar"^^xsd:anyURI ;
    qudt:expression "$JOD$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Jordanian_dinar?oldid=495270728"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q203722> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_JPY a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Japanese Yen"^^xsd:string,
        "Japanese Yen"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "JPY"^^xsd:string ;
    qudt:currencyExponent 0 ;
    qudt:currencyNumber "392"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Japanese_yen"^^xsd:anyURI ;
    qudt:expression "$JPY$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind: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 ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q8146> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_KES a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Kenyan Shilling"^^xsd:string,
        "Kenyan Shilling"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "KES"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "404"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Kenyan_shilling"^^xsd:anyURI ;
    qudt:expression "$KES$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Kenyan_shilling?oldid=489547027"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q202882> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_KGS a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Som"^^xsd:string,
        "Som"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "KGS"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "417"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Som"^^xsd:anyURI ;
    qudt:expression "$KGS$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Som?oldid=495411674"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q35881> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_KHR a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Riel"^^xsd:string,
        "Riel"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "KHR"^^xsd:string ;
    qudt:currencyExponent 0 ;
    qudt:currencyNumber "116"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Riel"^^xsd:anyURI ;
    qudt:expression "$KHR$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Riel?oldid=473309240"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q204737> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_KMF a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Comoro Franc"^^xsd:string,
        "Comoro Franc"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "KMF"^^xsd:string ;
    qudt:currencyExponent 0 ;
    qudt:currencyNumber "174"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Comorian_franc"^^xsd:anyURI ;
    qudt:expression "$KMF$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Comorian_franc?oldid=489502162"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_KPW a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "North Korean Won"^^xsd:string,
        "North Korean Won"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    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:expression "$KPW$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/North_Korean_won?oldid=495081686"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q106720> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_KRW a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "South Korean Won"^^xsd:string,
        "South Korean Won"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    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:expression "$KRW$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind: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 ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q202040> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_KWD a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Kuwaiti Dinar"^^xsd:string,
        "Kuwaiti Dinar"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "KWD"^^xsd:string ;
    qudt:currencyExponent 3 ;
    qudt:currencyNumber "414"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Kuwaiti_dinar"^^xsd:anyURI ;
    qudt:expression "$KWD$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Kuwaiti_dinar?oldid=489547428"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q193098> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_KYD a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Cayman Islands Dollar"^^xsd:string,
        "Cayman Islands Dollar"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    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:expression "$KYD$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Cayman_Islands_dollar?oldid=494206112"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q319885> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_KZT a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Tenge"^^xsd:string,
        "Tenge"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "KZT"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "398"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Kazakhstani_tenge"^^xsd:anyURI ;
    qudt:expression "$KZT$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Kazakhstani_tenge?oldid=490523058"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_LAK a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Lao Kip"^^xsd:string,
        "Lao Kip"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "LAK"^^xsd:string ;
    qudt:currencyExponent 0 ;
    qudt:currencyNumber "418"^^xsd:string ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:symbol " ₭"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q200055> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_LBP a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Lebanese Pound"^^xsd:string,
        "Lebanese Pound"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "LBP"^^xsd:string ;
    qudt:currencyExponent 0 ;
    qudt:currencyNumber "422"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Lebanese_pound"^^xsd:anyURI ;
    qudt:expression "$LBP$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Lebanese_pound?oldid=495528740"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q201880> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_LKR a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Sri Lanka Rupee"^^xsd:string,
        "Sri Lanka Rupee"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    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:expression "$LKR$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Sri_Lankan_rupee?oldid=495359963"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q4596> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_LRD a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Liberian Dollar"^^xsd:string,
        "Liberian Dollar"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "LRD"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "430"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Liberian_dollar"^^xsd:anyURI ;
    qudt:expression "$LRD$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Liberian_dollar?oldid=489549110"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q242988> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_LSL a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Loti"^^xsd:string,
        "Loti"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "LSL"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "426"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Loti"^^xsd:anyURI ;
    qudt:expression "$LSL$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Loti?oldid=384534708"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q208039> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_LTL a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Lithuanian Litas"^^xsd:string,
        "Lithuanian Litas"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "LTL"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "440"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Lithuanian_litas"^^xsd:anyURI ;
    qudt:expression "$LTL$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Lithuanian_litas?oldid=493046592"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q25627> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_LVL a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Latvian Lats"^^xsd:string,
        "Latvian Lats"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "LVL"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "428"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Latvian_lats"^^xsd:anyURI ;
    qudt:expression "$LVL$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Latvian_lats?oldid=492800402"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q133011> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_LYD a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Libyan Dinar"^^xsd:string,
        "Libyan Dinar"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "LYD"^^xsd:string ;
    qudt:currencyExponent 3 ;
    qudt:currencyNumber "434"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Libyan_dinar"^^xsd:anyURI ;
    qudt:expression "$LYD$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Libyan_dinar?oldid=491421981"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q190699> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_MAD a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Moroccan Dirham"^^xsd:string,
        "Moroccan Dirham"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "MAD"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "504"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Moroccan_dirham"^^xsd:anyURI ;
    qudt:expression "$MAD$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Moroccan_dirham?oldid=490560557"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q200192> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_MDL a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Moldovan Leu"^^xsd:string,
        "Moldovan Leu"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "MDL"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "498"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Moldovan_leu"^^xsd:anyURI ;
    qudt:expression "$MDL$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Moldovan_leu?oldid=490027766"^^xsd:anyURI ;
    qudt:symbol "L"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q181129> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_MGA a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Malagasy Ariary"^^xsd:string,
        "Malagasy Ariary"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "MGA"^^xsd:string ;
    qudt:currencyExponent 0 ;
    qudt:currencyNumber "969"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Malagasy_ariary"^^xsd:anyURI ;
    qudt:expression "$MGA$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Malagasy_ariary?oldid=489551279"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q4584> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_MKD a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Denar"^^xsd:string,
        "Denar"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "MKD"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "807"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Macedonian_denar"^^xsd:anyURI ;
    qudt:expression "$MKD$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Macedonian_denar?oldid=489550202"^^xsd:anyURI ;
    qudt:symbol "ден"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q177875> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_MMK a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Kyat"^^xsd:string,
        "Kyat"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "MMK"^^xsd:string ;
    qudt:currencyExponent 0 ;
    qudt:currencyNumber "104"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Myanma_kyat"^^xsd:anyURI ;
    qudt:expression "$MMK$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Myanma_kyat?oldid=441109905"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q201875> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_MNT a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Mongolian Tugrik"^^xsd:string,
        "Mongolian Tugrik"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyExponent 2 ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Mongolian_t%C3%B6gr%C3%B6g"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Mongolian_tögrög?oldid=495408271"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q183435> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_MOP a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Pataca"^^xsd:string,
        "Pataca"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "MOP"^^xsd:string ;
    qudt:currencyExponent 1 ;
    qudt:currencyNumber "446"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Pataca"^^xsd:anyURI ;
    qudt:expression "$MOP$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Pataca?oldid=482490442"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q241214> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_MRU a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Ouguiya"^^xsd:string,
        "Ouguiya"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "MRU"^^xsd:string ;
    qudt:currencyExponent 0 ;
    qudt:currencyNumber "929"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Mauritanian_ouguiya"^^xsd:anyURI ;
    qudt:expression "$MRO$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Mauritanian_ouguiya?oldid=490027072"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_MTL a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Maltese Lira"^^xsd:string,
        "Maltese Lira"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "MTL"^^xsd:string ;
    qudt:currencyNumber "470"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Maltese_lira"^^xsd:anyURI ;
    qudt:expression "$MTL$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Maltese_lira?oldid=493810797"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q174467> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_MUR a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Mauritius Rupee"^^xsd:string,
        "Mauritius Rupee"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "MUR"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "480"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Mauritian_rupee"^^xsd:anyURI ;
    qudt:expression "$MUR$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Mauritian_rupee?oldid=487629200"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q212967> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_MVR a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Rufiyaa"^^xsd:string,
        "Rufiyaa"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "MVR"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "462"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Maldivian_rufiyaa"^^xsd:anyURI ;
    qudt:expression "$MVR$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Maldivian_rufiyaa?oldid=491578728"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q206600> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_MWK a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Malawi Kwacha"^^xsd:string,
        "Malawi Kwacha"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "MWK"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "454"^^xsd:string ;
    qudt:expression "$MWK$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q211694> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_MXN a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Mexican Peso"^^xsd:string,
        "Mexican Peso"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "MXN"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "484"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Mexican_peso"^^xsd:anyURI ;
    qudt:expression "$MXN$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind: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 ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q4730> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_MXV a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Mexican Unidad De Inversion (udi) (funds Code)"^^xsd:string,
        "Mexican Unidad De Inversion (udi) (funds Code)"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "MXV"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "979"^^xsd:string ;
    qudt:expression "$MXV$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_MYR a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Malaysian Ringgit"^^xsd:string,
        "Malaysian Ringgit"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "MYR"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "458"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Malaysian_ringgit"^^xsd:anyURI ;
    qudt:expression "$MYR$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Malaysian_ringgit?oldid=494417091"^^xsd:anyURI ;
    qudt:symbol "RM"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q163712> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_MZN a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Metical"^^xsd:string,
        "Metical"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "MZN"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "943"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Mozambican_metical"^^xsd:anyURI ;
    qudt:expression "$MZN$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Mozambican_metical?oldid=488225670"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q200753> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_NAD a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Namibian Dollar"^^xsd:string,
        "Namibian Dollar"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "NAD"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "516"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Namibian_dollar"^^xsd:anyURI ;
    qudt:expression "$NAD$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Namibian_dollar?oldid=495250023"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q202462> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_NGN a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Naira"^^xsd:string,
        "Naira"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "NGN"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "566"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Nigerian_naira"^^xsd:anyURI ;
    qudt:expression "$NGN$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Nigerian_naira?oldid=493462003"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q203567> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_NIO a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Cordoba Oro"^^xsd:string,
        "Cordoba Oro"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    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:expression "$NIO$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Nicaraguan_córdoba?oldid=486140595"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_NPR a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Nepalese Rupee"^^xsd:string,
        "Nepalese Rupee"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "NPR"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "524"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Nepalese_rupee"^^xsd:anyURI ;
    qudt:expression "$NPR$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Nepalese_rupee?oldid=476894226"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q202895> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_NZD a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "New Zealand Dollar"^^xsd:string,
        "New Zealand Dollar"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    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:expression "$NZD$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind: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 ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q1472704> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_OMR a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Rial Omani"^^xsd:string,
        "Rial Omani"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "OMR"^^xsd:string ;
    qudt:currencyExponent 3 ;
    qudt:currencyNumber "512"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Omani_rial"^^xsd:anyURI ;
    qudt:expression "$OMR$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Omani_rial?oldid=491748879"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q272290> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_PAB a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Balboa"^^xsd:string,
        "Balboa"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "PAB"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "590"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Balboa"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Balboa?oldid=482550791"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q210472> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_PEN a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Nuevo Sol"^^xsd:string,
        "Nuevo Sol"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    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:expression "$PEN$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Peruvian_nuevo_sol?oldid=494237249"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q204656> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_PGK a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Kina"^^xsd:string,
        "Kina"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "PGK"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "598"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Kina"^^xsd:anyURI ;
    qudt:expression "$PGK$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Kina?oldid=477155361"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q200759> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_PHP a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Philippine Peso"^^xsd:string,
        "Philippine Peso"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "PHP"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "608"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Philippine_peso"^^xsd:anyURI ;
    qudt:expression "$PHP$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Philippine_peso?oldid=495411811"^^xsd:anyURI ;
    qudt:symbol "₱"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q17193> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_PKR a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Pakistan Rupee"^^xsd:string,
        "Pakistan Rupee"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "PKR"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "586"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Pakistani_rupee"^^xsd:anyURI ;
    qudt:expression "$PKR$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Pakistani_rupee?oldid=494937873"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q188289> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_PYG a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Guarani"^^xsd:string,
        "Guarani"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    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:expression "$PYG$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Guaraní?oldid=412592698"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q207514> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_QAR a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Qatari Rial"^^xsd:string,
        "Qatari Rial"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "QAR"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "634"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Qatari_riyal"^^xsd:anyURI ;
    qudt:expression "$QAR$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Qatari_riyal?oldid=491747452"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q206386> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_RSD a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Serbian Dinar"^^xsd:string,
        "Serbian Dinar"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "RSD"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "941"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Serbian_dinar"^^xsd:anyURI ;
    qudt:expression "$RSD$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Serbian_dinar?oldid=495146650"^^xsd:anyURI ;
    qudt:symbol "дин"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q172524> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_RUB a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Russian Ruble"^^xsd:string,
        "Russian Ruble"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "RUB"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "643"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Russian_ruble"^^xsd:anyURI ;
    qudt:expression "$RUB$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Russian_ruble?oldid=494336467"^^xsd:anyURI ;
    qudt:symbol "₽"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q41044> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_RWF a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Rwanda Franc"^^xsd:string,
        "Rwanda Franc"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "RWF"^^xsd:string ;
    qudt:currencyExponent 0 ;
    qudt:currencyNumber "646"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Rwandan_franc"^^xsd:anyURI ;
    qudt:expression "$RWF$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Rwandan_franc?oldid=489727903"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_SAR a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Saudi Riyal"^^xsd:string,
        "Saudi Riyal"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "SAR"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "682"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Saudi_riyal"^^xsd:anyURI ;
    qudt:expression "$SAR$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Saudi_riyal?oldid=491092981"^^xsd:anyURI ;
    qudt:symbol "﷼"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q199857> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_SBD a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Solomon Islands Dollar"^^xsd:string,
        "Solomon Islands Dollar"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    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:expression "$SBD$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Solomon_Islands_dollar?oldid=490313285"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q4597> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_SCR a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Seychelles Rupee"^^xsd:string,
        "Seychelles Rupee"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "SCR"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "690"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Seychellois_rupee"^^xsd:anyURI ;
    qudt:expression "$SCR$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Seychellois_rupee?oldid=492242185"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_SDG a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Sudanese Pound"^^xsd:string,
        "Sudanese Pound"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "SDG"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "938"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Sudanese_pound"^^xsd:anyURI ;
    qudt:expression "$SDG$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Sudanese_pound?oldid=495263707"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q271206> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_SGD a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Singapore Dollar"^^xsd:string,
        "Singapore Dollar"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "SGD"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "702"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Singapore_dollar"^^xsd:anyURI ;
    qudt:expression "$SGD$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind: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 ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q190951> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_SHP a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Saint Helena Pound"^^xsd:string,
        "Saint Helena Pound"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    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:expression "$SHP$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Saint_Helena_pound?oldid=490152057"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q374453> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_SKK a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Slovak Koruna"^^xsd:string,
        "Slovak Koruna"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "SKK"^^xsd:string ;
    qudt:currencyNumber "703"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Slovak_koruna"^^xsd:anyURI ;
    qudt:expression "$SKK$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Slovak_koruna?oldid=492625951"^^xsd:anyURI ;
    qudt:symbol "Sk"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q178874> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_SLE a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Leone"^^xsd:string,
        "Leone"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    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:expression "$SLL$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Sierra_Leonean_leone?oldid=493517965"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q4587> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_SOS a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Somali Shilling"^^xsd:string,
        "Somali Shilling"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "SOS"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "706"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Somali_shilling"^^xsd:anyURI ;
    qudt:expression "$SOS$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Somali_shilling?oldid=494434126"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q4603> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_SRD a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Surinam Dollar"^^xsd:string,
        "Surinam Dollar"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "SRD"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "968"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Surinamese_dollar"^^xsd:anyURI ;
    qudt:expression "$SRD$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Surinamese_dollar?oldid=490316270"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q202036> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_STN a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Dobra"^^xsd:string,
        "Dobra"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "STN"^^xsd:string ;
    qudt:currencyExponent 0 ;
    qudt:currencyNumber "930"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Dobra"^^xsd:anyURI ;
    qudt:expression "$STD$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Dobra?oldid=475725328"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_SYP a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Syrian Pound"^^xsd:string,
        "Syrian Pound"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "SYP"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "760"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Syrian_pound"^^xsd:anyURI ;
    qudt:expression "$SYP$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Syrian_pound?oldid=484294722"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q240468> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_SZL a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Lilangeni"^^xsd:string,
        "Lilangeni"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "SZL"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "748"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Swazi_lilangeni"^^xsd:anyURI ;
    qudt:expression "$SZL$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Swazi_lilangeni?oldid=490323340"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q4823> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_THB a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Baht"^^xsd:string,
        "Baht"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "THB"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "764"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Thai_baht"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Thai_baht?oldid=493286022"^^xsd:anyURI ;
    qudt:symbol "฿"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q177882> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_TJS a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Somoni"^^xsd:string,
        "Somoni"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "TJS"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "972"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Tajikistani_somoni"^^xsd:anyURI ;
    qudt:expression "$TJS$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Tajikistani_somoni?oldid=492500781"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q199886> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_TMT a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Manat"^^xsd:string,
        "Manat"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "TMT"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "934"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Manat"^^xsd:anyURI ;
    qudt:expression "$TMM$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Manat?oldid=486967490"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q12826616> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_TND a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Tunisian Dinar"^^xsd:string,
        "Tunisian Dinar"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "TND"^^xsd:string ;
    qudt:currencyExponent 3 ;
    qudt:currencyNumber "788"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Tunisian_dinar"^^xsd:anyURI ;
    qudt:expression "$TND$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Tunisian_dinar?oldid=491218035"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q4602> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_TOP a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Pa'anga"^^xsd:string,
        "Pa'anga"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    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:expression "$TOP$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Tongan_paʻanga?oldid=482738012"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_TRY a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "New Turkish Lira"^^xsd:string,
        "New Turkish Lira"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "TRY"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "949"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Turkish_lira"^^xsd:anyURI ;
    qudt:expression "$TRY$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Turkish_lira?oldid=494097764"^^xsd:anyURI ;
    qudt:symbol "₺"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q14961002> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_TTD a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Trinidad and Tobago Dollar"^^xsd:string,
        "Trinidad and Tobago Dollar"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    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:expression "$TTD$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Trinidad_and_Tobago_dollar?oldid=490325306"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q242890> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_TWD a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "New Taiwan Dollar"^^xsd:string,
        "New Taiwan Dollar"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    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:expression "$TWD$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/New_Taiwan_dollar?oldid=493996933"^^xsd:anyURI ;
    qudt:symbol "$"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q208526> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_TZS a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Tanzanian Shilling"^^xsd:string,
        "Tanzanian Shilling"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "TZS"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "834"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Tanzanian_shilling"^^xsd:anyURI ;
    qudt:expression "$TZS$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Tanzanian_shilling?oldid=492257527"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q4589> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_UAH a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Hryvnia"^^xsd:string,
        "Hryvnia"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "UAH"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "980"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Ukrainian_hryvnia"^^xsd:anyURI ;
    qudt:expression "$UAH$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Ukrainian_hryvnia?oldid=493064633"^^xsd:anyURI ;
    qudt:symbol "₴"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q81893> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_UGX a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Uganda Shilling"^^xsd:string,
        "Uganda Shilling"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "UGX"^^xsd:string ;
    qudt:currencyExponent 0 ;
    qudt:currencyNumber "800"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Ugandan_shilling"^^xsd:anyURI ;
    qudt:expression "$UGX$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Ugandan_shilling?oldid=495383966"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q4598> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_USN a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "United States Dollar (next Day) (funds Code)"^^xsd:string,
        "United States Dollar (next Day) (funds Code)"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "USN"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "997"^^xsd:string ;
    qudt:expression "$USN$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_USS a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "United States Dollar (same Day) (funds Code)"^^xsd:string,
        "United States Dollar (same Day) (funds Code)"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "USS"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "998"^^xsd:string ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_UYU a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Peso Uruguayo"^^xsd:string,
        "Peso Uruguayo"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "UYU"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "858"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Uruguayan_peso"^^xsd:anyURI ;
    qudt:expression "$UYU$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Uruguayan_peso?oldid=487528781"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_UZS a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Uzbekistan Som"^^xsd:string,
        "Uzbekistan Som"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "UZS"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "860"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Uzbekistani_som"^^xsd:anyURI ;
    qudt:expression "$UZS$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Uzbekistani_som?oldid=490522228"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q487888> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_VES a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Venezuelan Bolvar"^^xsd:string,
        "Venezuelan Bolvar"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "VES"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "928"^^xsd:string ;
    qudt:expression "$VEB$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q203757> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_VND a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Vietnamese ??ng"^^xsd:string,
        "Vietnamese ??ng"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "VND"^^xsd:string ;
    qudt:currencyExponent 0 ;
    qudt:currencyNumber "704"^^xsd:string ;
    qudt:expression "$VND$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q192090> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_VUV a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Vatu"^^xsd:string,
        "Vatu"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "VUV"^^xsd:string ;
    qudt:currencyExponent 0 ;
    qudt:currencyNumber "548"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Vanuatu_vatu"^^xsd:anyURI ;
    qudt:expression "$VUV$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Vanuatu_vatu?oldid=494667103"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_WST a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Samoan Tala"^^xsd:string,
        "Samoan Tala"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "WST"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "882"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Samoan_tala"^^xsd:anyURI ;
    qudt:expression "$WST$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Samoan_tala?oldid=423898531"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_XAF a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Cfa Franc Beac"^^xsd:string,
        "Cfa Franc Beac"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "XAF"^^xsd:string ;
    qudt:currencyExponent 0 ;
    qudt:currencyNumber "950"^^xsd:string ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q847739> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_XAG a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Silver (one Troy Ounce)"^^xsd:string,
        "Silver (one Troy Ounce)"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "XAG"^^xsd:string ;
    qudt:currencyNumber "961"^^xsd:string ;
    qudt:expression "$XAG$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:ucumCode "[oz_tr]{Ag}"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_XAU a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Gold (one Troy Ounce)"^^xsd:string,
        "Gold (one Troy Ounce)"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "XAU"^^xsd:string ;
    qudt:currencyNumber "959"^^xsd:string ;
    qudt:expression "$XAU$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:ucumCode "[oz_tr]{Au}"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_XBA a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "European Composite Unit (eurco) (bonds Market Unit)"^^xsd:string,
        "European Composite Unit (eurco) (bonds Market Unit)"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "XBA"^^xsd:string ;
    qudt:currencyNumber "955"^^xsd:string ;
    qudt:expression "$XBA$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_XBB a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "European Monetary Unit (e.m.u.-6) (bonds Market Unit)"^^xsd:string,
        "European Monetary Unit (e.m.u.-6) (bonds Market Unit)"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "XBB"^^xsd:string ;
    qudt:currencyNumber "956"^^xsd:string ;
    qudt:expression "$XBB$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_XBC a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "European Unit of Account 9 (e.u.a.-9) (bonds Market Unit)"^^xsd:string,
        "European Unit of Account 9 (e.u.a.-9) (bonds Market Unit)"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "XBC"^^xsd:string ;
    qudt:currencyNumber "957"^^xsd:string ;
    qudt:expression "$XBC$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_XBD a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "European Unit of Account 17 (e.u.a.-17) (bonds Market Unit)"^^xsd:string,
        "European Unit of Account 17 (e.u.a.-17) (bonds Market Unit)"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "XBD"^^xsd:string ;
    qudt:currencyNumber "958"^^xsd:string ;
    qudt:expression "$XBD$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_XCD a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "East Caribbean Dollar"^^xsd:string,
        "East Caribbean Dollar"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    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:expression "$XCD$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/East_Caribbean_dollar?oldid=493020176"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q26365> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_XDR a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Special Drawing Rights"^^xsd:string,
        "Special Drawing Rights"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "XDR"^^xsd:string ;
    qudt:currencyNumber "960"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Special_Drawing_Rights"^^xsd:anyURI ;
    qudt:expression "$XDR$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Special_Drawing_Rights?oldid=467224374"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q363958> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_XFO a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Gold Franc (special Settlement Currency)"^^xsd:string,
        "Gold Franc (special Settlement Currency)"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "XFO"^^xsd:string ;
    qudt:expression "$XFO$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_XFU a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Uic Franc (special Settlement Currency)"^^xsd:string,
        "Uic Franc (special Settlement Currency)"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "XFU"^^xsd:string ;
    qudt:expression "$XFU$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_XOF a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Cfa Franc Bceao"^^xsd:string,
        "Cfa Franc Bceao"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "XOF"^^xsd:string ;
    qudt:currencyExponent 0 ;
    qudt:currencyNumber "952"^^xsd:string ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q861690> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_XPD a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Palladium (one Troy Ounce)"^^xsd:string,
        "Palladium (one Troy Ounce)"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "XPD"^^xsd:string ;
    qudt:currencyNumber "964"^^xsd:string ;
    qudt:expression "$XPD$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:ucumCode "[oz_tr]{Pd}"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_XPF a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Cfp Franc"^^xsd:string,
        "Cfp Franc"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "XPF"^^xsd:string ;
    qudt:currencyExponent 0 ;
    qudt:currencyNumber "953"^^xsd:string ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q214393> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_XPT a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Platinum (one Troy Ounce)"^^xsd:string,
        "Platinum (one Troy Ounce)"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "XPT"^^xsd:string ;
    qudt:currencyNumber "962"^^xsd:string ;
    qudt:expression "$XPT$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:ucumCode "[oz_tr]{Pt}"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_YER a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Yemeni Rial"^^xsd:string,
        "Yemeni Rial"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "YER"^^xsd:string ;
    qudt:currencyExponent 0 ;
    qudt:currencyNumber "886"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Yemeni_rial"^^xsd:anyURI ;
    qudt:expression "$YER$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Yemeni_rial?oldid=494507603"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q240512> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_ZAR a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "South African Rand"^^xsd:string,
        "South African Rand"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    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:expression "$ZAR$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind: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 ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q181907> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_ZMW a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Zambian Kwacha"^^xsd:string,
        "Zambian Kwacha"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "ZMW"^^xsd:string ;
    qudt:currencyExponent 0 ;
    qudt:currencyNumber "967"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Zambian_kwacha"^^xsd:anyURI ;
    qudt:expression "$ZMK$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Zambian_kwacha?oldid=490328608"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q73408> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_ZWL a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Zimbabwe Dollar"^^xsd:string,
        "Zimbabwe Dollar"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "ZWL"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "932"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Zimbabwean_dollar"^^xsd:anyURI ;
    qudt:expression "$ZWD$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Zimbabwean_dollar?oldid=491532675"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q182803> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CD_IN a qudt:Unit ;
    rdfs:label "International Candle"^^xsd:string,
        "International Candle"@en ;
    dcterms:description "obsolete, non-legal unit of the power in Germany relating to DIN 1301-3:1979"^^xsd:string ;
    qudt:conversionMultiplier 0.92 ;
    qudt:conversionMultiplierSN 9.2e-01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I1M0H0T0D0> ;
    qudt:hasQuantityKind quantitykind:LuminousIntensity ;
    qudt:iec61360Code "0112/2///62720#UAB440"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB440"^^xsd:anyURI ;
    qudt:scalingOf unit:CD ;
    qudt:symbol "international candle"^^xsd:string ;
    qudt:uneceCommonCode "P36"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> ;
    rdfs:seeAlso unit:HK .

unit:CUP a qudt:Unit ;
    rdfs:label "Us Liquid Cup"^^xsd:string,
        "Us Liquid Cup"@en ;
    dcterms:description "\"US Liquid Cup\" is a unit for  'Liquid Volume' expressed as $cup$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 0.00023658825 ;
    qudt:conversionMultiplierSN 2.365883e-04 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/USCS> ;
    qudt:exactMatch unit:CUP_US ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T0D0> ;
    qudt:hasQuantityKind quantitykind:LiquidVolume ;
    qudt:scalingOf unit:M3 ;
    qudt:symbol "cup"^^xsd:string ;
    qudt:ucumCode "[cup_us]"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G21"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CUP_US a qudt:Unit ;
    rdfs:label "Cup (US)"^^xsd:string,
        "Cup (US)"@en ;
    dcterms:description "unit of the volume according to the Anglo-American system of units"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 0.00023658825 ;
    qudt:conversionMultiplierSN 2.365883e-04 ;
    qudt:exactMatch unit:CUP ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T0D0> ;
    qudt:hasQuantityKind quantitykind:LiquidVolume ;
    qudt:iec61360Code "0112/2///62720#UAA404"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA404"^^xsd:anyURI ;
    qudt:plainTextDescription "unit of the volume according to the Anglo-American system of units"^^xsd:string ;
    qudt:scalingOf unit:M3 ;
    qudt:symbol "cup{US}"^^xsd:string ;
    qudt:ucumCode "[cup_us]"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G21"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q105816269> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CentiGRAY a qudt:Unit ;
    rdfs:label "Centigray"^^xsd:string,
        "Centigray"@cs,
        "Centigray"@de,
        "Centigray"@en,
        "Centigray"@es,
        "Centigray"@fr,
        "Centigray"@hu,
        "Centigray"@it,
        "Centigray"@ms,
        "Centigrej"@pl,
        "Centigray"@ro,
        "Centigray"@sl,
        "Centigray"@tr ;
    dcterms:description "0.01-fold of the unit gray"^^xsd:string ;
    qudt:conversionMultiplier 0.01 ;
    qudt:conversionMultiplierSN 1e-02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T-2D0> ;
    qudt:hasQuantityKind quantitykind:AbsorbedDose,
        quantitykind:Kerma ;
    qudt:iec61360Code "0112/2///62720#UAB503"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB503"^^xsd:anyURI ;
    qudt:prefix <http://qudt.org/vocab/prefix/Centi> ;
    qudt:scalingOf unit:GRAY ;
    qudt:symbol "cGy"^^xsd:string ;
    qudt:ucumCode "cGy"^^qudt:UCUMcs ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q94733760> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CentiM2-PER-ERG a qudt:Unit ;
    rdfs:label "Square Centimetre per Erg"^^xsd:string,
        "Square Centimetre per Erg"@en,
        "Square Centimeter per Erg"@en-us ;
    dcterms:description "[CGS] unit of the spectral 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 -1 ;
            qudt:hasUnit unit:ERG ],
        [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:CentiM ] ;
    qudt:hasQuantityKind quantitykind:SpectralCrossSection ;
    qudt:hasReciprocalUnit unit:ERG-PER-CentiM2 ;
    qudt:iec61360Code "0112/2///62720#UAB168"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB168"^^xsd:anyURI ;
    qudt:symbol "cm²/erg"^^xsd:string ;
    qudt:ucumCode "cm2.erg-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "D16"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CentiM2-PER-V-SEC a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Square Centimetre per Volt Second"^^xsd:string,
        "Čtvereční Centimetr na Volt Sekunda"@cs,
        "Quadratcentimeter pro Volt Sekunde"@de,
        "Square Centimetre per Volt Second"@en,
        "Square Centimeter per Volt Second"@en-us,
        "Centimetro Cuadrado por Voltio Segundo"@es,
        "Centimètre Carré par Volt Seconde"@fr,
        "Centimetro Quadrato per Volt Secondo"@it,
        "Centimeter Persegi per Volt Saat"@ms,
        "Centimetr Kwadratowy na Wolt Sekunda"@pl,
        "Centimetru Pătrat pe Volt Secundă"@ro,
        "Kvadratni Centimeter na Volt Sekunda"@sl,
        "Centimetrekare per Volt Saniye"@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 0.0001 ;
    qudt:conversionMultiplierSN 1e-04 ;
    qudt:expression "$cm^2/V-s$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L0I0M-1H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:V ],
        [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:CentiM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind quantitykind:Mobility ;
    qudt:symbol "cm²/(V·s)"^^xsd:string ;
    qudt:ucumCode "cm2.V-1.s-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CentiM3-PER-MOL a qudt:Unit ;
    rdfs:label "Cubic Centimetre per Mole"^^xsd:string,
        "Centimetr Krychlový na Mol"@cs,
        "Kubikcentimeter pro Mol"@de,
        "Cubic Centimetre per Mole"@en,
        "Cubic Centimeter per Mole"@en-us,
        "Centimetro Cúbico por Mol"@es,
        "Centimètre Cube par Mole"@fr,
        "Centimetro Cubo per Mole"@it,
        "Centimeter Kubik per Mole"@ms,
        "Centimetr Sześcienny na Mol"@pl,
        "Centimetru Cub pe Mol"@ro,
        "Kubični Centimeter na Mol"@sl,
        "Centimetreküp per Mol"@tr ;
    dcterms:description "0.000001-fold of the power of the SI base unit metre with the exponent 3 divided by the SI base unit mol"^^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/A-1E0L3I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:CentiM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MOL ] ;
    qudt:hasQuantityKind quantitykind:MolarRefractivity,
        quantitykind:MolarVolume ;
    qudt:iec61360Code "0112/2///62720#UAA398"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA398"^^xsd:anyURI ;
    qudt:plainTextDescription "0.000 001-fold of the power of the SI base unit metre with the exponent 3 divided by the SI base unit mol"^^xsd:string ;
    qudt:symbol "cm³/mol"^^xsd:string ;
    qudt:ucumCode "cm3.mol-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "A36"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q24008537> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CentiM3-PER-MOL-SEC a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Cubic Centimetre per Mole Second"^^xsd:string,
        "Centimetr Krychlový na Mol Sekunda"@cs,
        "Kubikcentimeter pro Mol Sekunde"@de,
        "Cubic Centimetre per Mole Second"@en,
        "Cubic Centimeter per Mole Second"@en-us,
        "Centimetro Cúbico por Mol Segundo"@es,
        "Centimètre Cube par Mole Seconde"@fr,
        "Centimetro Cubo per Mole Secondo"@it,
        "Centimeter Kubik per Mole Saat"@ms,
        "Centimetr Sześcienny na Mol Sekunda"@pl,
        "Centimetru Cub pe Mol Secundă"@ro,
        "Kubični Centimeter na Mol Sekunda"@sl,
        "Centimetreküp per Mol Saniye"@tr ;
    dcterms:description "A unit that is the 0.000001-fold of the power of the SI base unit metre with the exponent 3 divided by the SI base unit mol multiplied by the SI base unit second."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.000001 ;
    qudt:conversionMultiplierSN 1e-06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A-1E0L3I0M0H0T-1D0> ;
    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:MOL ] ;
    qudt:hasQuantityKind quantitykind:AtmosphericHydroxylationRate,
        quantitykind:SecondOrderReactionRateConstant ;
    qudt:symbol "cm³/(mol·s)"^^xsd:string ;
    qudt:ucumCode "cm3.mol-1.s-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DARCY a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Darcy"^^xsd:string,
        "Darcy"@en ;
    dcterms:description "<p>The $darcy$ (d) 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 darcy has dimensional units of length<sup>2</sup>."^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.0000000000009869233 ;
    qudt:conversionMultiplierSN 9.869233e-13 ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Darcy_(unit)"^^xsd:anyURI ;
    qudt:expression "$d$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T0D0> ;
    qudt:hasQuantityKind quantitykind:HydraulicPermeability ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Darcy_(unit)"^^xsd:anyURI ;
    qudt:plainTextDescription "The darcy (d) 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 darcy has dimensional units of length²."^^xsd:string ;
    qudt:scalingOf unit:M2 ;
    qudt:symbol "d"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q1165725> ;
    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 ;
    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:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L1I0M0H0T1D0> ;
    qudt:hasQuantityKind quantitykind: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 ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DEG_C-DAY a qudt:Unit ;
    rdfs:label "Degree Celsius Day"^^xsd:string,
        "Degree Celsius Day"@en ;
    dcterms:description "A unit of measurement that represents the difference between a reference temperature (typically 18°C) and the actual outdoor temperature over one day, used to estimate heating or cooling energy needs for buildings."@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 86400.0 ;
    qudt:conversionMultiplierSN 8.64e+04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H1T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:DEG_C ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:DAY ] ;
    qudt:hasQuantityKind quantitykind:TimeTemperature ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Degree_day"^^xsd:anyURI ;
    qudt:symbol "°C·d"^^xsd:string ;
    qudt:ucumCode "Cel.d"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DEG_C-HR a qudt:Unit ;
    rdfs:label "Degree Celsius Hour"^^xsd:string,
        "Degree Celsius Hour"@en ;
    dcterms:description "A unit of measurement that represents the difference between a reference temperature (typically 18°C) and the actual outdoor temperature over one hour, used to estimate heating or cooling energy needs for buildings."@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 3600.0 ;
    qudt:conversionMultiplierSN 3.6e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H1T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:DEG_C ] ;
    qudt:hasQuantityKind quantitykind:TimeTemperature ;
    qudt:symbol "°C·h"^^xsd:string ;
    qudt:ucumCode "Cel.h"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DEG_C-PER-BAR a qudt:Unit ;
    rdfs:label "Degree Celsius per Bar"^^xsd:string,
        "Degree Celsius per Bar"@en ;
    dcterms:description "unit with the name °Celsius divided by the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.00001 ;
    qudt:conversionMultiplierSN 1e-05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M-1H1T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:DEG_C ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ] ;
    qudt:hasQuantityKind quantitykind:Unknown ;
    qudt:hasReciprocalUnit unit:BAR-PER-DEG_C ;
    qudt:iec61360Code "0112/2///62720#UAA035"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA035"^^xsd:anyURI ;
    qudt:symbol "°C/bar"^^xsd:string ;
    qudt:ucumCode "Cel.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F60"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DEG_C-PER-HR a qudt:Unit ;
    rdfs:label "Degree Celsius per Hour"^^xsd:string,
        "Degree Celsius per Hour"@en ;
    dcterms:description "$\\textit{Degree Celsius per Hour}$ is a unit for 'Temperature Per Time' expressed as $degC / h$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.0002777777777777777777777777777777778 ;
    qudt:conversionMultiplierSN 2.777778e-04 ;
    qudt:expression "$degC / h$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H1T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:DEG_C ] ;
    qudt:hasQuantityKind quantitykind:TemperaturePerTime ;
    qudt:iec61360Code "0112/2///62720#UAA036"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA036"^^xsd:anyURI ;
    qudt:symbol "°C/h"^^xsd:string ;
    qudt:ucumCode "Cel.h-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "H12"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DEG_C-PER-MIN a qudt:Unit ;
    rdfs:label "Degree Celsius per Minute"^^xsd:string,
        "Degree Celsius per Minute"@en ;
    dcterms:description "$\\textit{Degree Celsius per Minute}$ is a unit for 'Temperature Per Time' expressed as $degC / m$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.01666666666666666666666666666666667 ;
    qudt:conversionMultiplierSN 1.666667e-02 ;
    qudt:expression "$degC / m$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H1T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:DEG_C ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MIN ] ;
    qudt:hasQuantityKind quantitykind:TemperaturePerTime ;
    qudt:iec61360Code "0112/2///62720#UAA037"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA037"^^xsd:anyURI ;
    qudt:symbol "°C/min"^^xsd:string ;
    qudt:ucumCode "Cel.min-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "H13"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DEG_C-PER-SEC a qudt:Unit ;
    rdfs:label "Degree Celsius per Second"^^xsd:string,
        "Градус Целзий на Секунда"@bg,
        "Stupně Celsia na Sekunda"@cs,
        "Grad Celsius pro Sekunde"@de,
        "Βαθμός Κελσίου ανά Δευτερόλεπτο"@el,
        "Degree Celsius per Second"@en,
        "Grado Celsius por Segundo"@es,
        "Degré Celsius par Seconde"@fr,
        "Grado Celsius per Secondo"@it,
        "Gradus Celsii per Secundum"@la,
        "Darjah Celsius per Saat"@ms,
        "Stopień Celsjusza na Sekunda"@pl,
        "Grau Celsius por Segundo"@pt,
        "Grad Celsius pe Secundă"@ro,
        "Градус Цельсия на Секунда"@ru,
        "Stopinja Celzija na Sekunda"@sl,
        "Celsius per Saniye"@tr ;
    dcterms:description "$\\textit{Degree Celsius per Second}$ is a unit for 'Temperature Per Time' expressed as $degC / s$."^^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 "$degC / s$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H1T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:DEG_C ] ;
    qudt:hasQuantityKind quantitykind:TemperaturePerTime ;
    qudt:iec61360Code "0112/2///62720#UAA038"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA038"^^xsd:anyURI ;
    qudt:symbol "°C/s"^^xsd:string ;
    qudt:ucumCode "Cel.s-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "H14"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DEG_C-PER-YR a qudt:Unit ;
    rdfs:label "Degree Celsius per Year"^^xsd:string,
        "Degree Celsius per Year"@en ;
    dcterms:description "A rate of change of temperature expressed on the Celsius scale over a period of an average calendar year (365.25 days)."@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.00000003168808781402895023702689684893655 ;
    qudt:conversionMultiplierSN 3.168809e-08 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H1T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:YR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:DEG_C ] ;
    qudt:hasQuantityKind quantitykind:TemperaturePerTime ;
    qudt:symbol "°C/a"^^xsd:string ;
    qudt:ucumCode "Cel.a-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DEG_C-WK a qudt:Unit ;
    rdfs:label "Degree Celsius Week"^^xsd:string,
        "Degree Celsius Week"@en ;
    dcterms:description "temperature multiplied by unit of time."@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 604800.0 ;
    qudt:conversionMultiplierSN 6.048e+05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H1T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:WK ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:DEG_C ] ;
    qudt:hasQuantityKind quantitykind:TimeTemperature ;
    qudt:symbol "°C·wk"^^xsd:string ;
    qudt:ucumCode "Cel.wk"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DEG_F-DAY a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Degree Fahrenheit Day"^^xsd:string,
        "Degree Fahrenheit Day"@en ;
    dcterms:description "A unit of measurement that represents the difference between a reference temperature (typically 65°C) and the actual outdoor temperature over one day, used to estimate heating or cooling energy needs for buildings."@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 48000.0 ;
    qudt:conversionMultiplierSN 4.8e+04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H1T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:DAY ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:DEG_F ] ;
    qudt:hasQuantityKind quantitykind:TimeTemperature ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Degree_day"^^xsd:anyURI ;
    qudt:symbol "°F·d"^^xsd:string ;
    qudt:ucumCode "[degF].d"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DEG_F-HR a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Degree Fahrenheit Hour"^^xsd:string,
        "Degree Fahrenheit Hour"@en ;
    dcterms:description "A unit of measurement that represents the difference between a reference temperature (typically 65°C) and the actual outdoor temperature over one hour, used to estimate heating or cooling energy needs for buildings."@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 2000.0 ;
    qudt:conversionMultiplierSN 2e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H1T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:DEG_F ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ] ;
    qudt:hasQuantityKind quantitykind:TimeTemperature ;
    qudt:symbol "°F·h"^^xsd:string ;
    qudt:ucumCode "[degF].h"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DEG_F-HR-FT2-PER-BTU_TH a qudt:Unit ;
    rdfs:label "Degree Fahrenheit Hour Square Foot per British Thermal Unit (thermochemical Definition)"^^xsd:string,
        "Degree Fahrenheit Hour Square Foot per British Thermal Unit (thermochemical Definition)"@en ;
    dcterms:description "unit of the thermal resistor according to the 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 0.1762280394439072102115454062182767 ;
    qudt:conversionMultiplierSN 1.76228e-01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M-1H1T3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BTU_TH ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:DEG_F ] ;
    qudt:hasQuantityKind quantitykind:ThermalInsulance ;
    qudt:hasReciprocalUnit unit:BTU_TH-PER-HR-FT2-DEG_F ;
    qudt:iec61360Code "0112/2///62720#UAA040"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA040"^^xsd:anyURI ;
    qudt:plainTextDescription "unit of the thermal resistor according to the according to the Imperial system of units"^^xsd:string ;
    qudt:symbol "°F·h·ft²/Btu{th}"^^xsd:string ;
    qudt:ucumCode "[degF].h.[ft_i]2.[Btu_th]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "J19"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DEG_F-HR-FT2-PER-BTU_TH-IN a qudt:Unit ;
    rdfs:label "Degree Fahrenheit Hour Square Foot per British Thermal Unit (thermochemical Definition) Inch"^^xsd:string,
        "Degree Fahrenheit Hour Square Foot per British Thermal Unit (thermochemical Definition) Inch"@en ;
    dcterms:description "unit of specific thermal resistance according to the Imperial system of units"^^xsd:string ;
    qudt:conversionMultiplier 6.938111789130205126438795520404595 ;
    qudt:conversionMultiplierSN 6.938112e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M-1H1T3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:FT ],
        [ 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:IN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ] ;
    qudt:hasQuantityKind quantitykind:ThermalResistivity ;
    qudt:hasReciprocalUnit unit:BTU_TH-IN-PER-FT2-HR-DEG_F ;
    qudt:iec61360Code "0112/2///62720#UAB253"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB253"^^xsd:anyURI ;
    qudt:symbol "°F·h·ft²/(Btu{th}·in)"^^xsd:string ;
    qudt:ucumCode "[degF].h.[ft_i]2.[Btu_th]-1.[in_i]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "N89"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DEG_F-PER-HR a qudt:Unit ;
    rdfs:label "Degree Fahrenheit per Hour"^^xsd:string,
        "Degree Fahrenheit per Hour"@en ;
    dcterms:description "$\\textit{Degree Fahrenheit per Hour}$ is a unit for 'Temperature Per Time' expressed as $degF / h$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 0.000154320987654320987654320987654321 ;
    qudt:conversionMultiplierSN 1.54321e-04 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:expression "$degF / h$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H1T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:DEG_F ] ;
    qudt:hasQuantityKind quantitykind:TemperaturePerTime ;
    qudt:iec61360Code "0112/2///62720#UAA044"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA044"^^xsd:anyURI ;
    qudt:symbol "°F/h"^^xsd:string ;
    qudt:ucumCode "[degF].h-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "J23"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DEG_F-PER-MIN a qudt:Unit ;
    rdfs:label "Degree Fahrenheit per Minute"^^xsd:string,
        "Degree Fahrenheit per Minute"@en ;
    dcterms:description "$\\textit{Degree Fahrenheit per Minute}$ is a unit for 'Temperature Per Time' expressed as $degF / m$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 0.009259259259259259259259259259259262 ;
    qudt:conversionMultiplierSN 9.259259e-03 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:expression "$degF / m$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H1T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MIN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:DEG_F ] ;
    qudt:hasQuantityKind quantitykind:TemperaturePerTime ;
    qudt:iec61360Code "0112/2///62720#UAA045"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA045"^^xsd:anyURI ;
    qudt:symbol "°F/min"^^xsd:string ;
    qudt:ucumCode "[degF].min-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "J24"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DEG_F-PER-SEC a qudt:Unit ;
    rdfs:label "Degree Fahrenheit per Second"^^xsd:string,
        "Degree Fahrenheit per Second"@en ;
    dcterms:description "$\\textit{Degree Fahrenheit per Second}$ is a unit for 'Temperature Per Time' expressed as $degF / s$."^^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$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H1T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:DEG_F ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind quantitykind:TemperaturePerTime ;
    qudt:iec61360Code "0112/2///62720#UAA046"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA046"^^xsd:anyURI ;
    qudt:symbol "°F/s"^^xsd:string ;
    qudt:ucumCode "[degF].s-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "J25"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DEG_R-PER-HR a qudt:Unit ;
    rdfs:label "Degree Rankine per Hour"^^xsd:string,
        "Degree Rankine per Hour"@en ;
    dcterms:description """
  The unit $\\textit{Degree Rankine per Hour}$ is a rate of change of temperature measured in degree Rankine in periods of one hour.
  """^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS> ;
    qudt:conversionMultiplier 0.000154320987654321 ;
    qudt:conversionMultiplierSN 1.54321e-04 ;
    qudt:expression "$degR / h$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H1T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:DEG_R ] ;
    qudt:hasQuantityKind quantitykind:TemperaturePerTime ;
    qudt:iec61360Code "0112/2///62720#UAA051"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA051"^^xsd:anyURI ;
    qudt:symbol "°R/h"^^xsd:string ;
    qudt:ucumCode "[degR].h-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "J28"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DEG_R-PER-MIN a qudt:Unit ;
    rdfs:label "Degree Rankine per Minute"^^xsd:string,
        "Degree Rankine per Minute"@en ;
    dcterms:description """
  The unit $\\textit{Degree Rankine per Minute}$ is a rate of change of temperature measured in degree Rankine in periods of one minute.
  """^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS> ;
    qudt:conversionMultiplier 0.009259259259259260000000000000000002 ;
    qudt:conversionMultiplierSN 9.259259e-03 ;
    qudt:expression "$degR / m$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H1T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MIN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:DEG_R ] ;
    qudt:hasQuantityKind quantitykind:TemperaturePerTime ;
    qudt:iec61360Code "0112/2///62720#UAA052"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA052"^^xsd:anyURI ;
    qudt:symbol "°R/min"^^xsd:string ;
    qudt:ucumCode "[degR].min-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "J29"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DEG_R-PER-SEC a qudt:Unit ;
    rdfs:label "Degree Rankine per Second"^^xsd:string,
        "Degree Rankine per Second"@en ;
    dcterms:description """
  The unit $\\textit{Degree Rankine per Second}$ is a rate of change of temperature measured in degree Rankine in periods of one second.
  """^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS> ;
    qudt:conversionMultiplier 0.5555555555555556 ;
    qudt:conversionMultiplierSN 5.555556e-01 ;
    qudt:expression "$degR / s$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H1T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:DEG_R ] ;
    qudt:hasQuantityKind quantitykind:TemperaturePerTime ;
    qudt:iec61360Code "0112/2///62720#UAA053"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA053"^^xsd:anyURI ;
    qudt:symbol "°R/s"^^xsd:string ;
    qudt:ucumCode "[degR].s-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "J30"^^xsd:string ;
    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 ;
    qudt:conversionMultiplier 0.00000011 ;
    qudt:conversionMultiplierSN 1.1e-07 ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Denier"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T0D0> ;
    qudt:hasQuantityKind quantitykind: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 ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q98492214> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DPI a qudt:ContextualUnit,
        qudt:Unit ;
    rdfs:label "Dots per Inch"^^xsd:string,
        "Dots per Inch"@en ;
    dcterms:description "point density as amount of the picture base element 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/A0E0L-1I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:ONE ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:IN ] ;
    qudt:hasQuantityKind quantitykind:DotsPerInch,
        quantitykind:LineicResolution ;
    qudt:iec61360Code "0112/2///62720#UAA421"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA421"^^xsd:anyURI ;
    qudt:plainTextDescription "point density as amount of the picture base element divided by the unit inch according to the Anglo-American and the Imperial system of units"^^xsd:string ;
    qudt:symbol "DPI"^^xsd:string ;
    qudt:ucumCode "{dot}/[in_i]"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "E39"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q305896> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DYN-SEC-PER-CentiM3 a qudt:Unit ;
    rdfs:label "Dyne Second per Cubic Centimetre"^^xsd:string,
        "Dyne Second per Cubic Centimetre"@en,
        "Dyne Second per Cubic Centimeter"@en-us ;
    dcterms:description "CGS unit of the acoustic image impedance of the medium"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-GAUSS> ;
    qudt:conversionMultiplier 10.0 ;
    qudt:conversionMultiplierSN 1e+01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:DYN ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:CentiM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind quantitykind:MassPerAreaTime ;
    qudt:iec61360Code "0112/2///62720#UAB102"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB102"^^xsd:anyURI ;
    qudt:plainTextDescription "CGS unit of the acoustic image impedance of the medium"^^xsd:string ;
    qudt:symbol "dyn·s/cm³"^^xsd:string ;
    qudt:ucumCode "dyn.s.cm-3"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "A50"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DecaPOISE a qudt:Unit ;
    rdfs:label "Decapoise"^^xsd:string,
        "Dekapoise"@de,
        "Decapoise"@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-GAUSS> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-1D0> ;
    qudt:hasQuantityKind quantitykind:DynamicViscosity,
        quantitykind:Viscosity ;
    qudt:plainTextDescription "10-fold of the CGS unit of the dynamic viscosity poise"^^xsd:string ;
    qudt:prefix <http://qudt.org/vocab/prefix/Deca> ;
    qudt:scalingOf unit:POISE ;
    qudt:symbol "daP"^^xsd:string ;
    qudt:ucumCode "daP"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:ENZ a qudt:Unit ;
    rdfs:label "Enzyme Unit"^^xsd:string,
        "Enzyme Unit"@en ;
    dcterms:description "unit to express the catalytic activity of a specified chemical reaction"^^xsd:string ;
    qudt:conversionMultiplier 0.000000016667 ;
    qudt:conversionMultiplierSN 1.6667e-08 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L0I0M0H0T-1D0> ;
    qudt:hasQuantityKind quantitykind:CatalyticActivity ;
    qudt:iec61360Code "0112/2///62720#UAB600"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB600"^^xsd:anyURI ;
    qudt:scalingOf unit:KAT ;
    qudt:symbol "U"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:ERLANG a qudt:Unit ;
    rdfs:label "Erlang"^^xsd:string,
        "Erlang"@en ;
    dcterms:description "The \"Erlang\" is a dimensionless unit that is used in telephony as a measure of offered load or carried load on service-providing elements such as telephone circuits or telephone switching equipment."^^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 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Erlang_(unit)"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:InformationEntropy ;
    qudt:iec61360Code "0112/2///62720#UAB340"^^xsd:string ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Erlang_(unit)"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB340"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31898"^^xsd:anyURI ;
    qudt:symbol "E"^^xsd:string ;
    qudt:uneceCommonCode "Q11"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q225888> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:EV-PER-K a qudt:Unit ;
    rdfs:label "Electron Volt per Kelvin"^^xsd:string,
        "Electron Volt per Kelvin"@en ;
    dcterms:description "$\\textit{Electron Volt per Kelvin}$ is a unit for 'Heat Capacity' expressed as $ev/K$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.0000000000000000001602176634 ;
    qudt:conversionMultiplierSN 1.602177e-19 ;
    qudt:expression "$ev/K$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H-1T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:EV ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ] ;
    qudt:hasQuantityKind quantitykind:HeatCapacity ;
    qudt:symbol "eV/K"^^xsd:string ;
    qudt:ucumCode "eV.K-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:ExaBYTE a qudt:CountingUnit,
        qudt:Unit ;
    rdfs:label "Exabyte"^^xsd:string,
        "Exabyte"@en ;
    dcterms:description "The exabyte is a multiple of the unit byte for digital information. The prefix exa means 10^18 in the International System of Units (SI), so ExaByte is 10^18 Bytes."^^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 5545177444479562475.33785697166544 ;
    qudt:conversionMultiplierSN 5.545177e+18 ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Exabyte"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:InformationEntropy ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Byte#Multiple-byte_units"^^xsd:anyURI ;
    qudt:prefix <http://qudt.org/vocab/prefix/Exa> ;
    qudt:scalingOf unit:BYTE ;
    qudt:symbol "EB"^^xsd:string ;
    qudt:ucumCode "EBy"^^qudt:UCUMcs ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q79745> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:ExaVA a qudt:Unit ;
    rdfs:label "Exa Volt Ampere"^^xsd:string,
        "Exavoltampere"@de,
        "Exa Volt Ampere"@en,
        "Exavoltiamperio"@es,
        "Exavoltampère"@fr,
        "Exa Volt Ampere"@it ;
    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 ;
    qudt:conversionMultiplier 1000000000000000000.0 ;
    qudt:conversionMultiplierSN 1e+18 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-3D0> ;
    qudt:hasQuantityKind quantitykind: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:prefix <http://qudt.org/vocab/prefix/Exa> ;
    qudt:scalingOf unit:VA ;
    qudt:symbol "EVA"^^xsd:string ;
    qudt:ucumCode "EVA"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:ExbiBYTE a qudt:CountingUnit,
        qudt:Unit ;
    rdfs:label "Exbibyte"^^xsd:string,
        "Exbibyte"@en ;
    dcterms:description "The exbibyte is a multiple of the unit byte for digital information. The prefix exbi means 1024^6"^^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 847976878121765354.5564583782058176 ;
    qudt:conversionMultiplierSN 8.479769e+17 ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Exbibyte"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:InformationEntropy ;
    qudt:iec61360Code "0112/2///62720#UAA143"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA143"^^xsd:anyURI,
        "https://en.wikipedia.org/wiki/Byte#Multiple-byte_units"^^xsd:anyURI ;
    qudt:prefix <http://qudt.org/vocab/prefix/Exbi> ;
    qudt:scalingOf unit:BYTE ;
    qudt:symbol "EiB"^^xsd:string ;
    qudt:uneceCommonCode "E59"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q79777> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:FARAD_Ab a qudt:Unit ;
    rdfs:label "Abfarad"^^xsd:string,
        "Abfarad"@en ;
    dcterms:description "An abfarad is an obsolete electromagnetic (CGS) unit of capacitance equal to $10^{9}$ farads (1,000,000,000 F or 1 GF). The absolute farad of the e.m.u. system, for a steady current identically $abC/abV$, and identically reciprocal abdaraf. 1 abF = 1 GF."^^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:dbpediaMatch "http://dbpedia.org/resource/Abfarad"^^xsd:anyURI ;
    qudt:derivedUnitOfSystem <http://qudt.org/vocab/sou/CGS-EMU> ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E2L-2I0M-1H0T4D0> ;
    qudt:hasQuantityKind quantitykind:Capacitance ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Abfarad?oldid=407124018"^^xsd:anyURI,
        "http://www.oxfordreference.com/view/10.1093/acref/9780198605225.001.0001/acref-9780198605225-e-13"^^xsd:anyURI ;
    qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/abfarad> ;
    qudt:scalingOf unit:FARAD ;
    qudt:symbol "abF"^^xsd:string ;
    qudt:ucumCode "GF"^^qudt:UCUMcs ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q12783919> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:FT3-PER-MIN-FT2 a qudt:Unit ;
    rdfs:label "Cubic Foot per Minute Square Foot"^^xsd:string,
        "Cubic Foot per Minute Square Foot"@en ;
    dcterms:description "unit of the volume flow rate according to the Anglio-American and imperial system of units cubic foot per minute related to the transfer area according to the Anglian American and Imperial system of units square foot"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 0.005080000000000000000000000000000001 ;
    qudt:conversionMultiplierSN 5.08e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MIN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:FT ] ;
    qudt:hasQuantityKind quantitykind:Speed ;
    qudt:iec61360Code "0112/2///62720#UAB086"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB086"^^xsd:anyURI ;
    qudt:plainTextDescription "unit of the volume flow rate according to the Anglio-American and imperial system of units cubic foot per minute related to the transfer area according to the Anglian American and Imperial system of units square foot"^^xsd:string ;
    qudt:symbol "ft³/(min·ft²)"^^xsd:string ;
    qudt:ucumCode "[ft_i]3.min-1.[ft_i]-2"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "36"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GM-PER-CentiM-SEC a qudt:Unit ;
    rdfs:label "Gram per Centimetre Second"^^xsd:string,
        "Gram na Centimetr Sekunda"@cs,
        "Gramm pro Centimeter Sekunde"@de,
        "Gram per Centimetre Second"@en,
        "Gram per Centimeter Second"@en-us,
        "Gramo por Centimetro Segundo"@es,
        "Gramme par Centimètre Seconde"@fr,
        "Grammo per Centimetro Secondo"@it,
        "Gram per Centimeter Saat"@ms,
        "Gram na Centimetr Sekunda"@pl,
        "Gram pe Centimetru Secundă"@ro,
        "Gram na Centimeter Sekunda"@sl,
        "Gram per Centimetre Saniye"@tr ;
    dcterms:description "unit of the dynamic viscosity as a quotient of the 0.001-fold of the SI base unit kilogram divided by the 0.01-fold of the SI base unit metre and SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 0.1 ;
    qudt:conversionMultiplierSN 1e-01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-1D0> ;
    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 -1 ;
            qudt:hasUnit unit:CentiM ] ;
    qudt:hasQuantityKind quantitykind:DynamicViscosity,
        quantitykind:Viscosity ;
    qudt:iec61360Code "0112/2///62720#UAB433"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB433"^^xsd:anyURI ;
    qudt:symbol "g/(cm·s)"^^xsd:string ;
    qudt:ucumCode "g.cm-1.s-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "N41"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GM-PER-CentiM2-YR a qudt:Unit ;
    rdfs:label "Gram per Square Centimetre Year"^^xsd:string,
        "Gram per Square Centimetre Year"@en,
        "Gram per Square Centimeter Year"@en-us ;
    dcterms:description "A rate of change of 0.001 of the SI unit of mass over 0.00001 of the SI unit of area in a period of an average calendar year (365.25 days)"@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.0000003168808781402895023702689684893655 ;
    qudt:conversionMultiplierSN 3.168809e-07 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:YR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:CentiM ] ;
    qudt:hasQuantityKind quantitykind:MassPerAreaTime ;
    qudt:symbol "g/(cm²·a)"^^xsd:string ;
    qudt:ucumCode "g.cm-2.a-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GM-PER-M2-HR a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Gram per Square Metre Hour"^^xsd:string,
        "Gram per Square Metre Hour"@en,
        "Gram per Square Meter Hour"@en-us ;
    dcterms:description "0.0001-fold of the SI base unit kilogram divided by the SI base unit meter with the exponent 2 over a period of 1 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-2I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ] ;
    qudt:hasQuantityKind quantitykind:MassPerAreaTime ;
    qudt:plainTextDescription "0.0001-fold of the SI base unit kilogram divided by the SI base unit meter with the exponent 2 over a period of 1 hour "^^xsd:string ;
    qudt:symbol "g/(m²·h)"^^xsd:string ;
    qudt:ucumCode "g.m-2.h-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GM-PER-M2-YR a qudt:Unit ;
    rdfs:label "Gram per Square Metre Year"^^xsd:string,
        "Gram per Square Metre Year"@en,
        "Gram per Square Meter Year"@en-us ;
    dcterms:description "A metric unit of volume over time indicating the amount generated across one square meter over a year (365.25 days)."^^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.00000000003168808781402895023702689684893655 ;
    qudt:conversionMultiplierSN 3.168809e-11 ;
    qudt:expression "\\(g-m^{-2}-year^{-1}\\)"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:YR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GM ] ;
    qudt:hasQuantityKind quantitykind:MassPerAreaTime ;
    qudt:plainTextDescription "A metric unit of volume over time indicating the amount generated across one square meter over a year."^^xsd:string ;
    qudt:symbol "g/(m²·a)"^^xsd:string ;
    qudt:ucumCode "g.m-2.a-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GM_Carbon-PER-M2-DAY a qudt:ContextualUnit,
        qudt:Unit ;
    rdfs:label "Gram of Carbon per Square Metre Day"^^xsd:string,
        "Gram of Carbon per Square Metre Day"@en,
        "Gram of Carbon per Square Meter Day"@en-us ;
    dcterms:description "A metric unit of volume over time indicating the amount generated across one square meter over a day. Used to express productivity of an ecosystem."^^rdf:HTML ;
    qudt:conversionMultiplier 0.00000001157407407407407407407407407407407 ;
    qudt:conversionMultiplierSN 1.157407e-08 ;
    qudt:expression "$g C-m^{-2}-day^{-1}$."^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GM_Carbon ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DAY ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind quantitykind:MassPerAreaTime ;
    qudt:plainTextDescription "A metric unit of volume over time indicating the amount generated across one square meter over a day. Used to express productivity of an ecosystem."^^xsd:string ;
    qudt:symbol "g{carbon}/(m²·day)"^^xsd:string ;
    qudt:ucumCode "g.m-2.d-1{C}"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> ;
    skos:broader unit:GM-PER-M2-DAY .

unit:GM_Nitrogen-PER-M2-DAY a qudt:ContextualUnit,
        qudt:Unit ;
    rdfs:label "Gram of Nitrogen per Square Metre Day"^^xsd:string,
        "Gram of Nitrogen per Square Metre Day"@en,
        "Gram of Nitrogen per Square Meter Day"@en-us ;
    dcterms:description "A metric unit of volume over time indicating the amount of Nitrogen generated across one square meter over a day. Used to express productivity of an ecosystem."^^rdf:HTML ;
    qudt:conversionMultiplier 0.00000001157407407407407407407407407407407 ;
    qudt:conversionMultiplierSN 1.157407e-08 ;
    qudt:expression "$g N-m^{-2}-day^{-1}$."^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GM_Nitrogen ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DAY ] ;
    qudt:hasQuantityKind quantitykind:MassPerAreaTime ;
    qudt:plainTextDescription "A metric unit of volume over time indicating the amount of Nitrogen generated across one square meter over a day. Used to express productivity of an ecosystem."^^xsd:string ;
    qudt:symbol "g{nitrogen}/(m²·day)"^^xsd:string ;
    qudt:ucumCode "g.m-2.d-1{N}"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> ;
    skos:broader unit:GM-PER-M2-DAY .

unit:GibiBYTE a qudt:CountingUnit,
        qudt:Unit ;
    rdfs:label "Gibibyte"^^xsd:string,
        "Gibibyte"@en ;
    dcterms:description "The gibibyte is a multiple of the unit byte for digital information storage. The prefix gibi means 1024^3"^^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 5954088943.639144142991225561007166 ;
    qudt:conversionMultiplierSN 5.954089e+09 ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Gibibyte"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:InformationEntropy ;
    qudt:iec61360Code "0112/2///62720#UAA162"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA162"^^xsd:anyURI,
        "https://en.wikipedia.org/wiki/Byte#Multiple-byte_units"^^xsd:anyURI ;
    qudt:prefix <http://qudt.org/vocab/prefix/Gibi> ;
    qudt:scalingOf unit:BYTE ;
    qudt:symbol "GiB"^^xsd:string ;
    qudt:ucumCode "GiBy"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "E62"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q79765> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GigaBYTE-PER-SEC a qudt:Unit ;
    rdfs:label "Gigabyte per Second"^^xsd:string,
        "Gigabyte per Second"@en ;
    dcterms:description "1,000,000,000-fold of the unit byte divided by the SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 5545177444.47956247533785697166544 ;
    qudt:conversionMultiplierSN 5.545177e+09 ;
    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:GigaBYTE ] ;
    qudt:hasQuantityKind quantitykind:ByteRate ;
    qudt:iec61360Code "0112/2///62720#UAA157"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA157"^^xsd:anyURI ;
    qudt:symbol "GB/s"^^xsd:string ;
    qudt:ucumCode "GBy.s-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "E68"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GigaPA-CentiM3-PER-GM a qudt:Unit ;
    rdfs:label "Gigapascal Cubic Centimetre per Gram"^^xsd:string,
        "Gigapascal Centimetr Krychlový na Gram"@cs,
        "Gigapascal Kubikcentimeter pro Gramm"@de,
        "Gigapascal Cubic Centimetre per Gram"@en,
        "Gigapascal Cubic Centimeter per Gram"@en-us,
        "Gigapascal Centimetro Cúbico por Gramo"@es,
        "Gigapascal Centimètre Cube par Gramme"@fr,
        "Gigapascal Centimetro Cubo per Grammo"@it,
        "Gigapascal Centimeter Kubik per Gram"@ms,
        "Gigapaskal Centimetr Sześcienny na Gram"@pl,
        "Gigapascal Centimetru Cub pe Gram"@ro,
        "Gigapascal Kubični Centimeter na Gram"@sl,
        "Gigapascal Centimetreküp per Gram"@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:exactMatch unit:KiloM2-PER-SEC2 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:CentiM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GigaPA ] ;
    qudt:hasQuantityKind quantitykind:SpecificModulus ;
    qudt:symbol "GPa·cm³/g"^^xsd:string ;
    qudt:ucumCode "GPa.cm3.g-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GigaVAR a qudt:Unit ;
    rdfs:label "Giga Volt Ampere Reactive"^^xsd:string,
        "Giga Volt Ampere Reactive"@en ;
    dcterms:description "0.000000001 of the unit volt ampere reactive"^^xsd:string ;
    qudt:conversionMultiplier 1000000000.0 ;
    qudt:conversionMultiplierSN 1e+09 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-3D0> ;
    qudt:hasQuantityKind quantitykind: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:prefix <http://qudt.org/vocab/prefix/Giga> ;
    qudt:scalingOf unit:VAR ;
    qudt:symbol "GVA{Reactive}"^^xsd:string ;
    qudt:ucumCode "GVA{reactive}"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:HK a qudt:Unit ;
    rdfs:label "Hefner-kerze"^^xsd:string,
        "Hefner-kerze"@en ;
    dcterms:description "obsolete, non-legal unit of the power in Germany relating to DIN 1301-3:1979"^^xsd:string ;
    qudt:conversionMultiplier 0.92 ;
    qudt:conversionMultiplierSN 9.2e-01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I1M0H0T0D0> ;
    qudt:hasQuantityKind quantitykind:LuminousIntensity ;
    qudt:iec61360Code "0112/2///62720#UAB439"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB439"^^xsd:anyURI ;
    qudt:scalingOf unit:CD ;
    qudt:symbol "HK"^^xsd:string ;
    qudt:uneceCommonCode "P35"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> ;
    rdfs:seeAlso unit:CD_IN .

unit:HR-PER-FT2 a qudt:Unit ;
    rdfs:label "Hour per Square Foot"^^xsd:string,
        "Hour per Square 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 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 38750.07750015500031000062000124 ;
    qudt:conversionMultiplierSN 3.875008e+04 ;
    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 -2 ;
            qudt:hasUnit unit:FT ] ;
    qudt:hasQuantityKind quantitykind:Unknown ;
    qudt:hasReciprocalUnit unit:FT2-PER-HR ;
    qudt:iec61360Code "0112/2///62720#UAD842"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD842"^^xsd:anyURI ;
    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-NUM a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Hour per Number"^^xsd:string,
        "Hour per Number"@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 3600.0 ;
    qudt:conversionMultiplierSN 3.6e+03 ;
    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:HR ] ;
    qudt:hasQuantityKind quantitykind:TimePerCount ;
    qudt:hasReciprocalUnit unit:NUM-PER-HR ;
    qudt:symbol "h/#"^^xsd:string ;
    qudt:ucumCode "h.{#}-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:HZ-M a qudt:Unit ;
    rdfs:label "Hertz Metre"^^xsd:string,
        "Херц Метър"@bg,
        "Hertz Metr"@cs,
        "Hertz Meter"@de,
        "Χερτζ Μέτρο"@el,
        "Hertz Metre"@en,
        "Hertz Meter"@en-us,
        "Hercio Metro"@es,
        "Hertz Mètre"@fr,
        "Hertz Metro"@it,
        "Hertzium Metrum"@la,
        "Hertz Meter"@ms,
        "Herc Metr"@pl,
        "Hertz Metro"@pt,
        "Hertz Metru"@ro,
        "Герц Метр"@ru,
        "Hertz Meter"@sl,
        "Hertz Metre"@tr ;
    dcterms:description """$\\textit{Hertz Metre}$ is the product of the SI derived unit hertz and the SI base unit metre.
  """^^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:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HZ ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind quantitykind:Speed ;
    qudt:iec61360Code "0112/2///62720#UAA171"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA171"^^xsd:anyURI ;
    qudt:plainTextDescription "product of the SI derived unit hertz and the SI base unit metre"^^xsd:string ;
    qudt:symbol "Hz·m"^^xsd:string ;
    qudt:ucumCode "Hz.m"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "H34"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:H_Stat-PER-CentiM a qudt:Unit ;
    rdfs:label "Stathenry per Centimetre"^^xsd:string,
        "Stathenry per Centimetre"@en,
        "Stathenry per Centimeter"@en-us ;
    dcterms:description "The Stathenry per Centimeter is a unit of measure for the absolute permeability of free space."^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-ESU> ;
    qudt:conversionMultiplier 89876000000000.0 ;
    qudt:conversionMultiplierSN 8.9876e+13 ;
    qudt:derivedUnitOfSystem <http://qudt.org/vocab/sou/CGS-ESU> ;
    qudt:expression "$stath-per-cm$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-2L1I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:H_Stat ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:CentiM ] ;
    qudt:hasQuantityKind quantitykind:ElectromagneticPermeability,
        quantitykind:Permeability ;
    qudt:symbol "statH/cm"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:IN-PER-PSI a qudt:Unit ;
    rdfs:label "Inch per Psi"^^xsd:string,
        "Inch per Psi"@en ;
    dcterms:description "unit inch 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.000003683958373057262503457335380421946 ;
    qudt:conversionMultiplierSN 3.683958e-06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M-1H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:IN ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:PSI ] ;
    qudt:hasQuantityKind quantitykind:Unknown ;
    qudt:hasReciprocalUnit unit:PSI-PER-IN ;
    qudt:iec61360Code "0112/2///62720#UAA541"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA541"^^xsd:anyURI ;
    qudt:symbol "in/psi"^^xsd:string ;
    qudt:ucumCode "[in_i].[psi]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "K46"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:IN-PER-REV a qudt:Unit ;
    rdfs:label "Inch per Revolution"^^xsd:string,
        "Inch per Revolution"@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 ;
    qudt:conversionMultiplier 0.004042535552719517037449910895593179 ;
    qudt:conversionMultiplierSN 4.042536e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:IN ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:REV ] ;
    qudt:hasQuantityKind quantitykind: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/rev"^^xsd:string ;
    qudt:uneceCommonCode "H57"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:IU-PER-L a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "International Unit per Litre"^^xsd:string,
        "International Unit per Litre"@en,
        "International Unit per Liter"@en-us ;
    dcterms:description """
The $\\textit{International Unit per Liter}$ is a unit for 'Serum Or Plasma Level' expressed as $IU/L$.
The magnitude of one $IU/L$ depends on the material, so there is no single conversion multiplier.
"""^^qudt:LatexString ;
    qudt:conversionMultiplier 0.0 ;
    qudt:conversionMultiplierSN 0e+00 ;
    qudt:expression "$IU/L$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L-3I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:L ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:IU ] ;
    qudt:hasQuantityKind quantitykind:PlasmaLevel,
        quantitykind:SerumLevel ;
    qudt:symbol "IU/L"^^xsd:string ;
    qudt:ucumCode "[IU].L-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> ;
    rdfs:seeAlso unit:IU .

unit:IU-PER-MilliL a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "International Unit per Millilitre"^^xsd:string,
        "International Unit per Millilitre"@en,
        "International Unit per Milliliter"@en-us ;
    dcterms:description """
The $\\textit{International Unit per Milliliter}$ is a unit for  'Serum Or Plasma Level' expressed as $IU/mL$.
The magnitude of one $IU/L$ depends on the material, so there is no single conversion multiplier.
"""^^qudt:LatexString ;
    qudt:conversionMultiplier 0.0 ;
    qudt:conversionMultiplierSN 0e+00 ;
    qudt:expression "$IU/mL$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L-3I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:IU ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MilliL ] ;
    qudt:hasQuantityKind quantitykind:PlasmaLevel,
        quantitykind:SerumLevel ;
    qudt:symbol "IU/mL"^^xsd:string ;
    qudt:ucumCode "[IU].mL-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:J-M-PER-MOL a qudt:Unit ;
    rdfs:label "Joule Metre per Mole"^^xsd:string,
        "Джаул Метър на Мол"@bg,
        "Joule Metr na Mol"@cs,
        "Joule Meter pro Mol"@de,
        "Τζάουλ Μέτρο ανά Μολ"@el,
        "Joule Metre per Mole"@en,
        "Joule Meter per Mole"@en-us,
        "Julio Metro por Mol"@es,
        "Joule Mètre par Mole"@fr,
        "Joule Metro per Mole"@it,
        "Joulium Metrum per Moles"@la,
        "Joule Meter per Mole"@ms,
        "Dżul Metr na Mol"@pl,
        "Joule Metro por Mol"@pt,
        "Joule Metru pe Mol"@ro,
        "Джоуль Метр на Моль"@ru,
        "Joule Meter na Mol"@sl,
        "Joule Metre per Mol"@tr ;
    dcterms:description """$\\textit{Joule Meter per Mole}$ is a unit for 'Length Molar Energy' expressed as:
  $$J \\cdot m \\cdot mol^{-1}$$.
  """^^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 "$J m mol^{-1}$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A-1E0L3I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MOL ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:J ] ;
    qudt:hasQuantityKind quantitykind:LengthMolarEnergy ;
    qudt:symbol "J·m/mol"^^xsd:string ;
    qudt:ucumCode "J.m.mol-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:J-PER-M a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Joule per Metre"^^xsd:string,
        "Джаул на Метър"@bg,
        "Joule na Metr"@cs,
        "Joule pro Meter"@de,
        "Τζάουλ ανά Μέτρο"@el,
        "Joule per Metre"@en,
        "Joule per Meter"@en-us,
        "Julio por Metro"@es,
        "Joule par Mètre"@fr,
        "Joule per Metro"@it,
        "Joulium per Metrum"@la,
        "Joule per Meter"@ms,
        "Dżul na Metr"@pl,
        "Joule por Metro"@pt,
        "Joule pe Metru"@ro,
        "Джоуль на Метр"@ru,
        "Joule na Meter"@sl,
        "Joule per 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:dbpediaMatch "http://dbpedia.org/resource/Steradian"^^xsd:anyURI ;
    qudt:expression "$j/m$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:J ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind quantitykind:LinearEnergyTransfer,
        quantitykind:TotalLinearStoppingPower ;
    qudt:iec61360Code "0112/2///62720#UAA178"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA178"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:symbol "J/m"^^xsd:string ;
    qudt:ucumCode "J.m-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "B12"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q56023789> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:J-PER-T2 a qudt:Unit ;
    rdfs:label "Joule per Square Tesla"^^xsd:string,
        "Джаул на Квадратен Тесла"@bg,
        "Joule na Čtvereční Tesla"@cs,
        "Joule pro Quadrattesla"@de,
        "Τζάουλ ανά Τετραγωνικό Τέσλα"@el,
        "Joule per Square Tesla"@en,
        "Julio por Tesla Cuadrado"@es,
        "Joule par Tesla Carré"@fr,
        "Joule per Tesla Quadrato"@it,
        "Joulium per Tesla Quadratum"@la,
        "Joule per Tesla Persegi"@ms,
        "Dżul na Tesla Kwadratowy"@pl,
        "Joule por Tesla Quadrado"@pt,
        "Joule pe Tesla Pătrat"@ro,
        "Джоуль на Квадратный Тесла"@ru,
        "Joule na Kvadratni Tesla"@sl,
        "Joule per Teslakare"@tr ;
    dcterms:description "A measure of the diamagnetic energy, for a Bohr-radius spread around a magnetic axis, per square Tesla."^^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 "$J T^{-2}$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E2L2I0M-1H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:J ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:T ] ;
    qudt:hasQuantityKind quantitykind:EnergyPerSquareMagneticFluxDensity ;
    qudt:informativeReference "http://www.eng.famu.fsu.edu/~dommelen/quantum/style_a/elecmagfld.html"^^xsd:anyURI ;
    qudt:symbol "J/T²"^^xsd:string ;
    qudt:ucumCode "J.T-2"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:J-SEC-PER-MOL a qudt:Unit ;
    rdfs:label "Joule Second per Mole"^^xsd:string,
        "Джаул Секунда на Мол"@bg,
        "Joule Sekunda na Mol"@cs,
        "Joule Sekunde pro Mol"@de,
        "Τζάουλ Δευτερόλεπτο ανά Μολ"@el,
        "Joule Second per Mole"@en,
        "Julio Segundo por Mol"@es,
        "Joule Seconde par Mole"@fr,
        "Joule Secondo per Mole"@it,
        "Joulium Secundum per Moles"@la,
        "Joule Saat per Mole"@ms,
        "Dżul Sekunda na Mol"@pl,
        "Joule Segundo por Mol"@pt,
        "Joule Secundă pe Mol"@ro,
        "Джоуль Секунда на Моль"@ru,
        "Joule Sekunda na Mol"@sl,
        "Joule Saniye per Mol"@tr ;
    dcterms:description "$\\textit{Joule Second per Mole}$ is a unit for 'Molar Angular Momentum' expressed as $J s mol^{-1}$."^^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 "$J s mol^{-1}$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A-1E0L2I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MOL ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:J ] ;
    qudt:hasQuantityKind quantitykind:MolarAngularMomentum ;
    qudt:symbol "J·s/mol"^^xsd:string ;
    qudt:ucumCode "J.s.mol-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:K-DAY a qudt:Unit ;
    rdfs:label "Kelvin Day"^^xsd:string,
        "Kelvin Day"@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/A0E0L0I0M0H1T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:DAY ] ;
    qudt:hasQuantityKind quantitykind:TimeTemperature ;
    qudt:symbol "K·d"^^xsd:string ;
    qudt:ucumCode "K.d"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:K-M a qudt:Unit ;
    rdfs:label "Kelvin Metre"^^xsd:string,
        "Келвин Метър"@bg,
        "Kelvin Metr"@cs,
        "Kelvin Meter"@de,
        "Κέλβιν Μέτρο"@el,
        "Kelvin Metre"@en,
        "Kelvin Meter"@en-us,
        "Kelvin Metro"@es,
        "Kelvin Mètre"@fr,
        "Kelvin Metro"@it,
        "Kelvin Metrum"@la,
        "Kelvin Meter"@ms,
        "Kelwin Metr"@pl,
        "Kelvin Metro"@pt,
        "Kelvin Metru"@ro,
        "Кельвин Метр"@ru,
        "Kelvin Meter"@sl,
        "Kelvin 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/A0E0L1I0M0H1T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind quantitykind:LengthTemperature ;
    qudt:hasReciprocalUnit unit:PER-M-K ;
    qudt:symbol "K·m"^^xsd:string ;
    qudt:ucumCode "K.m"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:K-M-PER-W a qudt:Unit ;
    rdfs:label "Kelvin Metre per Watt"^^xsd:string,
        "Келвин Метър на Ват"@bg,
        "Kelvin Metr na Watt"@cs,
        "Kelvin Meter pro Watt"@de,
        "Κέλβιν Μέτρο ανά Βατ"@el,
        "Kelvin Metre per Watt"@en,
        "Kelvin Meter per Watt"@en-us,
        "Kelvin Metro por Vatio"@es,
        "Kelvin Mètre par Watt"@fr,
        "Kelvin Metro per Watt"@it,
        "Kelvin Metrum per Wattium"@la,
        "Kelvin Meter per Watt"@ms,
        "Kelwin Metr na Wat"@pl,
        "Kelvin Metro por Watt"@pt,
        "Kelvin Metru pe Watt"@ro,
        "Кельвин Метр на Ватт"@ru,
        "Kelvin Meter na Watt"@sl,
        "Kelvin Metre per Watt"@tr ;
    dcterms:description "product of the SI base unit kelvin and the SI base unit metre divided by the derived SI unit watt"^^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/A0E0L-1I0M-1H1T3D0> ;
    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:W ] ;
    qudt:hasQuantityKind quantitykind:ThermalResistivity ;
    qudt:hasReciprocalUnit unit:W-PER-M-K ;
    qudt:iec61360Code "0112/2///62720#UAB488"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB488"^^xsd:anyURI ;
    qudt:plainTextDescription "product of the SI base unit kelvin and the SI base unit metre divided by the derived SI unit watt"^^xsd:string ;
    qudt:symbol "K·m/W"^^xsd:string ;
    qudt:ucumCode "K.m.W-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "H35"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q84451486> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:K-PER-BAR a qudt:Unit ;
    rdfs:label "Kelvin per Bar"^^xsd:string,
        "Kelvin per Bar"@en ;
    dcterms:description "SI base unit kelvin divided by the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.00001 ;
    qudt:conversionMultiplierSN 1e-05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M-1H1T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ] ;
    qudt:hasQuantityKind quantitykind:Unknown ;
    qudt:hasReciprocalUnit unit:BAR-PER-K ;
    qudt:iec61360Code "0112/2///62720#UAA188"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA188"^^xsd:anyURI ;
    qudt:symbol "K/bar"^^xsd:string ;
    qudt:ucumCode "K.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F61"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:K-PER-HR a qudt:Unit ;
    rdfs:label "Kelvin per Hour"^^xsd:string,
        "Kelvin per Hour"@en ;
    dcterms:description "$\\textit{Kelvin per Hour}$ is a unit for 'Temperature Per Time' expressed as $K / h$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.0002777777777777777777777777777777778 ;
    qudt:conversionMultiplierSN 2.777778e-04 ;
    qudt:expression "$K / h$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H1T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ] ;
    qudt:hasQuantityKind quantitykind:TemperaturePerTime ;
    qudt:iec61360Code "0112/2///62720#UAA189"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA189"^^xsd:anyURI ;
    qudt:symbol "K/h"^^xsd:string ;
    qudt:ucumCode "K.h-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F10"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:K-PER-M a qudt:Unit ;
    rdfs:label "Kelvin per Metre"^^xsd:string,
        "Келвин на Метър"@bg,
        "Kelvin na Metr"@cs,
        "Kelvin pro Meter"@de,
        "Κέλβιν ανά Μέτρο"@el,
        "Kelvin per Metre"@en,
        "Kelvin per Meter"@en-us,
        "Kelvin por Metro"@es,
        "Kelvin par Mètre"@fr,
        "Kelvin per Metro"@it,
        "Kelvin per Metrum"@la,
        "Kelvin per Meter"@ms,
        "Kelwin na Metr"@pl,
        "Kelvin por Metro"@pt,
        "Kelvin pe Metru"@ro,
        "Кельвин на Метр"@ru,
        "Kelvin na Meter"@sl,
        "Kelvin per Metre"@tr ;
    dcterms:description "A change of temperature on the Kelvin temperature scale in one SI unit of length."@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-1I0M0H1T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind quantitykind:TemperatureGradient ;
    qudt:hasReciprocalUnit unit:M-PER-K ;
    qudt:symbol "K/m"^^xsd:string ;
    qudt:ucumCode "K.m-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:K-PER-MIN a qudt:Unit ;
    rdfs:label "Kelvin per Minute"^^xsd:string,
        "Kelvin per Minute"@en ;
    dcterms:description "$\\textit{Kelvin per Minute}$ is a unit for 'Temperature Per Time' expressed as $K / m$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.01666666666666666666666666666666667 ;
    qudt:conversionMultiplierSN 1.666667e-02 ;
    qudt:expression "$K / min$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H1T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MIN ] ;
    qudt:hasQuantityKind quantitykind:TemperaturePerTime ;
    qudt:iec61360Code "0112/2///62720#UAA191"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA191"^^xsd:anyURI ;
    qudt:symbol "K/min"^^xsd:string ;
    qudt:ucumCode "K.min-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F11"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:K-PER-PA a qudt:Unit ;
    rdfs:label "Kelvin per Pascal"^^xsd:string,
        "Келвин на Паскал"@bg,
        "Kelvin na Pascal"@cs,
        "Kelvin pro Pascal"@de,
        "Κέλβιν ανά Πασκάλ"@el,
        "Kelvin per Pascal"@en,
        "Kelvin por Pascal"@es,
        "Kelvin par Pascal"@fr,
        "Kelvin per Pascal"@it,
        "Kelvin per Pascalium"@la,
        "Kelvin per Pascal"@ms,
        "Kelwin na Paskal"@pl,
        "Kelvin por Pascal"@pt,
        "Kelvin pe Pascal"@ro,
        "Кельвин на Паскаль"@ru,
        "Kelvin na Pascal"@sl,
        "Kelvin per Pascal"@tr ;
    dcterms:description "SI base unit kelvin divided by the SI derived unit pascal"^^xsd:string ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M-1H1T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:PA ] ;
    qudt:hasQuantityKind quantitykind:Unknown ;
    qudt:hasReciprocalUnit unit:PA-PER-K ;
    qudt:iec61360Code "0112/2///62720#UAB319"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB319"^^xsd:anyURI ;
    qudt:symbol "K/Pa"^^xsd:string ;
    qudt:ucumCode "K.Pa-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "N79"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q93947085> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:K-PER-SEC a qudt:Unit ;
    rdfs:label "Kelvin per Second"^^xsd:string,
        "Келвин на Секунда"@bg,
        "Kelvin na Sekunda"@cs,
        "Kelvin pro Sekunde"@de,
        "Κέλβιν ανά Δευτερόλεπτο"@el,
        "Kelvin per Second"@en,
        "Kelvin por Segundo"@es,
        "Kelvin par Seconde"@fr,
        "Kelvin per Secondo"@it,
        "Kelvin per Secundum"@la,
        "Kelvin per Saat"@ms,
        "Kelwin na Sekunda"@pl,
        "Kelvin por Segundo"@pt,
        "Kelvin pe Secundă"@ro,
        "Кельвин на Секунда"@ru,
        "Kelvin na Sekunda"@sl,
        "Kelvin per Saniye"@tr ;
    dcterms:description "$\\textit{Kelvin per Second}$ is a unit for 'Temperature Per Time' expressed as $K / s$."^^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-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind quantitykind:TemperaturePerTime ;
    qudt:iec61360Code "0112/2///62720#UAA192"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA192"^^xsd:anyURI ;
    qudt:symbol "K/s"^^xsd:string ;
    qudt:ucumCode "K.s-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F12"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:K-PER-W a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Kelvin per Watt"^^xsd:string,
        "Келвин на Ват"@bg,
        "Kelvin na Watt"@cs,
        "Kelvin pro Watt"@de,
        "Κέλβιν ανά Βατ"@el,
        "Kelvin per Watt"@en,
        "Kelvin por Vatio"@es,
        "Kelvin par Watt"@fr,
        "Kelvin per Watt"@it,
        "Kelvin per Wattium"@la,
        "Kelvin per Watt"@ms,
        "Kelwin na Wat"@pl,
        "Kelvin por Watt"@pt,
        "Kelvin pe Watt"@ro,
        "Кельвин на Ватт"@ru,
        "Kelvin na Watt"@sl,
        "Kelvin per Watt"@tr ;
    dcterms:description "<p>Thermal resistance is a heat property and a measure of a temperature difference by which an object or material resists a heat flow (heat per time unit or thermal resistance). Thermal resistance is the reciprocal thermal conductance. Absolute thermal resistance is the temperature difference across a structure when a unit of heat energy flows through it in unit time. It is the reciprocal of thermal conductance. The SI units of thermal resistance are kelvins per watt or the equivalent degrees Celsius per watt (the two are the same since as intervals)."^^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:derivedCoherentUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:expression "$K/W$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M-1H1T3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:W ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:K ] ;
    qudt:hasQuantityKind quantitykind:ThermalResistance ;
    qudt:hasReciprocalUnit unit:W-PER-K ;
    qudt:iec61360Code "0112/2///62720#UAA187"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA187"^^xsd:anyURI ;
    qudt:symbol "K/W"^^xsd:string ;
    qudt:ucumCode "K.W-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "B21"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q3194958> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:K-SEC a qudt:Unit ;
    rdfs:label "Kelvin Second"^^xsd:string,
        "Келвин Секунда"@bg,
        "Kelvin Sekunda"@cs,
        "Kelvin Sekunde"@de,
        "Κέλβιν Δευτερόλεπτο"@el,
        "Kelvin Second"@en,
        "Kelvin Segundo"@es,
        "Kelvin Seconde"@fr,
        "Kelvin Secondo"@it,
        "Kelvin Secundum"@la,
        "Kelvin Saat"@ms,
        "Kelwin Sekunda"@pl,
        "Kelvin Segundo"@pt,
        "Kelvin Secundă"@ro,
        "Кельвин Секунда"@ru,
        "Kelvin Sekunda"@sl,
        "Kelvin 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/A0E0L0I0M0H1T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind quantitykind:TimeTemperature ;
    qudt:symbol "K·s"^^xsd:string ;
    qudt:ucumCode "K.s"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KY a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Kayser"^^xsd:string,
        "Kayser"@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-GAUSS> ;
    qudt:conversionMultiplier 100.0 ;
    qudt:conversionMultiplierSN 1e+02 ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Kayser"^^xsd:anyURI ;
    qudt:derivedUnitOfSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-GAUSS> ;
    qudt:expression "$cm^{-1}$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:CentiM ] ;
    qudt:hasQuantityKind quantitykind:InverseLength ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Kayser?oldid=458489166"^^xsd:anyURI ;
    qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/kayser> ;
    qudt:symbol "K"^^xsd:string ;
    qudt:ucumCode "Ky"^^qudt:UCUMcs ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q267391> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KibiBYTE a qudt:CountingUnit,
        qudt:Unit ;
    rdfs:label "Kibibyte"^^xsd:string,
        "Kibibyte"@en ;
    dcterms:description "The kibibyte is a multiple of the unit byte for digital information equivalent to 1024 bytes."^^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 5678.261703147071974745965538985411 ;
    qudt:conversionMultiplierSN 5.678262e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:InformationEntropy ;
    qudt:iec61360Code "0112/2///62720#UAA197"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA197"^^xsd:anyURI,
        "https://en.wikipedia.org/wiki/Byte#Multiple-byte_units"^^xsd:anyURI ;
    qudt:prefix <http://qudt.org/vocab/prefix/Kibi> ;
    qudt:scalingOf unit:BYTE ;
    qudt:symbol "KiB"^^xsd:string ;
    qudt:ucumCode "KiBy"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "E64"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q79756> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloBIT a qudt:Unit ;
    rdfs:label "Kilobit"^^xsd:string,
        "Kilobit"@en ;
    dcterms:description "1,000-fold of the unit bit"^^xsd:string ;
    qudt:conversionMultiplier 693.14718055994530941723212145818 ;
    qudt:conversionMultiplierSN 6.931472e+02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:DatasetOfBits ;
    qudt:iec61360Code "0112/2///62720#UAB159"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB159"^^xsd:anyURI ;
    qudt:prefix <http://qudt.org/vocab/prefix/Kilo> ;
    qudt:scalingOf unit:BIT ;
    qudt:symbol "kb"^^xsd:string ;
    qudt:ucumCode "kbit"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "C37"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q3194304> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloBQ a qudt:Unit ;
    rdfs:label "Kilobecquerel"^^xsd:string,
        "Kilobecquerel"@cs,
        "Kilobecquerel"@de,
        "Kilobecquerel"@en,
        "Kilobecquerel"@es,
        "Kilobecquerel"@fr,
        "Kilobecquerel"@hu,
        "Chilobecquerel"@it,
        "Kilobecquerel"@ms,
        "Kilobekerel"@pl,
        "Kilobecquerel"@ro,
        "Kilobecquerel"@sl,
        "Kilobekerel"@tr ;
    dcterms:description "1 000-fold of the SI derived 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 1000.0 ;
    qudt:conversionMultiplierSN 1e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:hasQuantityKind quantitykind:Activity ;
    qudt:iec61360Code "0112/2///62720#UAA561"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA561"^^xsd:anyURI ;
    qudt:plainTextDescription "1 000-fold of the SI derived unit becquerel"^^xsd:string ;
    qudt:prefix <http://qudt.org/vocab/prefix/Kilo> ;
    qudt:scalingOf unit:BQ ;
    qudt:symbol "kBq"^^xsd:string ;
    qudt:ucumCode "kBq"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "2Q"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q94489465> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloCAL_Mean a qudt:Unit ;
    rdfs:label "Kilocalorie (Mean)"^^xsd:string,
        "Kilocalorie (Mean)"@en ;
    dcterms:description "1000-fold of the unit calorie, which is used particularly for calorific values of food"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 4190.0 ;
    qudt:conversionMultiplierSN 4.19e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:hasQuantityKind quantitykind:ThermalEnergy ;
    qudt:iec61360Code "0112/2///62720#UAA587"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA587"^^xsd:anyURI ;
    qudt:plainTextDescription "1000-fold of the unit calorie, which is used particularly for calorific values of food"^^xsd:string ;
    qudt:scalingOf unit:J ;
    qudt:symbol "kcal{mean}"^^xsd:string ;
    qudt:ucumCode "kcal_m"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "K51"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q101435403> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloGM-PER-HA-YR a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Kilogram per Hectare Year"^^xsd:string,
        "Kilogram per Hectare Year"@en ;
    dcterms:description "A measure of areal density over time equivalent to 1 kg per hectare per year."^^xsd:string ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.000000000003168808781402895023702689684893655 ;
    qudt:conversionMultiplierSN 3.168809e-12 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HA ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:YR ] ;
    qudt:hasQuantityKind quantitykind:MassPerAreaTime ;
    qudt:plainTextDescription "A measure of areal density over time equivalent to 1 kg per hectare per year."^^xsd:string ;
    qudt:symbol "kg/(ha·a)"^^xsd:string ;
    qudt:ucumCode "kg.har-1.a-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloGM-PER-HR a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Kilogram per Hour"^^xsd:string,
        "Kilogram per Hour"@en ;
    dcterms:description "Kilogram Per Hour (kg/h) is a unit in the category of Mass flow rate. It is also known as kilogram/hour. Kilogram Per Hour (kg/h) has a dimension of MT-1 where $M$ is mass, and $T$ is time. It can be converted to the corresponding standard SI unit kg/s by multiplying its value by a factor of 0.000277777777778."^^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 "$kg/h$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloGM ] ;
    qudt:hasQuantityKind quantitykind:MassFlowRate,
        quantitykind:MassPerTime ;
    qudt:iec61360Code "0112/2///62720#UAA607"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA607"^^xsd:anyURI ;
    qudt:symbol "kg/h"^^xsd:string ;
    qudt:ucumCode "kg.h-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "E93"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q107210138> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloGM-PER-KiloMOL a qudt:Unit ;
    rdfs:label "Kilogram per Kilomole"^^xsd:string,
        "Kilogram na Kilomol"@cs,
        "Kilogramm pro Kilomol"@de,
        "Kilogram per Kilomole"@en,
        "Kilogramo por Kilomol"@es,
        "Kilogramme par Kilomole"@fr,
        "Chilogrammo per Chilomole"@it,
        "Kilogram per Kilomole"@ms,
        "Kilogram na Kilomol"@pl,
        "Kilogram pe Kilomol"@ro,
        "Kilogram na Kilomol"@sl,
        "Kilogram per Kilomol"@tr ;
    dcterms:description "SI base unit kilogram divided by the 1 000-fold of 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:KiloGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:KiloMOL ] ;
    qudt:hasQuantityKind quantitykind:MolarMass ;
    qudt:hasReciprocalUnit unit:KiloMOL-PER-KiloGM ;
    qudt:iec61360Code "0112/2///62720#UAA611"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA611"^^xsd:anyURI ;
    qudt:plainTextDescription "SI base unit kilogram divided by the 1 000-fold of the SI base unit mol"^^xsd:string ;
    qudt:symbol "kg/kmol"^^xsd:string ;
    qudt:ucumCode "kg.kmol-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F24"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q106623580> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloGM-PER-M a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Kilogram per Metre"^^xsd:string,
        "Килограм на Метър"@bg,
        "Kilogram na Metr"@cs,
        "Kilogramm pro Meter"@de,
        "Χιλιόγραμμο ανά Μέτρο"@el,
        "Kilogram per Metre"@en,
        "Kilogram per Meter"@en-us,
        "Kilogramo por Metro"@es,
        "Kilogramme par Mètre"@fr,
        "Chilogrammo per Metro"@it,
        "Chiliogramma per Metrum"@la,
        "Kilogram per Meter"@ms,
        "Kilogram na Metr"@pl,
        "Quilograma por Metro"@pt,
        "Kilogram pe Metru"@ro,
        "Килограмм на Метр"@ru,
        "Kilogram na Meter"@sl,
        "Kilogram per Metre"@tr ;
    dcterms:description "Kilogram Per Meter (kg/m) is a unit in the category of Linear mass density. It is also known as kilogram/meter, kilogram/metre, kilograms per meter, kilogram per metre, kilograms per metre. This unit is commonly used in the SI unit system. Kilogram Per Meter (kg/m) has a dimension of ML-1 where $M$ is mass, and $L$ is length. This unit is the standard SI unit in this category. "^^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 "$kg/m$"^^qudt:LatexString ;
    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:M ] ;
    qudt:hasQuantityKind quantitykind:LinearDensity,
        quantitykind:MassPerLength ;
    qudt:iec61360Code "0112/2///62720#UAA616"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA616"^^xsd:anyURI ;
    qudt:symbol "kg/m"^^xsd:string ;
    qudt:ucumCode "kg.m-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "KL"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q25999243> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloGM-PER-M-DAY a qudt:Unit ;
    rdfs:label "Kilogram per Metre Day"^^xsd:string,
        "Kilogram per Metre Day"@en,
        "Kilogram per Meter Day"@en-us ;
    dcterms:description "unit of the dynamic viscosity as a quotient SI base unit kilogram divided by the SI base unit metre and by the unit day"^^xsd:string ;
    qudt:conversionMultiplier 0.00001157407407407407407407407407407407 ;
    qudt:conversionMultiplierSN 1.157407e-05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DAY ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind quantitykind:DynamicViscosity,
        quantitykind:Viscosity ;
    qudt:iec61360Code "0112/2///62720#UAB431"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB431"^^xsd:anyURI ;
    qudt:symbol "kg/(m·d)"^^xsd:string ;
    qudt:ucumCode "kg.m-1.d-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "N39"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloGM-PER-M-HR a qudt:Unit ;
    rdfs:label "Kilogram per Metre Hour"^^xsd:string,
        "Kilogram per Metre Hour"@en,
        "Kilogram per Meter Hour"@en-us ;
    dcterms:description "One SI standard unit of mass over one SI standard unit of length over 3600 times one SI standard unit of time."@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.0002777777777777777777777777777777778 ;
    qudt:conversionMultiplierSN 2.777778e-04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind quantitykind:DynamicViscosity,
        quantitykind:Viscosity ;
    qudt:iec61360Code "0112/2///62720#UAB432"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB432"^^xsd:anyURI ;
    qudt:symbol "kg/(m·h)"^^xsd:string ;
    qudt:ucumCode "kg.m-1.h-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "N40"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q107410795> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloGM-PER-M-MIN a qudt:Unit ;
    rdfs:label "Kilogram per Metre Minute"^^xsd:string,
        "Kilogram per Metre Minute"@en,
        "Kilogram per Meter Minute"@en-us ;
    dcterms:description "unit of the dynamic viscosity as a quotient SI base unit kilogram divided by the SI base unit metre and by the unit minute"^^xsd:string ;
    qudt:conversionMultiplier 0.01666666666666666666666666666666667 ;
    qudt:conversionMultiplierSN 1.666667e-02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MIN ] ;
    qudt:hasQuantityKind quantitykind:DynamicViscosity,
        quantitykind:Viscosity ;
    qudt:iec61360Code "0112/2///62720#UAB430"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB430"^^xsd:anyURI ;
    qudt:symbol "kg/(m·min)"^^xsd:string ;
    qudt:ucumCode "kg.m-1.min-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "N38"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloGM-PER-M2-DAY a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Kilogram per Square Metre Day"^^xsd:string,
        "Kilogram per Square Metre Day"@en,
        "Kilogram per Square Meter Day"@en-us ;
    dcterms:description "A measure of areal density over time equivalent to 1 kg per square meter per day."^^xsd:string ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.00001157407407407407407407407407407407 ;
    qudt:conversionMultiplierSN 1.157407e-05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M1H0T-1D0> ;
    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 -1 ;
            qudt:hasUnit unit:DAY ] ;
    qudt:hasQuantityKind quantitykind:MassPerAreaTime ;
    qudt:plainTextDescription "A measure of areal density over time equivalent to 1 kg per square meter per day."^^xsd:string ;
    qudt:symbol "kg/(m²·d)"^^xsd:string ;
    qudt:ucumCode "kg.m-2.d-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloGM-PER-M2-PA-SEC a qudt:Unit ;
    rdfs:label "Kilogram per Square Metre Pascal Second"^^xsd:string,
        "Килограм на Квадратен Метър Паскал Секунда"@bg,
        "Kilogram na Čtvereční Metr Pascal Sekunda"@cs,
        "Kilogramm pro Quadratmeter Pascal Sekunde"@de,
        "Χιλιόγραμμο ανά Τετραγωνικό Μέτρο Πασκάλ Δευτερόλεπτο"@el,
        "Kilogram per Square Metre Pascal Second"@en,
        "Kilogram per Square Meter Pascal Second"@en-us,
        "Kilogramo por Metro Cuadrado Pascal Segundo"@es,
        "Kilogramme par Mètre Carré Pascal Seconde"@fr,
        "Chilogrammo per Metro Quadrato Pascal Secondo"@it,
        "Chiliogramma per Metrum Quadratum Pascalium Secundum"@la,
        "Kilogram per Meter Persegi Pascal Saat"@ms,
        "Kilogram na Metr Kwadratowy Paskal Sekunda"@pl,
        "Quilograma por Metro Quadrado Pascal Segundo"@pt,
        "Kilogram pe Metru Pătrat Pascal Secundă"@ro,
        "Килограмм на Квадратный Метр Паскаль Секунда"@ru,
        "Kilogram na Kvadratni Meter Pascal Sekunda"@sl,
        "Kilogram per Metrekare Pascal Saniye"@tr ;
    dcterms:description "unit for the ability of a material to allow the transition of the steam"^^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:exactMatch unit:S-PER-M ;
    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 -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind quantitykind:VapourPermeance ;
    qudt:iec61360Code "0112/2///62720#UAB481"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB481"^^xsd:anyURI,
        "https://en.wikipedia.org/wiki/Perm_(unit)"^^xsd:anyURI ;
    qudt:symbol "kg/(m²·Pa·s)"^^xsd:string ;
    qudt:ucumCode "kg.m-2.Pa-1.s-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "Q28"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloGM-PER-MilliM a qudt:Unit ;
    rdfs:label "Kilogram per Millimetre"^^xsd:string,
        "Kilogram na Millimetr"@cs,
        "Kilogramm pro Millimeter"@de,
        "Kilogram per Millimetre"@en,
        "Kilogram per Millimeter"@en-us,
        "Kilogramo por Millimetro"@es,
        "Kilogramme par Millimètre"@fr,
        "Chilogrammo per Millimetro"@it,
        "Kilogram per Millimeter"@ms,
        "Kilogram na Millimetr"@pl,
        "Kilogram pe Millimetru"@ro,
        "Kilogram na Millimeter"@sl,
        "Kilogram per Millimetre"@tr ;
    dcterms:description "SI base unit kilogram 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 1000.0 ;
    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:MilliM ] ;
    qudt:hasQuantityKind quantitykind:LinearDensity,
        quantitykind:MassPerLength ;
    qudt:iec61360Code "0112/2///62720#UAB070"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB070"^^xsd:anyURI ;
    qudt:plainTextDescription "SI base unit kilogram divided by the 0.001-fold of the SI base unit metre"^^xsd:string ;
    qudt:symbol "kg/mm"^^xsd:string ;
    qudt:ucumCode "kg.mm-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "KW"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q106645237> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloGM-PER-PA-SEC-M a qudt:Unit ;
    rdfs:label "Kilogram per Pascal Second Metre"^^xsd:string,
        "Килограм на Паскал Секунда Метър"@bg,
        "Kilogram na Pascal Sekunda Metr"@cs,
        "Kilogramm pro Pascal Sekunde Meter"@de,
        "Χιλιόγραμμο ανά Πασκάλ Δευτερόλεπτο Μέτρο"@el,
        "Kilogram per Pascal Second Metre"@en,
        "Kilogram per Pascal Second Meter"@en-us,
        "Kilogramo por Pascal Segundo Metro"@es,
        "Kilogramme par Pascal Seconde Mètre"@fr,
        "Chilogrammo per Pascal Secondo Metro"@it,
        "Chiliogramma per Pascalium Secundum Metrum"@la,
        "Kilogram per Pascal Saat Meter"@ms,
        "Kilogram na Paskal Sekunda Metr"@pl,
        "Quilograma por Pascal Segundo Metro"@pt,
        "Kilogram pe Pascal Secundă Metru"@ro,
        "Килограмм на Паскаль Секунда Метр"@ru,
        "Kilogram na Pascal Sekunda Meter"@sl,
        "Kilogram per Pascal 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/A0E0L0I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ],
        [ 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:KiloGM ] ;
    qudt:hasQuantityKind quantitykind:VapourPermeability,
        quantitykind:WaterVaporDiffusionCoefficient ;
    qudt:plainTextDescription "Common unit for the Water vapour diffusion coefficient"^^xsd:string ;
    qudt:symbol "kg/(Pa·s·m)"^^xsd:string ;
    qudt:ucumCode "kg.Pa-1.s-1.m-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloGRAY a qudt:Unit ;
    rdfs:label "Kilogray"^^xsd:string,
        "Kilogray"@cs,
        "Kilogray"@de,
        "Kilogray"@en,
        "Kilogray"@es,
        "Kilogray"@fr,
        "Kilogray"@hu,
        "Chilogray"@it,
        "Kilogray"@ms,
        "Kilogrej"@pl,
        "Kilogray"@ro,
        "Kilogray"@sl,
        "Kilogray"@tr ;
    dcterms:description "1,000-fold of the unit gray"^^xsd:string ;
    qudt:conversionMultiplier 1000.0 ;
    qudt:conversionMultiplierSN 1e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T-2D0> ;
    qudt:hasQuantityKind quantitykind:AbsorbedDose,
        quantitykind:Kerma ;
    qudt:iec61360Code "0112/2///62720#UAB504"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB504"^^xsd:anyURI ;
    qudt:prefix <http://qudt.org/vocab/prefix/Kilo> ;
    qudt:scalingOf unit:GRAY ;
    qudt:symbol "kGy"^^xsd:string ;
    qudt:ucumCode "kGy"^^qudt:UCUMcs ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q94487750> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloH a qudt:Unit ;
    rdfs:label "Kilohenry"^^xsd:string,
        "Kilohenry"@cs,
        "Kilohenry"@de,
        "Kilohenry"@en,
        "Kilohenrio"@es,
        "Kilohenry"@fr,
        "Kilohenry"@hu,
        "Chilohenry"@it,
        "Kilohenry"@ms,
        "Kilohenr"@pl,
        "Kilohenry"@ro,
        "Kilohenry"@sl,
        "Kilohenry"@tr ;
    dcterms:description "1,000-fold of the SI derived unit henry"^^xsd:string ;
    qudt:conversionMultiplier 1000.0 ;
    qudt:conversionMultiplierSN 1e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-2L2I0M1H0T-2D0> ;
    qudt:hasQuantityKind quantitykind:Inductance ;
    qudt:iec61360Code "0112/2///62720#UAB386"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB386"^^xsd:anyURI ;
    qudt:prefix <http://qudt.org/vocab/prefix/Kilo> ;
    qudt:scalingOf unit:H ;
    qudt:symbol "kH"^^xsd:string ;
    qudt:ucumCode "kH"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "P24"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloJ-PER-K a qudt:Unit ;
    rdfs:label "Kilojoule per Kelvin"^^xsd:string,
        "Kilojoule na Kelvin"@cs,
        "Kilojoule pro Kelvin"@de,
        "Kilojoule per Kelvin"@en,
        "Kilojulio por Kelvin"@es,
        "Kilojoule par Kelvin"@fr,
        "Chilojoule per Kelvin"@it,
        "Kilojoule per Kelvin"@ms,
        "Kilodżul na Kelwin"@pl,
        "Kilojoule pe Kelvin"@ro,
        "Kilojoule na Kelvin"@sl,
        "Kilojoule per Kelvin"@tr ;
    dcterms:description "1 000-fold of the SI derived unit joule 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/A0E0L2I0M1H-1T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloJ ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ] ;
    qudt:hasQuantityKind quantitykind:EnergyPerTemperature ;
    qudt:iec61360Code "0112/2///62720#UAA569"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA569"^^xsd:anyURI ;
    qudt:plainTextDescription "1 000-fold of the SI derived unit joule divided by the SI base unit kelvin"^^xsd:string ;
    qudt:symbol "kJ/K"^^xsd:string ;
    qudt:ucumCode "kJ.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "B41"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloLB-PER-HR a qudt:Unit ;
    rdfs:label "Kilo Pound Mass per Hour"^^xsd:string,
        "Kilo Pound Mass per Hour"@en ;
    dcterms:description "1,000-fold of the unit of the mass avoirdupois pound according to the avoirdupois unit system divided by the unit hour"^^xsd:string ;
    qudt:conversionMultiplier 0.1259978805555555555555555555555556 ;
    qudt:conversionMultiplierSN 1.259979e-01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloLB ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ] ;
    qudt:hasQuantityKind quantitykind:MassFlowRate,
        quantitykind:MassPerTime ;
    qudt:iec61360Code "0112/2///62720#UAB391"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB391"^^xsd:anyURI ;
    qudt:symbol "klbm/h"^^xsd:string ;
    qudt:ucumCode "k[lb_av].h-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "M90"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloLB_F-FT-PER-A a qudt:Unit ;
    rdfs:label "Kilo Pound Force Foot per Ampere"^^xsd:string,
        "Kilo Pound Force Foot per Ampere"@en ;
    dcterms:description "product of the Anglo-American unit pound-force and foot divided by the SI base unit ampere"^^rdf:HTML ;
    qudt:conversionMultiplier 1355.81800916358032544 ;
    qudt:conversionMultiplierSN 1.355818e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-1L2I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:A ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloLB_F ] ;
    qudt:hasQuantityKind quantitykind:MagneticFlux ;
    qudt:iec61360Code "0112/2///62720#UAB483"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB483"^^xsd:anyURI ;
    qudt:plainTextDescription "product of the Anglo-American unit pound-force and foot divided by the SI base unit ampere"^^xsd:string ;
    qudt:symbol "klbf·ft/A"^^xsd:string ;
    qudt:ucumCode "k[lbf_av].[ft_i].A-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F22"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloLM a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Kilolumen"^^xsd:string,
        "Kilolumen"@cs,
        "Kilolumen"@de,
        "Kilolumen"@en,
        "Kilolumen"@es,
        "Kilolumen"@fr,
        "Kilolumen"@hu,
        "Chilolumen"@it,
        "Kilolumen"@ms,
        "Kilolumen"@pl,
        "Kilolumen"@ro,
        "Kilolumen"@sl,
        "Kilolümen"@tr ;
    dcterms:description "The 1000-fold of the SI unit Lumen."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1000.0 ;
    qudt:conversionMultiplierSN 1e+03 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:derivedCoherentUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I1M0H0T0D0> ;
    qudt:hasQuantityKind quantitykind:LuminousFlux ;
    qudt:prefix <http://qudt.org/vocab/prefix/Kilo> ;
    qudt:scalingOf unit:LM ;
    qudt:symbol "klm"^^xsd:string ;
    qudt:ucumCode "klm"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloM2-PER-SEC2 a qudt:Unit ;
    rdfs:label "Square Kilometre per Square Second"^^xsd:string,
        "Čtvereční Kilometr na Čtvereční Sekunda"@cs,
        "Quadratkilometer pro Quadratsekunde"@de,
        "Square Kilometre per Square Second"@en,
        "Square Kilometer per Square Second"@en-us,
        "Kilometro Cuadrado por Segundo Cuadrado"@es,
        "Kilomètre Carré par Seconde Carré"@fr,
        "Chilometro Quadrato per Secondo Quadrato"@it,
        "Kilometer Persegi per Saat Persegi"@ms,
        "Kilometr Kwadratowy na Sekunda Kwadratowy"@pl,
        "Kilometru Pătrat pe Secundă Pătrat"@ro,
        "Kvadratni Kilometer na Kvadratni Sekunda"@sl,
        "Kilometrekare 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 1000000.0 ;
    qudt:conversionMultiplierSN 1e+06 ;
    qudt:exactMatch unit:GigaPA-CentiM3-PER-GM ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:KiloM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind quantitykind:SpecificModulus ;
    qudt:symbol "km²/s²"^^xsd:string ;
    qudt:ucumCode "km2.s-2"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloN-PER-M3 a qudt:Unit ;
    rdfs:label "Kilonewton per Cubic Metre"^^xsd:string,
        "Kilonewton na Metr Krychlový"@cs,
        "Kilonewton pro Kubikmeter"@de,
        "Kilonewton per Cubic Metre"@en,
        "Kilonewton per Cubic Meter"@en-us,
        "Kilonewton por Metro Cúbico"@es,
        "Kilonewton par Mètre Cube"@fr,
        "Chilonewton per Metro Cubo"@it,
        "Kilonewton per Meter Kubik"@ms,
        "Kiloniuton na Metr Sześcienny"@pl,
        "Kilonewton pe Metru Cub"@ro,
        "Kilonewton na Kubični Meter"@sl,
        "Kilonewton per Metreküp"@tr ;
    dcterms:description "1,000-fold of the SI derived unit newton divided by the cube of the SI base unit metre"^^xsd:string ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    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 -3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloN ] ;
    qudt:hasQuantityKind quantitykind:ModulusOfSubgradeReaction,
        quantitykind:SpecificWeight ;
    qudt:symbol "kN/m³"^^xsd:string ;
    qudt:ucumCode "kN.m-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloPOISE a qudt:Unit ;
    rdfs:label "Kilopoise"^^xsd:string,
        "Kilopoise"@en ;
    dcterms:description "The kilopoise is a non-SI unit of dynamic viscosity, the 1 000-fold of the unit Poise."^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-GAUSS> ;
    qudt:conversionMultiplier 100.0 ;
    qudt:conversionMultiplierSN 1e+02 ;
    qudt:derivedUnitOfSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-GAUSS> ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-1D0> ;
    qudt:hasQuantityKind quantitykind:DynamicViscosity,
        quantitykind:Viscosity ;
    qudt:prefix <http://qudt.org/vocab/prefix/Kilo> ;
    qudt:scalingOf unit:POISE ;
    qudt:symbol "kP"^^xsd:string ;
    qudt:ucumCode "kP"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloR a qudt:Unit ;
    rdfs:label "Kiloroentgen"^^xsd:string,
        "Kiloroentgen"@en ;
    dcterms:description "1 000-fold of the unit roentgen"^^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.258 ;
    qudt:conversionMultiplierSN 2.58e-01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L0I0M-1H0T1D0> ;
    qudt:hasQuantityKind quantitykind:ElectricChargePerMass ;
    qudt:iec61360Code "0112/2///62720#UAB057"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB057"^^xsd:anyURI ;
    qudt:plainTextDescription "1 000-fold of the unit roentgen"^^xsd:string ;
    qudt:prefix <http://qudt.org/vocab/prefix/Kilo> ;
    qudt:scalingOf unit:R ;
    qudt:symbol "kR"^^xsd:string ;
    qudt:ucumCode "kR"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "KR"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q106617397> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloVA-PER-K a qudt:Unit ;
    rdfs:label "Kilo Volt Ampere per Kelvin"^^xsd:string,
        "Kilovoltampere pro Kelvin"@de,
        "Kilo Volt Ampere per Kelvin"@en,
        "Kilovoltiamperio por Kelvin"@es,
        "Kilovoltampère par Kelvin"@fr,
        "Chilo Volt Ampere per Kelvin"@it ;
    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 ;
    qudt:conversionMultiplier 1000.0 ;
    qudt:conversionMultiplierSN 1e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H-1T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloVA ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ] ;
    qudt:hasQuantityKind quantitykind: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 "kVA/K"^^xsd:string ;
    qudt:ucumCode "kVA.K-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloVAR-PER-K a qudt:Unit ;
    rdfs:label "Kilo Volt Ampere Reactive per Kelvin"^^xsd:string,
        "Kilo Volt 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 ;
    qudt:conversionMultiplier 1000.0 ;
    qudt:conversionMultiplierSN 1e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H-1T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloVAR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ] ;
    qudt:hasQuantityKind quantitykind: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 "kVA{Reactive}/K"^^xsd:string ;
    qudt:ucumCode "kVA{reactive}.K-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:L-PER-MOL-SEC a qudt:Unit ;
    rdfs:label "Litre per Mole Second"^^xsd:string,
        "Litre per Mole Second"@en,
        "Liter per Mole Second"@en-us ;
    dcterms:description "0.001-fold of the power of the SI base unit metre with the exponent 3 divided by the product out of the SI base unit mol and the SI base unit second"^^qudt:LatexString ;
    qudt:conversionMultiplier 0.001 ;
    qudt:conversionMultiplierSN 1e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A-1E0L3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:L ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MOL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind quantitykind:AtmosphericHydroxylationRate,
        quantitykind:SecondOrderReactionRateConstant ;
    qudt:iec61360Code "0112/2///62720#UAD915"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD915"^^xsd:anyURI ;
    qudt:symbol "L/(mol·s)"^^xsd:string ;
    qudt:ucumCode "L.mol-1.s-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-PER-FT-DAY a qudt:Unit ;
    rdfs:label "Pound Mass per Foot Day"^^xsd:string,
        "Pound Mass per Foot Day"@en ;
    dcterms:description "unit of the dynamic viscosity according to the Anglo-American unit system"^^xsd:string ;
    qudt:conversionMultiplier 0.00001722411971724020608535044230582288 ;
    qudt:conversionMultiplierSN 1.722412e-05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DAY ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ] ;
    qudt:hasQuantityKind quantitykind:DynamicViscosity,
        quantitykind:Viscosity ;
    qudt:iec61360Code "0112/2///62720#UAB436"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB436"^^xsd:anyURI ;
    qudt:symbol "lbm/(ft·d)"^^xsd:string ;
    qudt:ucumCode "[lb_av].[ft_i]-1.d-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "N44"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-PER-FT-HR a qudt:Unit ;
    rdfs:label "Pound Mass per Foot Hour"^^xsd:string,
        "Pound Mass per Foot Hour"@en ;
    dcterms:description "\"Pound per Foot Hour\" is an Imperial unit for  'Dynamic Viscosity' expressed as $lb/(ft-h)$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 0.0004133788732137649460484106153397492 ;
    qudt:conversionMultiplierSN 4.133789e-04 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:expression "$lb/(ft-h)$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-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:HR ] ;
    qudt:hasQuantityKind quantitykind:DynamicViscosity,
        quantitykind:Viscosity ;
    qudt:iec61360Code "0112/2///62720#UAA674"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA674"^^xsd:anyURI ;
    qudt:symbol "lbm/(ft·h)"^^xsd:string ;
    qudt:ucumCode "[lb_av].[ft_i]-1.h-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "K67"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-PER-FT-MIN a qudt:Unit ;
    rdfs:label "Pound Mass per Foot Minute"^^xsd:string,
        "Pound Mass per Foot Minute"@en ;
    dcterms:description "unit of the dynamic viscosity according to the Anglo-American unit system"^^xsd:string ;
    qudt:conversionMultiplier 0.02480273239282589676290463692038496 ;
    qudt:conversionMultiplierSN 2.480273e-02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MIN ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ] ;
    qudt:hasQuantityKind quantitykind:DynamicViscosity,
        quantitykind:Viscosity ;
    qudt:iec61360Code "0112/2///62720#UAB435"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB435"^^xsd:anyURI ;
    qudt:symbol "lbm/(ft·min)"^^xsd:string ;
    qudt:ucumCode "[lb_av].[ft_i]-1.min-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "N43"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-PER-FT-SEC a qudt:Unit ;
    rdfs:label "Pound Mass per Foot Second"^^xsd:string,
        "Pound Mass per Foot Second"@en ;
    dcterms:description "\"Pound per Foot Second\" is an Imperial unit for  'Dynamic Viscosity' expressed as $lb/(ft-s)$."^^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-s)$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-1D0> ;
    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:FT ] ;
    qudt:hasQuantityKind quantitykind:DynamicViscosity,
        quantitykind:Viscosity ;
    qudt:iec61360Code "0112/2///62720#UAA675"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA675"^^xsd:anyURI ;
    qudt:symbol "lbm/(ft·s)"^^xsd:string ;
    qudt:ucumCode "[lb_av].[ft_i]-1.s-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "K68"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-PER-HR a qudt:Unit ;
    rdfs:label "Pound Mass per Hour"^^xsd:string,
        "Pound Mass per Hour"@en ;
    dcterms:description "Pound per hour is a mass flow unit. It is abbreviated as PPH or more conventionally as lb/h. Fuel flow for engines is usually expressed using this unit, it is particularly useful when dealing with gases or liquids as volume flow varies more with temperature and pressure. $1 lb/h = 0.4535927 kg/h = 126.00 mg/s$.  Minimum fuel intake on a jumbojet can be as low as 150 lb/h when idling, however this is not enough to sustain flight."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 0.0001259978805555555555555555555555556 ;
    qudt:conversionMultiplierSN 1.259979e-04 ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Pound_per_hour"^^xsd:anyURI ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:expression "$PPH$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ] ;
    qudt:hasQuantityKind quantitykind:MassFlowRate,
        quantitykind:MassPerTime ;
    qudt:iec61360Code "0112/2///62720#UAA682"^^xsd:string ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Pound_per_hour?oldid=328571072"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA682"^^xsd:anyURI ;
    qudt:symbol "lbm/h"^^xsd:string ;
    qudt:ucumCode "[lb_av].h-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "4U"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q7235648> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-PER-MIN a qudt:Unit ;
    rdfs:label "Pound Mass per Minute"^^xsd:string,
        "Pound Mass per Minute"@en ;
    dcterms:description "\"Pound per Minute\" is an Imperial unit for  'Mass Per Time' expressed as $lb/min$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 0.007559872833333333333333333333333335 ;
    qudt:conversionMultiplierSN 7.559873e-03 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:expression "$lb/min$"^^qudt:LatexString ;
    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:LB ] ;
    qudt:hasQuantityKind quantitykind:MassFlowRate,
        quantitykind:MassPerTime ;
    qudt:iec61360Code "0112/2///62720#UAA689"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA689"^^xsd:anyURI ;
    qudt:symbol "lbm/min"^^xsd:string ;
    qudt:ucumCode "[lb_av].min-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "K78"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB_F-SEC-PER-FT2 a qudt:Unit ;
    rdfs:label "Pound Force Second per Square Foot"^^xsd:string,
        "Pound Force Second per Square Foot"@en ;
    dcterms:description "\"Pound Force Second per Square Foot\" is an Imperial unit for  'Dynamic Viscosity' expressed as $lbf-s/ft^{2}$."^^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>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:expression "$lbf-s/ft^2$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ 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:FT ] ;
    qudt:hasQuantityKind quantitykind:DynamicViscosity,
        quantitykind:Viscosity ;
    qudt:iec61360Code "0112/2///62720#UAA707"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA707"^^xsd:anyURI ;
    qudt:symbol "lbf·s/ft²"^^xsd:string ;
    qudt:ucumCode "[lbf_av].s.[ft_i]-2"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "K91"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB_F-SEC-PER-IN2 a qudt:Unit ;
    rdfs:label "Pound Force Second per Square Inch"^^xsd:string,
        "Pound Force Second per Square Inch"@en ;
    dcterms:description "\"Pound Force Second per Square Inch\" is an Imperial unit for  'Dynamic Viscosity' expressed as $lbf-s/in^{2}$."^^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:definedUnitOfSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:expression "$lbf-s/in^{2}$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-1D0> ;
    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 quantitykind:DynamicViscosity,
        quantitykind:Viscosity ;
    qudt:iec61360Code "0112/2///62720#UAA708"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA708"^^xsd:anyURI ;
    qudt:symbol "lbf·s/in²"^^xsd:string ;
    qudt:ucumCode "[lbf_av].s.[in_i]-2"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "K92"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M-K-PER-W a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Metre Kelvin per Watt"^^xsd:string,
        "Метър Келвин на Ват"@bg,
        "Metr Kelvin na Watt"@cs,
        "Meter Kelvin pro Watt"@de,
        "Μέτρο Κέλβιν ανά Βατ"@el,
        "Metre Kelvin per Watt"@en,
        "Meter Kelvin per Watt"@en-us,
        "Metro Kelvin por Vatio"@es,
        "Mètre Kelvin par Watt"@fr,
        "Metro Kelvin per Watt"@it,
        "Metrum Kelvin per Wattium"@la,
        "Meter Kelvin per Watt"@ms,
        "Metr Kelwin na Wat"@pl,
        "Metro Kelvin por Watt"@pt,
        "Metru Kelvin pe Watt"@ro,
        "Метр Кельвин на Ватт"@ru,
        "Meter Kelvin na Watt"@sl,
        "Metre Kelvin per Watt"@tr ;
    dcterms:description "$\\textit{Meter Kelvin per Watt}$ is a unit for 'Thermal Resistivity' expressed as $K-m/W$."^^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 "$K-m/W$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M-1H1T3D0> ;
    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:K ] ;
    qudt:hasQuantityKind quantitykind:ThermalResistivity ;
    qudt:hasReciprocalUnit unit:W-PER-M-K ;
    qudt:symbol "m·K/W"^^xsd:string ;
    qudt:ucumCode "m.K.W-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "H35"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q84451486> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M-PER-FARAD a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Metre per Farad"^^xsd:string,
        "Метър на Фарад"@bg,
        "Metr na Farad"@cs,
        "Meter pro Farad"@de,
        "Μέτρο ανά Φαράντ"@el,
        "Metre per Farad"@en,
        "Meter per Farad"@en-us,
        "Metro por Faradio"@es,
        "Mètre par Farad"@fr,
        "Metro per Farad"@it,
        "Metrum per Faradium"@la,
        "Meter per Farad"@ms,
        "Metr na Farad"@pl,
        "Metro por Farad"@pt,
        "Metru pe Farad"@ro,
        "Метр на Фарада"@ru,
        "Meter na Farad"@sl,
        "Metre per Farad"@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:derivedCoherentUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:expression "$m-per-f$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-2L3I0M1H0T-4D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:FARAD ] ;
    qudt:hasQuantityKind quantitykind:InversePermittivity ;
    qudt:hasReciprocalUnit unit:FARAD-PER-M ;
    qudt:symbol "m/F"^^xsd:string ;
    qudt:ucumCode "m.F-1"^^qudt:UCUMcs ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q24666811> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M-PER-HA a qudt:Unit ;
    rdfs:label "Metre per Hectare"^^xsd:string,
        "Metre per Hectare"@en,
        "Meter per Hectare"@en-us ;
    dcterms:description "A rate of change of SI standard unit length per hectare (squared hectometer) area."@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.0001 ;
    qudt:conversionMultiplierSN 1e-04 ;
    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:HA ] ;
    qudt:hasQuantityKind quantitykind:InverseLength ;
    qudt:symbol "m/ha"^^xsd:string ;
    qudt:ucumCode "m.har-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M-PER-K a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Metre per Kelvin"^^xsd:string,
        "Метър на Келвин"@bg,
        "Metr na Kelvin"@cs,
        "Meter pro Kelvin"@de,
        "Μέτρο ανά Κέλβιν"@el,
        "Metre per Kelvin"@en,
        "Meter per Kelvin"@en-us,
        "Metro por Kelvin"@es,
        "Mètre par Kelvin"@fr,
        "Metro per Kelvin"@it,
        "Metrum per Kelvin"@la,
        "Meter per Kelvin"@ms,
        "Metr na Kelwin"@pl,
        "Metro por Kelvin"@pt,
        "Metru pe Kelvin"@ro,
        "Метр на Кельвин"@ru,
        "Meter na Kelvin"@sl,
        "Metre 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 "$m-per-k$"^^qudt:LatexString ;
    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:M ] ;
    qudt:hasQuantityKind quantitykind:LinearThermalExpansion ;
    qudt:hasReciprocalUnit unit:K-PER-M ;
    qudt:iec61360Code "0112/2///62720#UAA728"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA728"^^xsd:anyURI ;
    qudt:symbol "m/K"^^xsd:string ;
    qudt:ucumCode "m.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F52"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M-PER-PA a qudt:Unit ;
    rdfs:label "Metre per Pascal"^^xsd:string,
        "Метър на Паскал"@bg,
        "Metr na Pascal"@cs,
        "Meter pro Pascal"@de,
        "Μέτρο ανά Πασκάλ"@el,
        "Metre per Pascal"@en,
        "Meter per Pascal"@en-us,
        "Metro por Pascal"@es,
        "Mètre par Pascal"@fr,
        "Metro per Pascal"@it,
        "Metrum per Pascalium"@la,
        "Meter per Pascal"@ms,
        "Metr na Paskal"@pl,
        "Metro por Pascal"@pt,
        "Metru pe Pascal"@ro,
        "Метр на Паскаль"@ru,
        "Meter na Pascal"@sl,
        "Metre per Pascal"@tr ;
    dcterms:description "SI base unit metre divided by the SI derived unit pascal"^^xsd:string ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M-1H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:PA ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind quantitykind:Unknown ;
    qudt:hasReciprocalUnit unit:PA-PER-M ;
    qudt:iec61360Code "0112/2///62720#UAB315"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB315"^^xsd:anyURI ;
    qudt:symbol "m/Pa"^^xsd:string ;
    qudt:ucumCode "m.Pa-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "M53"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M-PER-RAD a qudt:Unit ;
    rdfs:label "Metre per Radian"^^xsd:string,
        "Метър на Радиан"@bg,
        "Metr na Radián"@cs,
        "Meter pro Radiant"@de,
        "Μέτρο ανά Ακτίνιο"@el,
        "Metre per Radian"@en,
        "Meter per Radian"@en-us,
        "Metro por Radián"@es,
        "Mètre par Radian"@fr,
        "Metro per Radiante"@it,
        "Metrum per Radian"@la,
        "Meter per Radian"@ms,
        "Metr na Radian"@pl,
        "Metro por Radiano"@pt,
        "Metru pe Radian"@ro,
        "Метр на Радиан"@ru,
        "Meter na Radian"@sl,
        "Metre per Radyan"@tr ;
    dcterms:description "unit of the translation factor for implementation from rotation to linear move according"^^xsd:string ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:RAD ] ;
    qudt:hasQuantityKind quantitykind:Rotary-TranslatoryMotionConversion ;
    qudt:hasReciprocalUnit unit:RAD-PER-M ;
    qudt:iec61360Code "0112/2///62720#UAB482"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB482"^^xsd:anyURI ;
    qudt:symbol "m/rad"^^xsd:string ;
    qudt:ucumCode "m.rad-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "M55"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M-PER-SEC-PA a qudt:Unit ;
    rdfs:label "Metre per Second Pascal"^^xsd:string,
        "Метър на Секунда Паскал"@bg,
        "Metr na Sekunda Pascal"@cs,
        "Meter pro Sekunde Pascal"@de,
        "Μέτρο ανά Δευτερόλεπτο Πασκάλ"@el,
        "Metre per Second Pascal"@en,
        "Meter per Second Pascal"@en-us,
        "Metro por Segundo Pascal"@es,
        "Mètre par Seconde Pascal"@fr,
        "Metro per Secondo Pascal"@it,
        "Metrum per Secundum Pascalium"@la,
        "Meter per Saat Pascal"@ms,
        "Metr na Sekunda Paskal"@pl,
        "Metro por Segundo Pascal"@pt,
        "Metru pe Secundă Pascal"@ro,
        "Метр на Секунда Паскаль"@ru,
        "Meter na Sekunda Pascal"@sl,
        "Metre per Saniye Pascal"@tr ;
    dcterms:description "SI base unit 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/A0E0L2I0M-1H0T1D0> ;
    qudt:hasFactorUnit [ 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:M ] ;
    qudt:hasQuantityKind quantitykind:Unknown ;
    qudt:hasReciprocalUnit unit:PA-SEC-PER-M ;
    qudt:iec61360Code "0112/2///62720#UAA734"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA734"^^xsd:anyURI ;
    qudt:symbol "m/(s·Pa)"^^xsd:string ;
    qudt:ucumCode "m.s-1.Pa-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "M59"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M-PER-V-SEC a qudt:Unit ;
    rdfs:label "Metre per Volt Second"^^xsd:string,
        "Метър на Волт Секунда"@bg,
        "Metr na Volt Sekunda"@cs,
        "Meter pro Volt Sekunde"@de,
        "Μέτρο ανά Βολτ Δευτερόλεπτο"@el,
        "Metre per Volt Second"@en,
        "Meter per Volt Second"@en-us,
        "Metro por Voltio Segundo"@es,
        "Mètre par Volt Seconde"@fr,
        "Metro per Volt Secondo"@it,
        "Metrum per Voltium Secundum"@la,
        "Meter per Volt Saat"@ms,
        "Metr na Wolt Sekunda"@pl,
        "Metro por Volt Segundo"@pt,
        "Metru pe Volt Secundă"@ro,
        "Метр на Вольт Секунда"@ru,
        "Meter na Volt Sekunda"@sl,
        "Metre per Volt Saniye"@tr ;
    dcterms:description "SI base unit metre divided by the product of the SI derived unit volt and the SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L-1I0M-1H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:V ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind quantitykind:MagneticReluctivity ;
    qudt:hasReciprocalUnit unit:V-SEC-PER-M ;
    qudt:iec61360Code "0112/2///62720#UAD917"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD917"^^xsd:anyURI ;
    qudt:symbol "m/(V·s)"^^xsd:string ;
    qudt:ucumCode "m.V-1.s-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "H58"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M-SEC a qudt:Unit ;
    rdfs:label "Metre Second"^^xsd:string,
        "Метър Секунда"@bg,
        "Metr Sekunda"@cs,
        "Meter Sekunde"@de,
        "Μέτρο Δευτερόλεπτο"@el,
        "Metre Second"@en,
        "Meter Second"@en-us,
        "Metro Segundo"@es,
        "Mètre Seconde"@fr,
        "Metro Secondo"@it,
        "Metrum Secundum"@la,
        "Meter Saat"@ms,
        "Metr Sekunda"@pl,
        "Metro Segundo"@pt,
        "Metru Secundă"@ro,
        "Метр Секунда"@ru,
        "Meter Sekunda"@sl,
        "Metre Saniye"@tr ;
    dcterms:description "product of SI base units metre 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/A0E0L1I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind quantitykind:Unknown ;
    qudt:hasReciprocalUnit unit:PER-M-SEC ;
    qudt:iec61360Code "0112/2///62720#UAD686"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD686"^^xsd:anyURI ;
    qudt:symbol "m·s"^^xsd:string ;
    qudt:ucumCode "m.s"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M2-PER-J a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Square Metre per Joule"^^xsd:string,
        "Квадратен Метър на Джаул"@bg,
        "Čtvereční Metr na Joule"@cs,
        "Quadratmeter pro Joule"@de,
        "Τετραγωνικό Μέτρο ανά Τζάουλ"@el,
        "Square Metre per Joule"@en,
        "Square Meter per Joule"@en-us,
        "Metro Cuadrado por Julio"@es,
        "Mètre Carré par Joule"@fr,
        "Metro Quadrato per Joule"@it,
        "Metrum Quadratum per Joulium"@la,
        "Meter Persegi per Joule"@ms,
        "Metr Kwadratowy na Dżul"@pl,
        "Metro Quadrado por Joule"@pt,
        "Metru Pătrat pe Joule"@ro,
        "Квадратный Метр на Джоуль"@ru,
        "Kvadratni Meter na Joule"@sl,
        "Metrekare per 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/j$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M-1H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:J ],
        [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind quantitykind:SpectralCrossSection ;
    qudt:hasReciprocalUnit unit:J-PER-M2 ;
    qudt:iec61360Code "0112/2///62720#UAA745"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA745"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:symbol "m²/J"^^xsd:string ;
    qudt:ucumCode "m2.J-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "D20"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q98267267> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M2-PER-KiloW a qudt:Unit ;
    rdfs:label "Square Metre per Kilowatt"^^xsd:string,
        "Čtvereční Metr na Kilowatt"@cs,
        "Quadratmeter pro Kilowatt"@de,
        "Square Metre per Kilowatt"@en,
        "Square Meter per Kilowatt"@en-us,
        "Metro Cuadrado por Kilovatio"@es,
        "Mètre Carré par Kilowatt"@fr,
        "Metro Quadrato per Chilowatt"@it,
        "Meter Persegi per Kilowatt"@ms,
        "Metr Kwadratowy na Kilowat"@pl,
        "Metru Pătrat pe Kilowatt"@ro,
        "Kvadratni Meter na Kilowatt"@sl,
        "Metrekare per Kilowatt"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.001 ;
    qudt:conversionMultiplierSN 1e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M-1H0T3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:KiloW ] ;
    qudt:hasQuantityKind quantitykind:AreaPerPower ;
    qudt:hasReciprocalUnit unit:KiloW-PER-M2 ;
    qudt:plainTextDescription "A common unit for measuring area per power"^^xsd:string ;
    qudt:symbol "m²/kW"^^xsd:string ;
    qudt:ucumCode "m2.kW-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M2-PER-M a qudt:Unit ;
    rdfs:label "Square Metre per Metre"^^xsd:string,
        "Квадратен Метър на Метър"@bg,
        "Čtvereční Metr na Metr"@cs,
        "Quadratmeter pro Meter"@de,
        "Τετραγωνικό Μέτρο ανά Μέτρο"@el,
        "Square Metre per Metre"@en,
        "Square Meter per Meter"@en-us,
        "Metro Cuadrado por Metro"@es,
        "Mètre Carré par Mètre"@fr,
        "Metro Quadrato per Metro"@it,
        "Metrum Quadratum per Metrum"@la,
        "Meter Persegi per Meter"@ms,
        "Metr Kwadratowy na Metr"@pl,
        "Metro Quadrado por Metro"@pt,
        "Metru Pătrat pe Metru"@ro,
        "Квадратный Метр на Метр"@ru,
        "Kvadratni Meter na Meter"@sl,
        "Metrekare per 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/A0E0L1I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind quantitykind:AreaPerLength ;
    qudt:hasReciprocalUnit unit:M-PER-M2 ;
    qudt:plainTextDescription "square metre divided by metre: plain text description in English"^^xsd:string ;
    qudt:symbol "m²/m"^^xsd:string ;
    qudt:ucumCode "m2.m-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M2-PER-M2 a qudt:Unit ;
    rdfs:label "Square Metre per Square Metre"^^xsd:string,
        "Квадратен Метър на Квадратен Метър"@bg,
        "Čtvereční Metr na Čtvereční Metr"@cs,
        "Quadratmeter pro Quadratmeter"@de,
        "Τετραγωνικό Μέτρο ανά Τετραγωνικό Μέτρο"@el,
        "Square Metre per Square Metre"@en,
        "Square Meter per Square Meter"@en-us,
        "Metro Cuadrado por Metro Cuadrado"@es,
        "Mètre Carré par Mètre Carré"@fr,
        "Metro Quadrato per Metro Quadrato"@it,
        "Metrum Quadratum per Metrum Quadratum"@la,
        "Meter Persegi per Meter Persegi"@ms,
        "Metr Kwadratowy na Metr Kwadratowy"@pl,
        "Metro Quadrado por Metro Quadrado"@pt,
        "Metru Pătrat pe Metru Pătrat"@ro,
        "Квадратный Метр на Квадратный Метр"@ru,
        "Kvadratni Meter na Kvadratni Meter"@sl,
        "Metrekare per Metrekare"@tr ;
    dcterms:description "A square metre unit of area per square 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:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind quantitykind:AreaRatio ;
    qudt:hasReciprocalUnit unit:SR ;
    qudt:plainTextDescription "A square metre unit of area per square metre"^^xsd:string ;
    qudt:qkdvDenominator <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T0D0> ;
    qudt:qkdvNumerator <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T0D0> ;
    qudt:symbol "m²/m²"^^xsd:string ;
    qudt:ucumCode "m2.m-2"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M2-PER-SEC2-K a qudt:Unit ;
    rdfs:label "Square Metre per Square Second Kelvin"^^xsd:string,
        "Квадратен Метър на Квадратен Секунда Келвин"@bg,
        "Čtvereční Metr na Čtvereční Sekunda Kelvin"@cs,
        "Quadratmeter pro Quadratsekunde Kelvin"@de,
        "Τετραγωνικό Μέτρο ανά Τετραγωνικό Δευτερόλεπτο Κέλβιν"@el,
        "Square Metre per Square Second Kelvin"@en,
        "Square Meter per Square Second Kelvin"@en-us,
        "Metro Cuadrado por Segundo Cuadrado Kelvin"@es,
        "Mètre Carré par Seconde Carré Kelvin"@fr,
        "Metro Quadrato per Secondo Quadrato Kelvin"@it,
        "Metrum Quadratum per Secundum Quadratum Kelvin"@la,
        "Meter Persegi per Saat Persegi Kelvin"@ms,
        "Metr Kwadratowy na Sekunda Kwadratowy Kelwin"@pl,
        "Metro Quadrado por Segundo Quadrado Kelvin"@pt,
        "Metru Pătrat pe Secundă Pătrat Kelvin"@ro,
        "Квадратный Метр на Квадратный Секунда Кельвин"@ru,
        "Kvadratni Meter na Kvadratni Sekunda Kelvin"@sl,
        "Metrekare per Saniyekare Kelvin"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H-1T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind quantitykind:SpecificHeatCapacity ;
    qudt:plainTextDescription "Unit for expressing the specific heat capacity."^^xsd:string ;
    qudt:symbol "m²/(s²·K)"^^xsd:string ;
    qudt:ucumCode "m2.s-2.K-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M2-PER-V-SEC a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Square Metre per Volt Second"^^xsd:string,
        "Квадратен Метър на Волт Секунда"@bg,
        "Čtvereční Metr na Volt Sekunda"@cs,
        "Quadratmeter pro Volt Sekunde"@de,
        "Τετραγωνικό Μέτρο ανά Βολτ Δευτερόλεπτο"@el,
        "Square Metre per Volt Second"@en,
        "Square Meter per Volt Second"@en-us,
        "Metro Cuadrado por Voltio Segundo"@es,
        "Mètre Carré par Volt Seconde"@fr,
        "Metro Quadrato per Volt Secondo"@it,
        "Metrum Quadratum per Voltium Secundum"@la,
        "Meter Persegi per Volt Saat"@ms,
        "Metr Kwadratowy na Wolt Sekunda"@pl,
        "Metro Quadrado por Volt Segundo"@pt,
        "Metru Pătrat pe Volt Secundă"@ro,
        "Квадратный Метр на Вольт Секунда"@ru,
        "Kvadratni Meter na Volt Sekunda"@sl,
        "Metrekare per Volt Saniye"@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:expression "$m^2/v-s$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L0I0M-1H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:V ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind quantitykind:Mobility ;
    qudt:iec61360Code "0112/2///62720#UAA748"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA748"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:symbol "m²/(V·s)"^^xsd:string ;
    qudt:ucumCode "m2.V-1.s-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "D26"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q98813401> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M2-PER-W a qudt:Unit ;
    rdfs:label "Square Metre per Watt"^^xsd:string,
        "Квадратен Метър на Ват"@bg,
        "Čtvereční Metr na Watt"@cs,
        "Quadratmeter pro Watt"@de,
        "Τετραγωνικό Μέτρο ανά Βατ"@el,
        "Square Metre per Watt"@en,
        "Square Meter per Watt"@en-us,
        "Metro Cuadrado por Vatio"@es,
        "Mètre Carré par Watt"@fr,
        "Metro Quadrato per Watt"@it,
        "Metrum Quadratum per Wattium"@la,
        "Meter Persegi per Watt"@ms,
        "Metr Kwadratowy na Wat"@pl,
        "Metro Quadrado por Watt"@pt,
        "Metru Pătrat pe Watt"@ro,
        "Квадратный Метр на Ватт"@ru,
        "Kvadratni Meter na Watt"@sl,
        "Metrekare per Watt"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M-1H0T3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:W ],
        [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind quantitykind:AreaPerPower ;
    qudt:hasReciprocalUnit unit:W-PER-M2 ;
    qudt:plainTextDescription "A common unit for measuring area per power"^^xsd:string ;
    qudt:symbol "m²/W"^^xsd:string ;
    qudt:ucumCode "m2.W-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M3-PER-C a qudt:Unit ;
    rdfs:label "Cubic Metre per Coulomb"^^xsd:string,
        "Кубичен Метър на Кулон"@bg,
        "Metr Krychlový na Coulomb"@cs,
        "Kubikmeter pro Coulomb"@de,
        "Κυβικό Μέτρο ανά Κουλόμπ"@el,
        "Cubic Metre per Coulomb"@en,
        "Cubic Meter per Coulomb"@en-us,
        "Metro Cúbico por Culombio"@es,
        "Mètre Cube par Coulomb"@fr,
        "Metro Cubo per Coulomb"@it,
        "Metrum Cubicum per Coulombium"@la,
        "Meter Kubik per Coulomb"@ms,
        "Metr Sześcienny na Kulomb"@pl,
        "Metro Cúbico por Coulomb"@pt,
        "Metru Cub pe Coulomb"@ro,
        "Кубический Метр на Кулон"@ru,
        "Kubični Meter na Coulomb"@sl,
        "Metreküp per Coulomb"@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 "$m^3/c$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-1L3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:C ],
        [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind quantitykind:HallCoefficient ;
    qudt:hasReciprocalUnit unit:C-PER-M3 ;
    qudt:iec61360Code "0112/2///62720#UAB143"^^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%23UAB143"^^xsd:anyURI ;
    qudt:symbol "m³/C"^^xsd:string ;
    qudt:ucumCode "m3.C-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "A38"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q105267497> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M3-PER-KiloGM-SEC2 a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Cubic Metre per Kilogram Square Second"^^xsd:string,
        "Кубичен Метър на Килограм Квадратен Секунда"@bg,
        "Metr Krychlový na Kilogram Čtvereční Sekunda"@cs,
        "Kubikmeter pro Kilogramm Quadratsekunde"@de,
        "Κυβικό Μέτρο ανά Χιλιόγραμμο Τετραγωνικό Δευτερόλεπτο"@el,
        "Cubic Metre per Kilogram Square Second"@en,
        "Cubic Meter per Kilogram Square Second"@en-us,
        "Metro Cúbico por Kilogramo Segundo Cuadrado"@es,
        "Mètre Cube par Kilogramme Seconde Carré"@fr,
        "Metro Cubo per Chilogrammo Secondo Quadrato"@it,
        "Metrum Cubicum per Chiliogramma Secundum Quadratum"@la,
        "Meter Kubik per Kilogram Saat Persegi"@ms,
        "Metr Sześcienny na Kilogram Sekunda Kwadratowy"@pl,
        "Metro Cúbico por Quilograma Segundo Quadrado"@pt,
        "Metru Cub pe Kilogram Secundă Pătrat"@ro,
        "Кубический Метр на Килограмм Квадратный Секунда"@ru,
        "Kubični Meter na Kilogram Kvadratni Sekunda"@sl,
        "Metreküp per 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:derivedCoherentUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:expression "$m^{3} kg^{-1} s^{-2}$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M-1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            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 quantitykind:Unknown ;
    qudt:symbol "m³/(kg·s²)"^^xsd:string ;
    qudt:ucumCode "m3.kg-1.s-2"^^qudt:UCUMcs ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q78336909> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M3-PER-MOL-SEC a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Cubic Metre per Mole Second"^^xsd:string,
        "Кубичен Метър на Мол Секунда"@bg,
        "Metr Krychlový na Mol Sekunda"@cs,
        "Kubikmeter pro Mol Sekunde"@de,
        "Κυβικό Μέτρο ανά Μολ Δευτερόλεπτο"@el,
        "Cubic Metre per Mole Second"@en,
        "Cubic Meter per Mole Second"@en-us,
        "Metro Cúbico por Mol Segundo"@es,
        "Mètre Cube par Mole Seconde"@fr,
        "Metro Cubo per Mole Secondo"@it,
        "Metrum Cubicum per Moles Secundum"@la,
        "Meter Kubik per Mole Saat"@ms,
        "Metr Sześcienny na Mol Sekunda"@pl,
        "Metro Cúbico por Mol Segundo"@pt,
        "Metru Cub pe Mol Secundă"@ro,
        "Кубический Метр на Моль Секунда"@ru,
        "Kubični Meter na Mol Sekunda"@sl,
        "Metreküp per Mol Saniye"@tr ;
    dcterms:description "A unit that is the SI base unit metre with the exponent 3 divided by the SI base unit mol multiplied by the SI base unit second."^^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/A-1E0L3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MOL ],
        [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind quantitykind:AtmosphericHydroxylationRate,
        quantitykind:SecondOrderReactionRateConstant ;
    qudt:symbol "m³/(mol·s)"^^xsd:string ;
    qudt:ucumCode "m3.mol-1.s-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M3-PER-SEC-PA a qudt:Unit ;
    rdfs:label "Cubic Metre per Second Pascal"^^xsd:string,
        "Кубичен Метър на Секунда Паскал"@bg,
        "Metr Krychlový na Sekunda Pascal"@cs,
        "Kubikmeter pro Sekunde Pascal"@de,
        "Κυβικό Μέτρο ανά Δευτερόλεπτο Πασκάλ"@el,
        "Cubic Metre per Second Pascal"@en,
        "Cubic Meter per Second Pascal"@en-us,
        "Metro Cúbico por Segundo Pascal"@es,
        "Mètre Cube par Seconde Pascal"@fr,
        "Metro Cubo per Secondo Pascal"@it,
        "Metrum Cubicum per Secundum Pascalium"@la,
        "Meter Kubik per Saat Pascal"@ms,
        "Metr Sześcienny na Sekunda Paskal"@pl,
        "Metro Cúbico por Segundo Pascal"@pt,
        "Metru Cub pe Secundă Pascal"@ro,
        "Кубический Метр на Секунда Паскаль"@ru,
        "Kubični Meter na Sekunda Pascal"@sl,
        "Metreküp per Saniye Pascal"@tr ;
    dcterms:description "power of the SI base unit meter by exponent 3 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/A0E0L4I0M-1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:PA ],
        [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind quantitykind:Unknown ;
    qudt:hasReciprocalUnit unit:PA-SEC-PER-M3 ;
    qudt:iec61360Code "0112/2///62720#UAB322"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB322"^^xsd:anyURI ;
    qudt:symbol "m³/(s·Pa)"^^xsd:string ;
    qudt:ucumCode "m3.s-1.Pa-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "N45"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MESH a qudt:Unit ;
    rdfs:label "Mesh"^^xsd:string,
        "Mesh"@en ;
    dcterms:description "\"Mesh\" is a measure of particle size or fineness of a woven product."@en ;
    qudt:conversionMultiplier 0.0 ;
    qudt:conversionMultiplierSN 0e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H0T0D0> ;
    qudt:hasQuantityKind quantitykind:InverseLength ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Mesh_(scale)"^^xsd:anyURI ;
    qudt:symbol "mesh"^^xsd:string ;
    qudt:ucumCode "[mesh_i]"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "57"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q691310> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MHO_Stat a qudt:Unit ;
    rdfs:label "Statmho"^^xsd:string,
        "Statmho"@en ;
    dcterms:description "\"StatMHO\" is the unit of conductance, admittance, and susceptance in the C.G.S e.s.u system of units. One $statmho$ is the conductance between two points in a conductor when a constant potential difference of $1 \\; statvolt$ applied between the points produces in the conductor a current of $1 \\; statampere$, the conductor not being the source of any electromotive force, approximately $1.1126 \\times 10^{-12} mho$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.0000000000011126500561 ;
    qudt:conversionMultiplierSN 1.11265e-12 ;
    qudt:exactMatch unit:S_Stat ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E2L-3I0M-1H0T3D0> ;
    qudt:hasQuantityKind quantitykind:ElectricConductivity ;
    qudt:informativeReference "http://www.sizes.com/units/statmho.htm"^^xsd:anyURI ;
    qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/statmho> ;
    qudt:scalingOf unit:S-PER-M ;
    qudt:symbol "stat℧"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q25098783> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MIL_Length a qudt:Unit ;
    rdfs:label "Mil"^^xsd:string,
        "Mil"@en ;
    dcterms:description "One thousandth of an inch"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 0.0000254 ;
    qudt:conversionMultiplierSN 2.54e-05 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:hasQuantityKind quantitykind:Distance ;
    qudt:scalingOf unit:IN ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MIN-PER-MI a qudt:Unit ;
    rdfs:label "Minute per International Mile"^^xsd:string,
        "Minute per International Mile"@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL> ;
    qudt:conversionMultiplier 0.03728227153424003817704605106179909 ;
    qudt:conversionMultiplierSN 3.728227e-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:MI ] ;
    qudt:hasQuantityKind quantitykind:Pace ;
    qudt:hasReciprocalUnit unit:MI-PER-MIN ;
    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/mi"^^xsd:string ;
    qudt:ucumCode "min.[mi_i]-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MIN-PER-NUM a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Minute per Number"^^xsd:string,
        "Minute per Number"@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 60.0 ;
    qudt:conversionMultiplierSN 6e+01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MIN ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:NUM ] ;
    qudt:hasQuantityKind quantitykind:TimePerCount ;
    qudt:hasReciprocalUnit unit:NUM-PER-MIN ;
    qudt:symbol "min/#"^^xsd:string ;
    qudt:ucumCode "min.{#}-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MOL-PER-M2 a qudt:Unit ;
    rdfs:label "Mole per Square Metre"^^xsd:string,
        "Мол на Квадратен Метър"@bg,
        "Mol na Čtvereční Metr"@cs,
        "Mol pro Quadratmeter"@de,
        "Μολ ανά Τετραγωνικό Μέτρο"@el,
        "Mole per Square Metre"@en,
        "Mole per Square Meter"@en-us,
        "Mol por Metro Cuadrado"@es,
        "Mole par Mètre Carré"@fr,
        "Mole per Metro Quadrato"@it,
        "Moles per Metrum Quadratum"@la,
        "Mole per Meter Persegi"@ms,
        "Mol na Metr Kwadratowy"@pl,
        "Mol por Metro Quadrado"@pt,
        "Mol pe Metru Pătrat"@ro,
        "Моль на Квадратный Метр"@ru,
        "Mol na Kvadratni Meter"@sl,
        "Mol per Metrekare"@tr ;
    dcterms:description "SI unit of quantity of matter per SI unit area."@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-2I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MOL ] ;
    qudt:hasQuantityKind quantitykind:Unknown ;
    qudt:hasReciprocalUnit unit:M2-PER-MOL ;
    qudt:symbol "mol/m²"^^xsd:string ;
    qudt:ucumCode "mol.m-2"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MX a qudt:Unit ;
    rdfs:label "Maxwell"^^xsd:string,
        "Maxwell"@en ;
    dcterms:description "\"Maxwell\" is a C.G.S System unit for  'Magnetic Flux' expressed as $Mx$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS> ;
    qudt:conversionMultiplier 0.00000001 ;
    qudt:conversionMultiplierSN 1e-08 ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Maxwell"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-1L2I0M1H0T-2D0> ;
    qudt:hasQuantityKind quantitykind:MagneticFlux ;
    qudt:iec61360Code "0112/2///62720#UAB155"^^xsd:string ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Maxwell?oldid=478391976"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB155"^^xsd:anyURI ;
    qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/maxwell> ;
    qudt:scalingOf unit:WB ;
    qudt:symbol "Mx"^^xsd:string ;
    qudt:ucumCode "Mx"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "B65"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q608697> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MebiBYTE a qudt:CountingUnit,
        qudt:Unit ;
    rdfs:label "Mebibyte"^^xsd:string,
        "Mebibyte"@en ;
    dcterms:description "The mebibyte is a multiple of the unit byte for digital information equivalent to $1024^{2} bytes$ or $2^{20} bytes$."^^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 5814539.98402260170213986871192106 ;
    qudt:conversionMultiplierSN 5.81454e+06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:InformationEntropy ;
    qudt:iec61360Code "0112/2///62720#UAA233"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA233"^^xsd:anyURI,
        "https://en.wikipedia.org/wiki/Byte#Multiple-byte_units"^^xsd:anyURI ;
    qudt:prefix <http://qudt.org/vocab/prefix/Mebi> ;
    qudt:scalingOf unit:BYTE ;
    qudt:symbol "MiB"^^xsd:string ;
    qudt:ucumCode "MiBy"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "E63"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q79758> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MegaBIT a qudt:Unit ;
    rdfs:label "Megabit"^^xsd:string,
        "Megabit"@en ;
    dcterms:description "1,000,000-fold of the unit bit"^^xsd:string ;
    qudt:conversionMultiplier 693147.18055994530941723212145818 ;
    qudt:conversionMultiplierSN 6.931472e+05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:DatasetOfBits ;
    qudt:iec61360Code "0112/2///62720#UAB171"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB171"^^xsd:anyURI ;
    qudt:prefix <http://qudt.org/vocab/prefix/Mega> ;
    qudt:scalingOf unit:BIT ;
    qudt:symbol "Mb"^^xsd:string ;
    qudt:ucumCode "Mbit"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "D36"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q3332814> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MegaBQ a qudt:Unit ;
    rdfs:label "Megabecquerel"^^xsd:string,
        "Megabecquerel"@cs,
        "Megabecquerel"@de,
        "Megabecquerel"@en,
        "Megabecquerel"@es,
        "Megabecquerel"@fr,
        "Megabecquerel"@hu,
        "Megabecquerel"@it,
        "Megabecquerel"@ms,
        "Megabekerel"@pl,
        "Megabecquerel"@ro,
        "Megabecquerel"@sl,
        "Megabekerel"@tr ;
    dcterms:description "1,000,000-fold of the derived 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 1000000.0 ;
    qudt:conversionMultiplierSN 1e+06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:hasQuantityKind quantitykind:Activity ;
    qudt:iec61360Code "0112/2///62720#UAA205"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA205"^^xsd:anyURI ;
    qudt:plainTextDescription "1,000,000-fold of the derived unit becquerel"^^xsd:string ;
    qudt:prefix <http://qudt.org/vocab/prefix/Mega> ;
    qudt:scalingOf unit:BQ ;
    qudt:symbol "MBq"^^xsd:string ;
    qudt:ucumCode "MBq"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "4N"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q94489429> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MegaBYTE-PER-SEC a qudt:Unit ;
    rdfs:label "Megabyte per Second"^^xsd:string,
        "Megabyte per Second"@en ;
    dcterms:description "1,000,000-fold of the unit byte devided by the SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 5545177.44447956247533785697166544 ;
    qudt:conversionMultiplierSN 5.545177e+06 ;
    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:MegaBYTE ] ;
    qudt:hasQuantityKind quantitykind:ByteRate ;
    qudt:iec61360Code "0112/2///62720#UAB307"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB307"^^xsd:anyURI ;
    qudt:symbol "MB/s"^^xsd:string ;
    qudt:ucumCode "MBy.s-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "P95"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MegaCCY_USD-PER-FLIGHT a qudt:ContextualUnit,
        qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Mega Us Dollar per Flight"^^xsd:string,
        "Mega Us Dollar per Flight"@en ;
    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 1000000.0 ;
    qudt:conversionMultiplierSN 1e+06 ;
    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:MegaCCY_USD ] ;
    qudt:hasQuantityKind quantitykind:CurrencyPerFlight ;
    qudt:symbol "M$/flight"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MegaCCY_USD-PER-YR a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Mega Us Dollar per Year"^^xsd:string,
        "Mega Us Dollar per Year"@en ;
    qudt:conversionMultiplier 0.03168808781402895023702689684893655 ;
    qudt:conversionMultiplierSN 3.168809e-02 ;
    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:MegaCCY_USD ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:YR ] ;
    qudt:hasQuantityKind quantitykind:Unknown ;
    qudt:symbol "M$/a"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MegaEV-FemtoM a qudt:Unit ;
    rdfs:label "Mega Electron Volt Femtometre"^^xsd:string,
        "Mega Electron Volt Femtometre"@en,
        "Mega Electron Volt Femtometer"@en-us ;
    dcterms:description "$\\textit{Mega Electron Volt Femtometer}$ is a unit for  'Length Energy' expressed as $MeV fm$."^^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.0000000000000000000000000001602176634 ;
    qudt:conversionMultiplierSN 1.602177e-28 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MegaEV ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:FemtoM ] ;
    qudt:hasQuantityKind quantitykind:LengthEnergy ;
    qudt:symbol "MeV·fm"^^xsd:string ;
    qudt:ucumCode "MeV.fm"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MegaGRAY a qudt:Unit ;
    rdfs:label "Megagray"^^xsd:string,
        "Megagray"@cs,
        "Megagray"@de,
        "Megagray"@en,
        "Megagray"@es,
        "Megagray"@fr,
        "Megagray"@hu,
        "Megagray"@it,
        "Megagray"@ms,
        "Megagrej"@pl,
        "Megagray"@ro,
        "Megagray"@sl,
        "Megagray"@tr ;
    dcterms:description "1,000,000-fold of the unit gray"^^xsd:string ;
    qudt:conversionMultiplier 1000000.0 ;
    qudt:conversionMultiplierSN 1e+06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T-2D0> ;
    qudt:hasQuantityKind quantitykind:AbsorbedDose,
        quantitykind:Kerma ;
    qudt:iec61360Code "0112/2///62720#UAB505"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB505"^^xsd:anyURI ;
    qudt:prefix <http://qudt.org/vocab/prefix/Mega> ;
    qudt:scalingOf unit:GRAY ;
    qudt:symbol "MGy"^^xsd:string ;
    qudt:ucumCode "MGy"^^qudt:UCUMcs ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q94942602> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MegaHZ-M a qudt:Unit ;
    rdfs:label "Megahertz Metre"^^xsd:string,
        "Megahertz Metr"@cs,
        "Megahertz Meter"@de,
        "Megahertz Metre"@en,
        "Megahertz Meter"@en-us,
        "Megahercio Metro"@es,
        "Megahertz Mètre"@fr,
        "Megahertz Metro"@it,
        "Megahertz Meter"@ms,
        "Megaherc Metr"@pl,
        "Megahertz Metru"@ro,
        "Megahertz Meter"@sl,
        "Megahertz Metre"@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"^^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/A0E0L1I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MegaHZ ] ;
    qudt:hasQuantityKind quantitykind:Speed ;
    qudt:iec61360Code "0112/2///62720#UAA210"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA210"^^xsd:anyURI ;
    qudt:plainTextDescription "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:symbol "MHz·m"^^xsd:string ;
    qudt:ucumCode "MHz.m"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "H39"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MegaN-PER-M3 a qudt:Unit ;
    rdfs:label "Meganewton per Cubic Metre"^^xsd:string,
        "Meganewton na Metr Krychlový"@cs,
        "Meganewton pro Kubikmeter"@de,
        "Meganewton per Cubic Metre"@en,
        "Meganewton per Cubic Meter"@en-us,
        "Meganewton por Metro Cúbico"@es,
        "Meganewton par Mètre Cube"@fr,
        "Meganewton per Metro Cubo"@it,
        "Meganewton per Meter Kubik"@ms,
        "Meganiuton na Metr Sześcienny"@pl,
        "Meganewton pe Metru Cub"@ro,
        "Meganewton na Kubični Meter"@sl,
        "Meganewton per Metreküp"@tr ;
    dcterms:description "1,000,000-fold of the SI derived unit newton divided by the cube of the SI base unit metre"^^xsd:string ;
    qudt:applicableSystem <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 -3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MegaN ] ;
    qudt:hasQuantityKind quantitykind:ModulusOfSubgradeReaction,
        quantitykind:SpecificWeight ;
    qudt:symbol "MN/m³"^^xsd:string ;
    qudt:ucumCode "MN.m-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MegaOHM-KiloM a qudt:Unit ;
    rdfs:label "Megaohm Kilometre"^^xsd:string,
        "Megaohm Kilometr"@cs,
        "Megaohm Kilometer"@de,
        "Megaohm Kilometre"@en,
        "Megaohm Kilometer"@en-us,
        "Megaohmio Kilometro"@es,
        "Megaohm Kilomètre"@fr,
        "Megaohm Chilometro"@it,
        "Megaohm Kilometer"@ms,
        "Megaom Kilometr"@pl,
        "Megaohm Kilometru"@ro,
        "Megaohm Kilometer"@sl,
        "Megaohm Kilometre"@tr ;
    dcterms:description "1,000,000-fold of the product of the SI derived unit ohm 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/A0E-2L3I0M1H0T-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 quantitykind:ResidualResistivity,
        quantitykind:Resistivity ;
    qudt:iec61360Code "0112/2///62720#UAB406"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB406"^^xsd:anyURI ;
    qudt:symbol "MΩ·km"^^xsd:string ;
    qudt:ucumCode "MOhm.km"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "H88"^^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 ;
    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:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:hasQuantityKind quantitykind: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 ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MicroGALILEO-PER-M a qudt:Unit ;
    rdfs:label "Microgalileo per Metre"^^xsd:string,
        "Microgalileo per Metre"@en,
        "Microgalileo per Meter"@en-us ;
    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 ;
    qudt:conversionMultiplier 0.00000001 ;
    qudt:conversionMultiplierSN 1e-08 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MicroGALILEO ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind quantitykind: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:MicroGM-PER-CentiM2-WK a qudt:Unit ;
    rdfs:label "Microgram per Square Centimetre Week"^^xsd:string,
        "Microgram per Square Centimetre Week"@en,
        "Microgram per Square Centimeter Week"@en-us ;
    dcterms:description "A rate of change of 1e-9 of the SI unit of mass over 0.00001 of the SI unit of area in a period of one calendar week."@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.00000000001653439153439153439153439153439153 ;
    qudt:conversionMultiplierSN 1.653439e-11 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:CentiM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:WK ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MicroGM ] ;
    qudt:hasQuantityKind quantitykind:MassPerAreaTime ;
    qudt:symbol "μg/(cm²·wk)"^^xsd:string ;
    qudt:ucumCode "ug.cm-2.wk-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MicroGM-PER-M2-DAY a qudt:Unit ;
    rdfs:label "Microgram per Square Metre Day"^^xsd:string,
        "Microgram per Square Metre Day"@en,
        "Microgram 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.00000000000001157407407407407407407407407407407 ;
    qudt:conversionMultiplierSN 1.157407e-14 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MicroGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DAY ] ;
    qudt:hasQuantityKind quantitykind:MassPerAreaTime ;
    qudt:symbol "μg/(m²·d)"^^xsd:string ;
    qudt:ucumCode "ug.m-2.d-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MicroH-PER-M a qudt:Unit ;
    rdfs:label "Microhenry per Metre"^^xsd:string,
        "Microhenry na Metr"@cs,
        "Microhenry pro Meter"@de,
        "Microhenry per Metre"@en,
        "Microhenry per Meter"@en-us,
        "Microhenrio por Metro"@es,
        "Microhenry par Mètre"@fr,
        "Microhenry per Metro"@it,
        "Microhenry per Meter"@ms,
        "Microhenr na Metr"@pl,
        "Microhenry pe Metru"@ro,
        "Microhenry na Meter"@sl,
        "Microhenry per Metre"@tr ;
    dcterms:description "0.000001-fold of the SI derived unit henry 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-2L1I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MicroH ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind quantitykind:ElectromagneticPermeability,
        quantitykind:Permeability ;
    qudt:iec61360Code "0112/2///62720#UAA069"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA069"^^xsd:anyURI ;
    qudt:plainTextDescription "0.000001-fold of the SI derived unit henry divided by the SI base unit metre"^^xsd:string ;
    qudt:symbol "μH/m"^^xsd:string ;
    qudt:ucumCode "uH.m-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "B91"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q107538710> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MicroKAT a qudt:Unit ;
    rdfs:label "Microkatal"^^xsd:string,
        "Microkatal"@cs,
        "Microkatal"@de,
        "Microkatal"@en,
        "Microkatal"@es,
        "Microkatal"@fr,
        "Microkatal"@hu,
        "Microkatal"@it,
        "Microkatal"@ms,
        "Microkatal"@pl,
        "Microkatal"@ro,
        "Microkatal"@sl,
        "Microkatal"@tr ;
    qudt:conversionMultiplier 0.000001 ;
    qudt:conversionMultiplierSN 1e-06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L0I0M0H0T-1D0> ;
    qudt:hasQuantityKind quantitykind:CatalyticActivity ;
    qudt:prefix <http://qudt.org/vocab/prefix/Micro> ;
    qudt:scalingOf unit:KAT ;
    qudt:symbol "μkat"^^xsd:string ;
    qudt:ucumCode "ukat"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MicroM-PER-L-DAY a qudt:Unit ;
    rdfs:label "Micrometre per Litre Day"^^xsd:string,
        "Micrometre per Litre Day"@en,
        "Micrometer per Liter 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.00000001157407407407407407407407407407407 ;
    qudt:conversionMultiplierSN 1.157407e-08 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DAY ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MicroM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:L ] ;
    qudt:hasQuantityKind quantitykind:Flux,
        quantitykind:ParticleFluenceRate ;
    qudt:symbol "μm/(L·d)"^^xsd:string ;
    qudt:ucumCode "um.L-1.d-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MicroMHO a qudt:Unit ;
    rdfs:label "Micromho"^^xsd:string,
        "Micromho"@en ;
    dcterms:description "0.000001-fold of the obsolete unit mho of the electric conductance"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS> ;
    qudt:conversionMultiplier 0.000001 ;
    qudt:conversionMultiplierSN 1e-06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E2L-2I0M-1H0T3D0> ;
    qudt:hasQuantityKind quantitykind:Admittance,
        quantitykind:Conductance ;
    qudt:iec61360Code "0112/2///62720#UAB201"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB201"^^xsd:anyURI ;
    qudt:plainTextDescription "0.000001-fold of the obsolete unit mho of the electric conductance"^^xsd:string ;
    qudt:prefix <http://qudt.org/vocab/prefix/Micro> ;
    qudt:scalingOf unit:MHO ;
    qudt:symbol "μ℧"^^xsd:string ;
    qudt:ucumCode "umho"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "NR"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q107538746> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MicroOHM a qudt:Unit ;
    rdfs:label "Microohm"^^xsd:string,
        "Microohm"@cs,
        "Microohm"@de,
        "Microohm"@en,
        "Microohmio"@es,
        "Microohm"@fr,
        "Microohm"@hu,
        "Microohm"@it,
        "Microohm"@ms,
        "Microom"@pl,
        "Microohm"@ro,
        "Microohm"@sl,
        "Microohm"@tr ;
    dcterms:description "0.000001-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 0.000001 ;
    qudt:conversionMultiplierSN 1e-06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-2L2I0M1H0T-3D0> ;
    qudt:hasQuantityKind quantitykind:Resistance ;
    qudt:iec61360Code "0112/2///62720#UAA055"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA055"^^xsd:anyURI ;
    qudt:plainTextDescription "0.000001-fold of the SI derived unit ohm"^^xsd:string ;
    qudt:prefix <http://qudt.org/vocab/prefix/Micro> ;
    qudt:scalingOf unit:OHM ;
    qudt:symbol "μΩ"^^xsd:string ;
    qudt:ucumCode "uOhm"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "B94"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q94487561> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MicroPOISE a qudt:Unit ;
    rdfs:label "Micropoise"^^xsd:string,
        "Micropoise"@en ;
    dcterms:description "0.000001-fold of the CGS unit of the dynamic viscosity poise"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-GAUSS> ;
    qudt:conversionMultiplier 0.0000001 ;
    qudt:conversionMultiplierSN 1e-07 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-1D0> ;
    qudt:hasQuantityKind quantitykind:DynamicViscosity,
        quantitykind:Viscosity ;
    qudt:iec61360Code "0112/2///62720#UAA072"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA072"^^xsd:anyURI ;
    qudt:plainTextDescription "0.000001-fold of the CGS unit of the dynamic viscosity poise"^^xsd:string ;
    qudt:prefix <http://qudt.org/vocab/prefix/Micro> ;
    qudt:scalingOf unit:POISE ;
    qudt:symbol "μP"^^xsd:string ;
    qudt:ucumCode "uP"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "J32"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MicroS-PER-CentiM a qudt:Unit ;
    rdfs:label "Microsiemens per Centimetre"^^xsd:string,
        "Microsiemens na Centimetr"@cs,
        "Microsiemens pro Centimeter"@de,
        "Microsiemens per Centimetre"@en,
        "Microsiemens per Centimeter"@en-us,
        "Microsiemens por Centimetro"@es,
        "Microsiemens par Centimètre"@fr,
        "Microsiemens per Centimetro"@it,
        "Microsiemens per Centimeter"@ms,
        "Microsimens na Centimetr"@pl,
        "Microsiemens pe Centimetru"@ro,
        "Microsiemens na Centimeter"@sl,
        "Microsiemens per Centimetre"@tr ;
    dcterms:description "0.000001-fold of the SI derived unit Siemens divided by the 0.01-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.0001 ;
    qudt:conversionMultiplierSN 1e-04 ;
    qudt:expression "\\(uS-cm^{-1}\\)"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E2L-3I0M-1H0T3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MicroS ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:CentiM ] ;
    qudt:hasQuantityKind quantitykind:Conductivity,
        quantitykind:ElectrolyticConductivity ;
    qudt:iec61360Code "0112/2///62720#UAA075"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA075"^^xsd:anyURI ;
    qudt:plainTextDescription "Unit of electrical conductivity equal to 0.000001-fold of the SI derived unit siemens divided by 0,01-fold of the SI base unit meter"^^xsd:string ;
    qudt:qkdvDenominator <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:qkdvNumerator <http://qudt.org/vocab/dimensionvector/A0E2L-2I0M-1H0T3D0> ;
    qudt:symbol "μS/cm"^^xsd:string ;
    qudt:ucumCode "uS.cm-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G42"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q106636307> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MicroVA-PER-K a qudt:Unit ;
    rdfs:label "Micro Volt Ampere per Kelvin"^^xsd:string,
        "Microvoltampere pro Kelvin"@de,
        "Micro Volt Ampere per Kelvin"@en,
        "Microvoltiamperio por Kelvin"@es,
        "Microvoltampère par Kelvin"@fr,
        "Micro Volt Ampere per Kelvin"@it ;
    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 ;
    qudt:conversionMultiplier 0.000001 ;
    qudt:conversionMultiplierSN 1e-06 ;
    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:MicroVA ] ;
    qudt:hasQuantityKind quantitykind: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 "μVA/K"^^xsd:string ;
    qudt:ucumCode "uVA.K-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MicroVAR-PER-K a qudt:Unit ;
    rdfs:label "Micro Volt Ampere Reactive per Kelvin"^^xsd:string,
        "Micro Volt 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 ;
    qudt:conversionMultiplier 0.000001 ;
    qudt:conversionMultiplierSN 1e-06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H-1T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MicroVAR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ] ;
    qudt:hasQuantityKind quantitykind: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 "μVA{Reactive}/K"^^xsd:string ;
    qudt:ucumCode "uVA{reactive}.K-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliC-PER-KiloGM a qudt:Unit ;
    rdfs:label "Millicoulomb per Kilogram"^^xsd:string,
        "Millicoulomb na Kilogram"@cs,
        "Millicoulomb pro Kilogramm"@de,
        "Millicoulomb per Kilogram"@en,
        "Milliculombio por Kilogramo"@es,
        "Millicoulomb par Kilogramme"@fr,
        "Millicoulomb per Chilogrammo"@it,
        "Millicoulomb per Kilogram"@ms,
        "Millikulomb na Kilogram"@pl,
        "Millicoulomb pe Kilogram"@ro,
        "Millicoulomb na Kilogram"@sl,
        "Millicoulomb per Kilogram"@tr ;
    dcterms:description "0.001-fold of the SI derived unit coulomb divided by the SI base unit kilogram"^^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/A0E1L0I0M-1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:KiloGM ] ;
    qudt:hasQuantityKind quantitykind:ElectricChargePerMass ;
    qudt:iec61360Code "0112/2///62720#UAA783"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA783"^^xsd:anyURI ;
    qudt:plainTextDescription "0.001-fold of the SI derived unit coulomb divided by the SI base unit kilogram"^^xsd:string ;
    qudt:symbol "mC/kg"^^xsd:string ;
    qudt:ucumCode "mC.kg-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "C8"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q106808221> ;
    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 ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS> ;
    qudt:conversionMultiplier 37000000.0 ;
    qudt:conversionMultiplierSN 3.7e+07 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:hasQuantityKind quantitykind: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 ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliGALILEO-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 ;
    qudt:conversionMultiplier 0.000000000003919350772901616281311709002114104 ;
    qudt:conversionMultiplierSN 3.919351e-12 ;
    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 quantitykind: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:MilliGM-PER-M2-DAY a qudt:Unit ;
    rdfs:label "Milligram per Square Metre Day"^^xsd:string,
        "Milligram per Square Metre Day"@en,
        "Milligram 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/A0E0L-2I0M1H0T-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:MilliGM ] ;
    qudt:hasQuantityKind quantitykind:MassPerAreaTime ;
    qudt:symbol "mg/(m²·d)"^^xsd:string ;
    qudt:ucumCode "mg.m-2.d-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliGM-PER-M2-HR a qudt:Unit ;
    rdfs:label "Milligram per Square Metre Hour"^^xsd:string,
        "Milligram per Square Metre Hour"@en,
        "Milligram per Square 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-2I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            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 quantitykind:MassPerAreaTime ;
    qudt:symbol "mg/(m²·h)"^^xsd:string ;
    qudt:ucumCode "mg.m-2.h-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliGM-PER-M2-SEC a qudt:Unit ;
    rdfs:label "Milligram per Square Metre Second"^^xsd:string,
        "Milligram na Čtvereční Metr Sekunda"@cs,
        "Milligramm pro Quadratmeter Sekunde"@de,
        "Milligram per Square Metre Second"@en,
        "Milligram per Square Meter Second"@en-us,
        "Milligramo por Metro Cuadrado Segundo"@es,
        "Milligramme par Mètre Carré Seconde"@fr,
        "Milligrammo per Metro Quadrato Secondo"@it,
        "Milligram per Meter Persegi Saat"@ms,
        "Milligram na Metr Kwadratowy Sekunda"@pl,
        "Milligram pe Metru Pătrat Secundă"@ro,
        "Milligram na Kvadratni Meter Sekunda"@sl,
        "Milligram per Metrekare 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-2I0M1H0T-1D0> ;
    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:M ] ;
    qudt:hasQuantityKind quantitykind:MassPerAreaTime ;
    qudt:symbol "mg/(m²·s)"^^xsd:string ;
    qudt:ucumCode "mg.m-2.s-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliKAT a qudt:Unit ;
    rdfs:label "Millikatal"^^xsd:string,
        "Millikatal"@cs,
        "Millikatal"@de,
        "Millikatal"@en,
        "Millikatal"@es,
        "Millikatal"@fr,
        "Millikatal"@hu,
        "Millikatal"@it,
        "Millikatal"@ms,
        "Millikatal"@pl,
        "Millikatal"@ro,
        "Millikatal"@sl,
        "Millikatal"@tr ;
    qudt:conversionMultiplier 0.001 ;
    qudt:conversionMultiplierSN 1e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L0I0M0H0T-1D0> ;
    qudt:hasQuantityKind quantitykind:CatalyticActivity ;
    qudt:prefix <http://qudt.org/vocab/prefix/Milli> ;
    qudt:scalingOf unit:KAT ;
    qudt:symbol "mkat"^^xsd:string ;
    qudt:ucumCode "mkat"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliMOL-PER-GM a qudt:Unit ;
    rdfs:label "Millimole per Gram"^^xsd:string,
        "Millimol na Gram"@cs,
        "Millimol pro Gramm"@de,
        "Millimole per Gram"@en,
        "Millimol por Gramo"@es,
        "Millimole par Gramme"@fr,
        "Millimole per Grammo"@it,
        "Millimole per Gram"@ms,
        "Millimol na Gram"@pl,
        "Millimol pe Gram"@ro,
        "Millimol na Gram"@sl,
        "Millimol per Gram"@tr ;
    dcterms:description "0.001-fold of the SI base unit mol divided by the 0.001-fold of the SI base unit kilogram"^^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/A1E0L0I0M-1H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliMOL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GM ] ;
    qudt:hasQuantityKind quantitykind:AmountOfSubstancePerMass,
        quantitykind:IonicStrength ;
    qudt:iec61360Code "0112/2///62720#UAA878"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA878"^^xsd:anyURI ;
    qudt:plainTextDescription "0.001-fold of the SI base unit mol divided by the 0.001-fold of the SI base unit kilogram"^^xsd:string ;
    qudt:symbol "mmol/g"^^xsd:string ;
    qudt:ucumCode "mmol.g-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "H68"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q107440685> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliMOL-PER-KiloGM a qudt:Unit ;
    rdfs:label "Millimole per Kilogram"^^xsd:string,
        "Millimol na Kilogram"@cs,
        "Millimol pro Kilogramm"@de,
        "Millimole per Kilogram"@en,
        "Millimol por Kilogramo"@es,
        "Millimole par Kilogramme"@fr,
        "Millimole per Chilogrammo"@it,
        "Millimole per Kilogram"@ms,
        "Millimol na Kilogram"@pl,
        "Millimol pe Kilogram"@ro,
        "Millimol na Kilogram"@sl,
        "Millimol per Kilogram"@tr ;
    dcterms:description "0.001-fold of the SI base unit mol divided by the SI base unit kilogram"^^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/A1E0L0I0M-1H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:KiloGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliMOL ] ;
    qudt:hasQuantityKind quantitykind:AmountOfSubstancePerMass,
        quantitykind:IonicStrength ;
    qudt:iec61360Code "0112/2///62720#UAA879"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA879"^^xsd:anyURI ;
    qudt:plainTextDescription "0.001-fold of the SI base unit mol divided by the SI base unit kilogram"^^xsd:string ;
    qudt:symbol "mmol/kg"^^xsd:string ;
    qudt:ucumCode "mmol.kg-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "D87"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q107440662> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliPA-SEC a qudt:Unit ;
    rdfs:label "Millipascal Second"^^xsd:string,
        "Millipascal Sekunda"@cs,
        "Millipascal Sekunde"@de,
        "Millipascal Second"@en,
        "Millipascal Segundo"@es,
        "Millipascal Seconde"@fr,
        "Millipascal Secondo"@it,
        "Millipascal Saat"@ms,
        "Millipaskal Sekunda"@pl,
        "Millipascal Secundă"@ro,
        "Millipascal Sekunda"@sl,
        "Millipascal Saniye"@tr ;
    dcterms:description "0.001-fold of the product of the SI derived unit pascal and 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/A0E0L-1I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliPA ] ;
    qudt:hasQuantityKind quantitykind:DynamicViscosity,
        quantitykind:Viscosity ;
    qudt:iec61360Code "0112/2///62720#UAA797"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA797"^^xsd:anyURI ;
    qudt:plainTextDescription "0.001-fold of the product of the SI derived unit pascal and the SI base unit second"^^xsd:string ;
    qudt:symbol "mPa·s"^^xsd:string ;
    qudt:ucumCode "mPa.s"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "C24"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q26158194> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliR a qudt:Unit ;
    rdfs:label "Milliroentgen"^^xsd:string,
        "Milliroentgen"@en ;
    dcterms:description "0.001-fold of the unit roentgen."^^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.000000258 ;
    qudt:conversionMultiplierSN 2.58e-07 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L0I0M-1H0T1D0> ;
    qudt:hasQuantityKind quantitykind:ElectricChargePerMass ;
    qudt:iec61360Code "0112/2///62720#UAB056"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB056"^^xsd:anyURI,
        "https://en.wikipedia.org/wiki/Roentgen_(unit)"^^xsd:anyURI ;
    qudt:plainTextDescription "0.001-fold of the unit roentgen."^^xsd:string ;
    qudt:prefix <http://qudt.org/vocab/prefix/Milli> ;
    qudt:scalingOf unit:R ;
    qudt:symbol "mR"^^xsd:string ;
    qudt:ucumCode "mR"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "2Y"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q106617387> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliRAD_R a qudt:Unit ;
    rdfs:label "Millirad"^^xsd:string,
        "Millirad"@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS> ;
    qudt:conversionMultiplier 0.00001 ;
    qudt:conversionMultiplierSN 1e-05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T-2D0> ;
    qudt:hasQuantityKind quantitykind:AbsorbedDose ;
    qudt:prefix <http://qudt.org/vocab/prefix/Milli> ;
    qudt:scalingOf unit:RAD_R ;
    qudt:symbol "mrad"^^xsd:string ;
    qudt:ucumCode "mRAD"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliVA-PER-K a qudt:Unit ;
    rdfs:label "Milli Volt Ampere per Kelvin"^^xsd:string,
        "Millivoltampere pro Kelvin"@de,
        "Milli Volt Ampere per Kelvin"@en,
        "Millivoltiamperio por Kelvin"@es,
        "Millivoltampère par Kelvin"@fr,
        "Milli Volt Ampere per Kelvin"@it ;
    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 ;
    qudt:conversionMultiplier 0.001 ;
    qudt:conversionMultiplierSN 1e-03 ;
    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:MilliVA ] ;
    qudt:hasQuantityKind quantitykind: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 "mVA/K"^^xsd:string ;
    qudt:ucumCode "mVA.K-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliVAR-PER-K a qudt:Unit ;
    rdfs:label "Milli Volt Ampere Reactive per Kelvin"^^xsd:string,
        "Milli Volt 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 ;
    qudt:conversionMultiplier 0.001 ;
    qudt:conversionMultiplierSN 1e-03 ;
    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:MilliVAR ] ;
    qudt:hasQuantityKind quantitykind: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 "mVA{Reactive}/K"^^xsd:string ;
    qudt:ucumCode "mVA{reactive}.K-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliWB a qudt:Unit ;
    rdfs:label "Milliweber"^^xsd:string,
        "Milliweber"@cs,
        "Milliweber"@de,
        "Milliweber"@en,
        "Milliweber"@es,
        "Milliweber"@fr,
        "Milliweber"@hu,
        "Milliweber"@it,
        "Milliweber"@ms,
        "Milliweber"@pl,
        "Milliweber"@ro,
        "Milliweber"@sl,
        "Milliweber"@tr ;
    dcterms:description "0.001-fold of the SI derived unit weber"^^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-1L2I0M1H0T-2D0> ;
    qudt:hasQuantityKind quantitykind:MagneticFlux ;
    qudt:iec61360Code "0112/2///62720#UAA809"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA809"^^xsd:anyURI ;
    qudt:plainTextDescription "0.001-fold of the SI derived unit weber"^^xsd:string ;
    qudt:prefix <http://qudt.org/vocab/prefix/Milli> ;
    qudt:scalingOf unit:WB ;
    qudt:symbol "mWb"^^xsd:string ;
    qudt:ucumCode "mWb"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "C33"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q94693786> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:N-M-PER-A a qudt:Unit ;
    rdfs:label "Newton Metre per Ampere"^^xsd:string,
        "Нютон Метър на Ампер"@bg,
        "Newton Metr na Ampér"@cs,
        "Newton Meter pro Ampere"@de,
        "Νιούτον Μέτρο ανά Αμπέρ"@el,
        "Newton Metre per Ampere"@en,
        "Newton Meter per Ampere"@en-us,
        "Newton Metro por Amperio"@es,
        "Newton Mètre par Ampère"@fr,
        "Newton Metro per Ampere"@it,
        "Newtonium Metrum per Amperium"@la,
        "Newton Meter per Ampere"@ms,
        "Niuton Metr na Amper"@pl,
        "Newton Metro por Ampere"@pt,
        "Newton Metru pe Amper"@ro,
        "Ньютон Метр на Ампер"@ru,
        "Newton Meter na Amper"@sl,
        "Newton Metre per Amper"@tr ;
    dcterms:description "product of the SI derived unit newton and the SI base unit metre 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-1L2I0M1H0T-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:A ] ;
    qudt:hasQuantityKind quantitykind:MagneticFlux ;
    qudt:iec61360Code "0112/2///62720#UAA241"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA241"^^xsd:anyURI ;
    qudt:plainTextDescription "product of the SI derived unit newton and the SI base unit metre divided by the SI base unit ampere"^^xsd:string ;
    qudt:symbol "N·m/A"^^xsd:string ;
    qudt:ucumCode "N.m.A-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F90"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:N-M-PER-M-RAD a qudt:Unit ;
    rdfs:label "Newton Metre per Metre Radian"^^xsd:string,
        "Нютон Метър на Метър Радиан"@bg,
        "Newton Metr na Metr Radián"@cs,
        "Newton Meter pro Meter Radiant"@de,
        "Νιούτον Μέτρο ανά Μέτρο Ακτίνιο"@el,
        "Newton Metre per Metre Radian"@en,
        "Newton Meter per Meter Radian"@en-us,
        "Newton Metro por Metro Radián"@es,
        "Newton Mètre par Mètre Radian"@fr,
        "Newton Metro per Metro Radiante"@it,
        "Newtonium Metrum per Metrum Radian"@la,
        "Newton Meter per Meter Radian"@ms,
        "Niuton Metr na Metr Radian"@pl,
        "Newton Metro por Metro Radiano"@pt,
        "Newton Metru pe Metru Radian"@ro,
        "Ньютон Метр на Метр Радиан"@ru,
        "Newton Meter na Meter Radian"@sl,
        "Newton Metre per Metre 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:exactMatch unit:N-PER-RAD ;
    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:RAD ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:N ] ;
    qudt:hasQuantityKind quantitykind:ModulusOfRotationalSubgradeReaction ;
    qudt:symbol "N·m/(m·rad)"^^xsd:string ;
    qudt:ucumCode "N.m.m-1.rad-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:N-M-SEC-PER-M a qudt:Unit ;
    rdfs:label "Newton Metre Second per Metre"^^xsd:string,
        "Нютон Метър Секунда на Метър"@bg,
        "Newton Metr Sekunda na Metr"@cs,
        "Newton Meter Sekunde pro Meter"@de,
        "Νιούτον Μέτρο Δευτερόλεπτο ανά Μέτρο"@el,
        "Newton Metre Second per Metre"@en,
        "Newton Meter Second per Meter"@en-us,
        "Newton Metro Segundo por Metro"@es,
        "Newton Mètre Seconde par Mètre"@fr,
        "Newton Metro Secondo per Metro"@it,
        "Newtonium Metrum Secundum per Metrum"@la,
        "Newton Meter Saat per Meter"@ms,
        "Niuton Metr Sekunda na Metr"@pl,
        "Newton Metro Segundo por Metro"@pt,
        "Newton Metru Secundă pe Metru"@ro,
        "Ньютон Метр Секунда на Метр"@ru,
        "Newton Meter Sekunda na Meter"@sl,
        "Newton Metre Saniye per Metre"@tr ;
    dcterms:description "Newton metre seconds 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:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-1D0> ;
    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:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:N ] ;
    qudt:hasQuantityKind quantitykind:LinearMomentum,
        quantitykind:Momentum ;
    qudt:plainTextDescription "Newton metre seconds measured per metre"^^xsd:string ;
    qudt:symbol "N·m·s/m"^^xsd:string ;
    qudt:ucumCode "N.m.s.m-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:N-M2-PER-A a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Newton Square Metre per Ampere"^^xsd:string,
        "Нютон Квадратен Метър на Ампер"@bg,
        "Newton Čtvereční Metr na Ampér"@cs,
        "Newton Quadratmeter pro Ampere"@de,
        "Νιούτον Τετραγωνικό Μέτρο ανά Αμπέρ"@el,
        "Newton Square Metre per Ampere"@en,
        "Newton Square Meter per Ampere"@en-us,
        "Newton Metro Cuadrado por Amperio"@es,
        "Newton Mètre Carré par Ampère"@fr,
        "Newton Metro Quadrato per Ampere"@it,
        "Newtonium Metrum Quadratum per Amperium"@la,
        "Newton Meter Persegi per Ampere"@ms,
        "Niuton Metr Kwadratowy na Amper"@pl,
        "Newton Metro Quadrado por Ampere"@pt,
        "Newton Metru Pătrat pe Amper"@ro,
        "Ньютон Квадратный Метр на Ампер"@ru,
        "Newton Kvadratni Meter na Amper"@sl,
        "Newton Metrekare per Amper"@tr ;
    dcterms:description "product of the SI derived unit newton and the power of SI base unit metre with exponent 2 divided by the SI base unit ampere"^^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:exactMatch unit:WB-M ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-1L3I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:N ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:A ],
        [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind quantitykind:MagneticDipoleMoment ;
    qudt:iec61360Code "0112/2///62720#UAB332"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB332"^^xsd:anyURI ;
    qudt:symbol "N·m²/A"^^xsd:string ;
    qudt:ucumCode "N.m2.A-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "P49"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:N-PER-M3 a qudt:Unit ;
    rdfs:label "Newton per Cubic Metre"^^xsd:string,
        "Нютон на Кубичен Метър"@bg,
        "Newton na Metr Krychlový"@cs,
        "Newton pro Kubikmeter"@de,
        "Νιούτον ανά Κυβικό Μέτρο"@el,
        "Newton per Cubic Metre"@en,
        "Newton per Cubic Meter"@en-us,
        "Newton por Metro Cúbico"@es,
        "Newton par Mètre Cube"@fr,
        "Newton per Metro Cubo"@it,
        "Newtonium per Metrum Cubicum"@la,
        "Newton per Meter Kubik"@ms,
        "Niuton na Metr Sześcienny"@pl,
        "Newton por Metro Cúbico"@pt,
        "Newton pe Metru Cub"@ro,
        "Ньютон на Кубический Метр"@ru,
        "Newton na Kubični Meter"@sl,
        "Newton 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 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:N ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind quantitykind:ModulusOfSubgradeReaction,
        quantitykind:SpecificWeight ;
    qudt:symbol "N/m³"^^xsd:string ;
    qudt:ucumCode "N.m-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:N-PER-RAD a qudt:Unit ;
    rdfs:label "Newton per Radian"^^xsd:string,
        "Нютон на Радиан"@bg,
        "Newton na Radián"@cs,
        "Newton pro Radiant"@de,
        "Νιούτον ανά Ακτίνιο"@el,
        "Newton per Radian"@en,
        "Newton per Radian"@en-us,
        "Newton por Radián"@es,
        "Newton par Radian"@fr,
        "Newton per Radiante"@it,
        "Newtonium per Radian"@la,
        "Newton per Radian"@ms,
        "Niuton na Radian"@pl,
        "Newton por Radiano"@pt,
        "Newton pe Radian"@ro,
        "Ньютон на Радиан"@ru,
        "Newton na Radian"@sl,
        "Newton per Radyan"@tr ;
    dcterms:description "A one-newton force applied for one angle/torsional torque"^^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:exactMatch unit:N-M-PER-M-RAD ;
    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:RAD ] ;
    qudt:hasQuantityKind quantitykind:ForcePerAngle ;
    qudt:plainTextDescription "A one-newton force applied for one angle/torsional torque"^^xsd:string ;
    qudt:symbol "N/rad"^^xsd:string ;
    qudt:ucumCode "N.rad-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:N-SEC a qudt:Unit ;
    rdfs:label "Newton Second"^^xsd:string,
        "نيوتن ثانية"@ar,
        "Нютон Секунда"@bg,
        "Newton Sekunda"@cs,
        "Newton Sekunde"@de,
        "Νιούτον Δευτερόλεπτο"@el,
        "Newton Second"@en,
        "Newton Segundo"@es,
        "نیوتون ثانیه"@fa,
        "Newton Seconde"@fr,
        "न्यूटन सैकण्ड"@hi,
        "Newton Secondo"@it,
        "ニュートン秒"@ja,
        "Newtonium Secundum"@la,
        "Newton Saat"@ms,
        "Niuton Sekunda"@pl,
        "Newton Segundo"@pt,
        "Newton Secundă"@ro,
        "Ньютон Секунда"@ru,
        "Newton Sekunda"@sl,
        "Newton Saniye"@tr,
        "牛秒"@zh ;
    dcterms:description "product of the SI derived unit newton and 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 1.0 ;
    qudt:conversionMultiplierSN 1e+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 ] ;
    qudt:hasQuantityKind quantitykind:LinearMomentum,
        quantitykind:Momentum ;
    qudt:iec61360Code "0112/2///62720#UAA251"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA251"^^xsd:anyURI ;
    qudt:plainTextDescription "product of the SI derived unit newton and the SI base unit second"^^xsd:string ;
    qudt:symbol "N·s"^^xsd:string ;
    qudt:ucumCode "N.s"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "C57"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q3395194> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:N-SEC-PER-M2 a qudt:Unit ;
    rdfs:label "Newton Second per Square Metre"^^xsd:string,
        "Нютон Секунда на Квадратен Метър"@bg,
        "Newton Sekunda na Čtvereční Metr"@cs,
        "Newton Sekunde pro Quadratmeter"@de,
        "Νιούτον Δευτερόλεπτο ανά Τετραγωνικό Μέτρο"@el,
        "Newton Second per Square Metre"@en,
        "Newton Second per Square Meter"@en-us,
        "Newton Segundo por Metro Cuadrado"@es,
        "Newton Seconde par Mètre Carré"@fr,
        "Newton Secondo per Metro Quadrato"@it,
        "Newtonium Secundum per Metrum Quadratum"@la,
        "Newton Saat per Meter Persegi"@ms,
        "Niuton Sekunda na Metr Kwadratowy"@pl,
        "Newton Segundo por Metro Quadrado"@pt,
        "Newton Secundă pe Metru Pătrat"@ro,
        "Ньютон Секунда на Квадратный Метр"@ru,
        "Newton Sekunda na Kvadratni Meter"@sl,
        "Newton Saniye per Metrekare"@tr ;
    dcterms:description "unit of the dynamic viscosity as a product of unit of the pressure (newton by square metre) multiplied with the SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:N ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind quantitykind:DynamicViscosity,
        quantitykind:Viscosity ;
    qudt:iec61360Code "0112/2///62720#UAB428"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB428"^^xsd:anyURI ;
    qudt:symbol "N·s/m²"^^xsd:string ;
    qudt:ucumCode "N.s.m-2"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "N36"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:NUM-PER-GM a qudt:Unit ;
    rdfs:label "Number per Gram"^^xsd:string,
        "Number per Gram"@en ;
    qudt:conversionMultiplier 1000.0 ;
    qudt:conversionMultiplierSN 1e+03 ;
    qudt:exactMatch unit:PER-GM ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M-1H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:NUM ] ;
    qudt:hasQuantityKind quantitykind:Unknown ;
    qudt:symbol "#/g"^^xsd:string ;
    qudt:ucumCode "{#}.g-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:NUM-PER-M2 a qudt:Unit ;
    rdfs:label "Number per Square Metre"^^xsd:string,
        "Number per Square Metre"@en,
        "Number per Square Meter"@en-us ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:exactMatch unit:PER-M2 ;
    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:NUM ] ;
    qudt:hasQuantityKind quantitykind:ParticleFluence ;
    qudt:symbol "#/m²"^^xsd:string ;
    qudt:ucumCode "{#}.m-2"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:NUM-PER-MilliGM a qudt:Unit ;
    rdfs:label "Number per Milligram"^^xsd:string,
        "Number per Milligram"@en ;
    dcterms:description "Count of an entity or phenomenon occurrence in one millionth of the SI unit of mass (kilogram)."@en ;
    qudt:conversionMultiplier 1000000.0 ;
    qudt:conversionMultiplierSN 1e+06 ;
    qudt:exactMatch unit:PER-MilliGM ;
    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:MilliGM ] ;
    qudt:hasQuantityKind quantitykind:Unknown ;
    qudt:symbol "#/mg"^^xsd:string ;
    qudt:ucumCode "{#}.mg-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:NanoBQ a qudt:Unit ;
    rdfs:label "Nanobecquerel"^^xsd:string,
        "Nanobecquerel"@cs,
        "Nanobecquerel"@de,
        "Nanobecquerel"@en,
        "Nanobecquerel"@es,
        "Nanobecquerel"@fr,
        "Nanobecquerel"@hu,
        "Nanobecquerel"@it,
        "Nanobecquerel"@ms,
        "Nanobekerel"@pl,
        "Nanobecquerel"@ro,
        "Nanobecquerel"@sl,
        "Nanobekerel"@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/IMPERIAL>,
        <http://qudt.org/vocab/sou/SI>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 0.000000001 ;
    qudt:conversionMultiplierSN 1e-09 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:hasQuantityKind quantitykind:Activity ;
    qudt:prefix <http://qudt.org/vocab/prefix/Nano> ;
    qudt:scalingOf unit:BQ ;
    qudt:symbol "nBq"^^xsd:string ;
    qudt:ucumCode "nBq"^^qudt:UCUMcs ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q95866344> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:NanoFARAD a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Nanofarad"^^xsd:string,
        "Nanofarad"@cs,
        "Nanofarad"@de,
        "Nanofarad"@en,
        "Nanofaradio"@es,
        "Nanofarad"@fr,
        "Nanofarad"@hu,
        "Nanofarad"@it,
        "Nanofarad"@ms,
        "Nanofarad"@pl,
        "Nanofarad"@ro,
        "Nanofarad"@sl,
        "Nanofarad"@tr ;
    dcterms:description "A common metric unit of electric capacitance equal to $10^{-9} farad$. This unit was previously called the $millimicrofarad$."^^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.000000001 ;
    qudt:conversionMultiplierSN 1e-09 ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Farad"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E2L-2I0M-1H0T4D0> ;
    qudt:hasQuantityKind quantitykind:Capacitance ;
    qudt:iec61360Code "0112/2///62720#UAA903"^^xsd:string ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Farad?oldid=493070876"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA903"^^xsd:anyURI ;
    qudt:prefix <http://qudt.org/vocab/prefix/Nano> ;
    qudt:scalingOf unit:FARAD ;
    qudt:symbol "nF"^^xsd:string ;
    qudt:ucumCode "nF"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "C41"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q2682463> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:NanoGM-PER-CentiM2-DAY a qudt:Unit ;
    rdfs:label "Nanogram per Square Centimetre Day"^^xsd:string,
        "Nanogram per Square Centimetre Day"@en,
        "Nanogram per Square Centimeter Day"@en-us ;
    dcterms:description "A rate of change of 1e-12 of the SI unit of mass over 0.00001 of the SI unit of area in a period of one 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.0000000000001157407407407407407407407407407407 ;
    qudt:conversionMultiplierSN 1.157407e-13 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:NanoGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:CentiM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DAY ] ;
    qudt:hasQuantityKind quantitykind:MassPerAreaTime ;
    qudt:symbol "ng/(cm²·d)"^^xsd:string ;
    qudt:ucumCode "ng.cm-2.d-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:NanoH-PER-M a qudt:Unit ;
    rdfs:label "Nanohenry per Metre"^^xsd:string,
        "Nanohenry na Metr"@cs,
        "Nanohenry pro Meter"@de,
        "Nanohenry per Metre"@en,
        "Nanohenry per Meter"@en-us,
        "Nanohenrio por Metro"@es,
        "Nanohenry par Mètre"@fr,
        "Nanohenry per Metro"@it,
        "Nanohenry per Meter"@ms,
        "Nanohenr na Metr"@pl,
        "Nanohenry pe Metru"@ro,
        "Nanohenry na Meter"@sl,
        "Nanohenry per Metre"@tr ;
    dcterms:description "0.000000001-fold of the SI derived unit henry 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.000000001 ;
    qudt:conversionMultiplierSN 1e-09 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-2L1I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:NanoH ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind quantitykind:ElectromagneticPermeability,
        quantitykind:Permeability ;
    qudt:iec61360Code "0112/2///62720#UAA906"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA906"^^xsd:anyURI ;
    qudt:plainTextDescription "0.000000001-fold of the SI derived unit henry divided by the SI base unit metre"^^xsd:string ;
    qudt:symbol "nH/m"^^xsd:string ;
    qudt:ucumCode "nH.m-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "C44"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q107538724> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:NanoKAT a qudt:Unit ;
    rdfs:label "Nanokatal"^^xsd:string,
        "Nanokatal"@cs,
        "Nanokatal"@de,
        "Nanokatal"@en,
        "Nanokatal"@es,
        "Nanokatal"@fr,
        "Nanokatal"@hu,
        "Nanokatal"@it,
        "Nanokatal"@ms,
        "Nanokatal"@pl,
        "Nanokatal"@ro,
        "Nanokatal"@sl,
        "Nanokatal"@tr ;
    qudt:conversionMultiplier 0.000000001 ;
    qudt:conversionMultiplierSN 1e-09 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L0I0M0H0T-1D0> ;
    qudt:hasQuantityKind quantitykind:CatalyticActivity ;
    qudt:prefix <http://qudt.org/vocab/prefix/Nano> ;
    qudt:scalingOf unit:KAT ;
    qudt:symbol "nkat"^^xsd:string ;
    qudt:ucumCode "nkat"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:NanoM-PER-MilliM-MegaPA a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Nanometre per Millimetre Megapascal"^^xsd:string,
        "Nanometr na Millimetr Megapascal"@cs,
        "Nanometer pro Millimeter Megapascal"@de,
        "Nanometre per Millimetre Megapascal"@en,
        "Nanometer per Millimeter Megapascal"@en-us,
        "Nanometro por Millimetro Megapascal"@es,
        "Nanomètre par Millimètre Megapascal"@fr,
        "Nanometro per Millimetro Megapascal"@it,
        "Nanometer per Millimeter Megapascal"@ms,
        "Nanometr na Millimetr Megapaskal"@pl,
        "Nanometru pe Millimetru Megapascal"@ro,
        "Nanometer na Millimeter Megapascal"@sl,
        "Nanometre per Millimetre 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.000000000001 ;
    qudt:conversionMultiplierSN 1e-12 ;
    qudt:exactMatch unit:BREWSTER ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M-1H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MegaPA ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MilliM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:NanoM ] ;
    qudt:hasQuantityKind quantitykind:StressOpticCoefficient ;
    qudt:qkdvDenominator <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-2D0> ;
    qudt:qkdvNumerator <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:siUnitsExpression "nm/mm/MPa"^^xsd:string ;
    qudt:symbol "nm/(mm·MPa)"^^xsd:string ;
    qudt:ucumCode "nm.mm-1.MPa-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:NanoOHM a qudt:Unit ;
    rdfs:label "Nanoohm"^^xsd:string,
        "Nanoohm"@cs,
        "Nanoohm"@de,
        "Nanoohm"@en,
        "Nanoohmio"@es,
        "Nanoohm"@fr,
        "Nanoohm"@hu,
        "Nanoohm"@it,
        "Nanoohm"@ms,
        "Nanoom"@pl,
        "Nanoohm"@ro,
        "Nanoohm"@sl,
        "Nanoohm"@tr ;
    dcterms:description "0.000000001-fold of the SI derived unit ohm"^^xsd:string ;
    qudt:conversionMultiplier 0.000000001 ;
    qudt:conversionMultiplierSN 1e-09 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-2L2I0M1H0T-3D0> ;
    qudt:hasQuantityKind quantitykind:ElectricalResistance ;
    qudt:iec61360Code "0112/2///62720#UAB359"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB359"^^xsd:anyURI ;
    qudt:prefix <http://qudt.org/vocab/prefix/Nano> ;
    qudt:scalingOf unit:OHM ;
    qudt:symbol "nΩ"^^xsd:string ;
    qudt:ucumCode "nOhm"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "P22"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q94480254> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:NanoVA a qudt:Unit ;
    rdfs:label "Nano Volt Ampere"^^xsd:string,
        "Nanovoltampere"@de,
        "Nano Volt Ampere"@en,
        "Nanovoltiamperio"@es,
        "Nanovoltampère"@fr,
        "Nano Volt Ampere"@it ;
    dcterms:description "0.000000001-fold of the product of the SI base unit volt with the SI base unit ampere"^^xsd:string ;
    qudt:conversionMultiplier 0.000000001 ;
    qudt:conversionMultiplierSN 1e-09 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-3D0> ;
    qudt:hasQuantityKind quantitykind: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:prefix <http://qudt.org/vocab/prefix/Nano> ;
    qudt:scalingOf unit:VA ;
    qudt:symbol "nVA"^^xsd:string ;
    qudt:ucumCode "nVA"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:NanoVAR a qudt:Unit ;
    rdfs:label "Nano Volt Ampere Reactive"^^xsd:string,
        "Nano Volt Ampere Reactive"@en ;
    dcterms:description "0.000000001-fold of the unit volt ampere reactive"^^xsd:string ;
    qudt:conversionMultiplier 0.000000001 ;
    qudt:conversionMultiplierSN 1e-09 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-3D0> ;
    qudt:hasQuantityKind quantitykind: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:prefix <http://qudt.org/vocab/prefix/Nano> ;
    qudt:scalingOf unit:VAR ;
    qudt:symbol "nVA{Reactive}"^^xsd:string ;
    qudt:ucumCode "nVA{reactive}"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:OCTET-PER-SEC a qudt:Unit ;
    rdfs:label "Octet per Second"^^xsd:string,
        "Octet per Second"@en ;
    dcterms:description "unit octet divided by the SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 5.54517744447956247533785697166544 ;
    qudt:conversionMultiplierSN 5.545177e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:OCTET ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind quantitykind:BitRate ;
    qudt:iec61360Code "0112/2///62720#UAB342"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB342"^^xsd:anyURI ;
    qudt:symbol "o/s"^^xsd:string ;
    qudt:uneceCommonCode "Q13"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:OHM-KiloM a qudt:Unit ;
    rdfs:label "Ohm Kilometre"^^xsd:string,
        "Ohm Kilometr"@cs,
        "Ohm Kilometer"@de,
        "Ohm Kilometre"@en,
        "Ohm Kilometer"@en-us,
        "Ohmio Kilometro"@es,
        "Ohm Kilomètre"@fr,
        "Ohm Chilometro"@it,
        "Ohm Kilometer"@ms,
        "Om Kilometr"@pl,
        "Ohm Kilometru"@ro,
        "Ohm Kilometer"@sl,
        "Ohm Kilometre"@tr ;
    dcterms:description "product of the SI derived unit ohm and the 1,000-fold of 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:KiloM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:OHM ] ;
    qudt:hasQuantityKind quantitykind:ResidualResistivity,
        quantitykind:Resistivity ;
    qudt:iec61360Code "0112/2///62720#UAA018"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA018"^^xsd:anyURI ;
    qudt:symbol "Ω·km"^^xsd:string ;
    qudt:ucumCode "Ohm.km"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "M24"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:OHM-M a qudt:Unit ;
    rdfs:label "Ohm Metre"^^xsd:string,
        "أوم متر"@ar,
        "Ом Метър"@bg,
        "Ohm Metr"@cs,
        "Ohm Meter"@de,
        "Ωμ Μέτρο"@el,
        "Ohm Metre"@en,
        "Ohm Meter"@en-us,
        "Ohmio Metro"@es,
        "اهم متر"@fa,
        "Ohm Mètre"@fr,
        "ओह्म मीटर"@hi,
        "Ohm Metro"@it,
        "オームメートル"@ja,
        "Ohmium Metrum"@la,
        "Ohm Meter"@ms,
        "Om Metr"@pl,
        "Ohm Metro"@pt,
        "Ohm Metru"@ro,
        "Ом Метр"@ru,
        "Ohm Meter"@sl,
        "Ohm Metre"@tr,
        "欧姆米"@zh ;
    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 1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:OHM ] ;
    qudt:hasQuantityKind quantitykind:ResidualResistivity,
        quantitykind:Resistivity ;
    qudt:iec61360Code "0112/2///62720#UAA020"^^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%23UAA020"^^xsd:anyURI ;
    qudt:symbol "Ω·m"^^xsd:string ;
    qudt:ucumCode "Ohm.m"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "C61"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q1441459> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:OHM-MIL_Circ-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 ;
    qudt:conversionMultiplier 0.000000001662426181102362204724409448818898 ;
    qudt:conversionMultiplierSN 1.662426e-09 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-2L3I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:OHM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MIL_Circ ] ;
    qudt:hasQuantityKind quantitykind: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 ;
    qudt:ucumCode "Ohm.[cml_i].[ft_i]-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PA-PER-K a qudt:Unit ;
    rdfs:label "Pascal per Kelvin"^^xsd:string,
        "Паскал на Келвин"@bg,
        "Pascal na Kelvin"@cs,
        "Pascal pro Kelvin"@de,
        "Πασκάλ ανά Κέλβιν"@el,
        "Pascal per Kelvin"@en,
        "Pascal por Kelvin"@es,
        "Pascal par Kelvin"@fr,
        "Pascal per Kelvin"@it,
        "Pascalium per Kelvin"@la,
        "Pascal per Kelvin"@ms,
        "Paskal na Kelwin"@pl,
        "Pascal por Kelvin"@pt,
        "Pascal pe Kelvin"@ro,
        "Паскаль на Кельвин"@ru,
        "Pascal na Kelvin"@sl,
        "Pascal per Kelvin"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:expression "$pascal-per-kelvin$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H-1T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PA ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ] ;
    qudt:hasQuantityKind quantitykind:PressureCoefficient ;
    qudt:hasReciprocalUnit unit:K-PER-PA ;
    qudt:iec61360Code "0112/2///62720#UAA259"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA259"^^xsd:anyURI ;
    qudt:symbol "Pa/K"^^xsd:string ;
    qudt:ucumCode "Pa.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "C64"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q79398638> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PA-PER-M a qudt:Unit ;
    rdfs:label "Pascal per Metre"^^xsd:string,
        "Паскал на Метър"@bg,
        "Pascal na Metr"@cs,
        "Pascal pro Meter"@de,
        "Πασκάλ ανά Μέτρο"@el,
        "Pascal per Metre"@en,
        "Pascal per Meter"@en-us,
        "Pascal por Metro"@es,
        "Pascal par Mètre"@fr,
        "Pascal per Metro"@it,
        "Pascalium per Metrum"@la,
        "Pascal per Meter"@ms,
        "Paskal na Metr"@pl,
        "Pascal por Metro"@pt,
        "Pascal pe Metru"@ro,
        "Паскаль на Метр"@ru,
        "Pascal na Meter"@sl,
        "Pascal per Metre"@tr ;
    dcterms:description "SI derived unit pascal 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 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:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PA ] ;
    qudt:hasQuantityKind quantitykind:SpectralRadiantEnergyDensity ;
    qudt:hasReciprocalUnit unit:M-PER-PA ;
    qudt:iec61360Code "0112/2///62720#UAA262"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA262"^^xsd:anyURI ;
    qudt:plainTextDescription "SI derived unit pascal divided by the SI base unit metre"^^xsd:string ;
    qudt:symbol "Pa/m"^^xsd:string ;
    qudt:ucumCode "Pa.m-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "H42"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PA-SEC-PER-M3 a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Pascal Second per Cubic Metre"^^xsd:string,
        "باسكال ثانية لكل متر مكعب"@ar,
        "Паскал Секунда на Кубичен Метър"@bg,
        "Pascal Sekunda na Metr Krychlový"@cs,
        "Pascal Sekunde pro Kubikmeter"@de,
        "Πασκάλ Δευτερόλεπτο ανά Κυβικό Μέτρο"@el,
        "Pascal Second per Cubic Metre"@en,
        "Pascal Second per Cubic Meter"@en-us,
        "Pascal Segundo por Metro Cúbico"@es,
        "نیوتون ثانیه بر متر مکعب"@fa,
        "Pascal Seconde par Mètre Cube"@fr,
        "पास्कल सैकण्ड प्रति घन मीटर"@hi,
        "Pascal Secondo per Metro Cubo"@it,
        "パスカル秒毎立方メートル"@ja,
        "Pascalium Secundum per Metrum Cubicum"@la,
        "Pascal Saat per Meter Kubik"@ms,
        "Paskal Sekunda na Metr Sześcienny"@pl,
        "Pascal Segundo por Metro Cúbico"@pt,
        "Pascal Secundă pe Metru Cub"@ro,
        "Паскаль Секунда на Кубический Метр"@ru,
        "Pascal Sekunda na Kubični Meter"@sl,
        "Pascal Saniye per Metreküp"@tr ;
    dcterms:description "$\\textit{Pascal Second Per Cubic Meter}$ ($Pa-s/m^3$) is a unit in the category of Acoustic impedance. It is also known as $\\textit{pascal-second/cubic meter}$. It has a dimension of $ML^{-4}T^{-1}$ 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:expression "$Pa-s/m3$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-4I0M1H0T-1D0> ;
    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:SEC ] ;
    qudt:hasQuantityKind quantitykind:PressureInRelationToVolumeFlowRate ;
    qudt:hasReciprocalUnit unit:M3-PER-SEC-PA ;
    qudt:iec61360Code "0112/2///62720#UAA263"^^xsd:string ;
    qudt:informativeReference "http://www.efunda.com/glossary/units/units--acoustic_impedance--pascal_second_per_cubic_meter.cfm"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA263"^^xsd:anyURI ;
    qudt:siUnitsExpression "Pa.s/m3"^^xsd:string ;
    qudt:symbol "Pa·s/m³"^^xsd:string ;
    qudt:ucumCode "Pa.s.m-3"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "C66"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q87047886> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PDL-SEC-PER-FT2 a qudt:Unit ;
    rdfs:label "Poundal Second per Square Foot"^^xsd:string,
        "Poundal Second per Square Foot"@en ;
    dcterms:description "non SI-conform unit of viscosity"^^xsd:string ;
    qudt:conversionMultiplier 1.488163943569553805774278215223097 ;
    qudt:conversionMultiplierSN 1.488164e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PDL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind quantitykind:DynamicViscosity,
        quantitykind:Viscosity ;
    qudt:iec61360Code "0112/2///62720#UAB227"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB227"^^xsd:anyURI ;
    qudt:symbol "pdl·s/ft²"^^xsd:string ;
    qudt:ucumCode "[lb_av].[ft_i].s-2.s.[ft_i]-2"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PDL-SEC-PER-IN2 a qudt:Unit ;
    rdfs:label "Poundal Second per Square Inch"^^xsd:string,
        "Poundal Second per Square Inch"@en ;
    dcterms:description "non SI-conforming unit of dynamic viscosity according to the Imperial system of units as product unit of the pressure (poundal by square inch) multiplied by the SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 214.295607874015748031496062992126 ;
    qudt:conversionMultiplierSN 2.142956e+02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:IN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PDL ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind quantitykind:DynamicViscosity,
        quantitykind:Viscosity ;
    qudt:iec61360Code "0112/2///62720#UAB434"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB434"^^xsd:anyURI ;
    qudt:symbol "pdl·s/in²"^^xsd:string ;
    qudt:ucumCode "[lb_av].[ft_i].s-2.s.[in_i]-2"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "N42"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PER-ANGSTROM a qudt:Unit ;
    rdfs:label "Reciprocal Angstrom"^^xsd:string,
        "Reciprocal Angstrom"@en ;
    dcterms:description "reciprocal of the unit angstrom"^^rdf:HTML ;
    qudt:conversionMultiplier 10000000000.0 ;
    qudt:conversionMultiplierSN 1e+10 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:ANGSTROM ] ;
    qudt:hasQuantityKind quantitykind:InverseLength ;
    qudt:iec61360Code "0112/2///62720#UAB058"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB058"^^xsd:anyURI ;
    qudt:plainTextDescription "reciprocal of the unit angstrom"^^xsd:string ;
    qudt:symbol "/Å"^^xsd:string ;
    qudt:ucumCode "Ao-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "C85"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q107378436> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PER-CentiM a qudt:Unit ;
    rdfs:label "Reciprocal Centimetre"^^xsd:string,
        "Na Centimetr"@cs,
        "Pro Centimeter"@de,
        "Reciprocal Centimetre"@en,
        "Reciprocal Centimeter"@en-us,
        "Por Centimetro"@es,
        "Par Centimètre"@fr,
        "Per Centimetro"@it,
        "Per Centimeter"@ms,
        "Na Centimetr"@pl,
        "Pe Centimetru"@ro,
        "Na Centimeter"@sl,
        "Per Centimetre"@tr ;
    dcterms:description "reciprocal of the 0.01-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 100.0 ;
    qudt:conversionMultiplierSN 1e+02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:CentiM ] ;
    qudt:hasQuantityKind quantitykind:InverseLength ;
    qudt:iec61360Code "0112/2///62720#UAA382"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA382"^^xsd:anyURI ;
    qudt:plainTextDescription "reciprocal of the 0.01-fold of the SI base unit metre"^^xsd:string ;
    qudt:symbol "/cm"^^xsd:string ;
    qudt:ucumCode "cm-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "E90"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q107226391> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PER-GigaEV2 a qudt:Unit ;
    rdfs:label "Reciprocal Square Giga Electron Volt"^^xsd:string,
        "Reciprocal Square Giga Electron Volt"@en ;
    dcterms:description "Per Square Giga Electron Volt Unit is a denominator unit with dimensions $/GeV^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 38956435526576045471.00292426890084 ;
    qudt:conversionMultiplierSN 3.895644e+19 ;
    qudt:expression "$/GeV^2$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-4I0M-2H0T4D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:GigaEV ] ;
    qudt:hasQuantityKind quantitykind:InverseSquareEnergy ;
    qudt:symbol "/GeV²"^^xsd:string ;
    qudt:ucumCode "GeV-2"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PER-IN2 a qudt:Unit ;
    rdfs:label "Reciprocal Square Inch"^^xsd:string,
        "Reciprocal Square Inch"@en ;
    dcterms:description "complement of the power of the unit inch according to the Anglo-American and Imperial system of units by exponent 2"^^xsd:string ;
    qudt:conversionMultiplier 1550.0031000062000124000248000496 ;
    qudt:conversionMultiplierSN 1.550003e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:IN ] ;
    qudt:hasQuantityKind quantitykind:ParticleFluence ;
    qudt:hasReciprocalUnit unit:IN2 ;
    qudt:iec61360Code "0112/2///62720#UAB361"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB361"^^xsd:anyURI ;
    qudt:symbol "/in²"^^xsd:string ;
    qudt:ucumCode "[in_i]-2"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "P78"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PER-M-SEC a qudt:Unit ;
    rdfs:label "Reciprocal Metre Second"^^xsd:string,
        "На Метър Секунда"@bg,
        "Na Metr Sekunda"@cs,
        "Pro Meter Sekunde"@de,
        "Aνά Μέτρο Δευτερόλεπτο"@el,
        "Reciprocal Metre Second"@en,
        "Reciprocal Meter Second"@en-us,
        "Por Metro Segundo"@es,
        "Par Mètre Seconde"@fr,
        "Per Metro Secondo"@it,
        "Per Metrum Secundum"@la,
        "Per Meter Saat"@ms,
        "Na Metr Sekunda"@pl,
        "Por Metro Segundo"@pt,
        "Pe Metru Secundă"@ro,
        "На Метр Секунда"@ru,
        "Na Meter Sekunda"@sl,
        "Per Metre 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-1I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind quantitykind:Unknown ;
    qudt:hasReciprocalUnit unit:M-SEC ;
    qudt:symbol "/(m·s)"^^xsd:string ;
    qudt:ucumCode "m-1.s-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PER-M2-SEC a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Reciprocal Square Metre Second"^^xsd:string,
        "На Квадратен Метър Секунда"@bg,
        "Na Čtvereční Metr Sekunda"@cs,
        "Pro Quadratmeter Sekunde"@de,
        "Aνά Τετραγωνικό Μέτρο Δευτερόλεπτο"@el,
        "Reciprocal Square Metre Second"@en,
        "Reciprocal Square Meter Second"@en-us,
        "Por Metro Cuadrado Segundo"@es,
        "Par Mètre Carré Seconde"@fr,
        "Per Metro Quadrato Secondo"@it,
        "Per Metrum Quadratum Secundum"@la,
        "Per Meter Persegi Saat"@ms,
        "Na Metr Kwadratowy Sekunda"@pl,
        "Por Metro Quadrado Segundo"@pt,
        "Pe Metru Pătrat Secundă"@ro,
        "На Квадратный Метр Секунда"@ru,
        "Na Kvadratni Meter Sekunda"@sl,
        "Per Metrekare Saniye"@tr ;
    dcterms:description "unit of the particle current density"^^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^{-2}-s^{-1}$"^^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 quantitykind:Flux,
        quantitykind:ParticleFluenceRate ;
    qudt:iec61360Code "0112/2///62720#UAB157"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB157"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:symbol "/(m²·s)"^^xsd:string ;
    qudt:ucumCode "m-2.s-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "B81"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q83951055> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> ;
    skos:altLabel "Reciprocal square metre per second"@en .

unit:PER-M3-SEC a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Reciprocal Cubic Metre Second"^^xsd:string,
        "На Кубичен Метър Секунда"@bg,
        "Na Metr Krychlový Sekunda"@cs,
        "Pro Kubikmeter Sekunde"@de,
        "Aνά Κυβικό Μέτρο Δευτερόλεπτο"@el,
        "Reciprocal Cubic Metre Second"@en,
        "Reciprocal Cubic Meter Second"@en-us,
        "Por Metro Cúbico Segundo"@es,
        "Par Mètre Cube Seconde"@fr,
        "Per Metro Cubo Secondo"@it,
        "Per Metrum Cubicum Secundum"@la,
        "Per Meter Kubik Saat"@ms,
        "Na Metr Sześcienny Sekunda"@pl,
        "Por Metro Cúbico Segundo"@pt,
        "Pe Metru Cub Secundă"@ro,
        "На Кубический Метр Секунда"@ru,
        "Na Kubični Meter Sekunda"@sl,
        "Per Metreküp Saniye"@tr ;
    dcterms:description "unit of the slowing-down density as reciprocal of the power of the SI base unit metre with exponent 3 divided by the SI base unit second"^^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^{-3}-s^{-1}$"^^qudt:LatexString ;
    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 quantitykind:ParticleSourceDensity,
        quantitykind:Slowing-DownDensity ;
    qudt:iec61360Code "0112/2///62720#UAB163"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB163"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:symbol "/(m³·s)"^^xsd:string ;
    qudt:ucumCode "m-3.s-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "C87"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q98915792> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> ;
    skos:altLabel "Reciprocal cubic metre per second"@en .

unit:PER-MilliGM a qudt:Unit ;
    rdfs:label "Reciprocal Milligram"^^xsd:string,
        "Na Milligram"@cs,
        "Pro Milligramm"@de,
        "Reciprocal Milligram"@en,
        "Por Milligramo"@es,
        "Par Milligramme"@fr,
        "Per Milligrammo"@it,
        "Per Milligram"@ms,
        "Na Milligram"@pl,
        "Pe Milligram"@ro,
        "Na Milligram"@sl,
        "Per Milligram"@tr ;
    dcterms:description "reciprocal of the 0.000001-fold of the SI base unit kilogram"^^xsd:string ;
    qudt:conversionMultiplier 1000000.0 ;
    qudt:conversionMultiplierSN 1e+06 ;
    qudt:exactMatch unit:NUM-PER-MilliGM ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M-1H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MilliGM ] ;
    qudt:hasQuantityKind quantitykind:InverseMass ;
    qudt:iec61360Code "0112/2///62720#UAC005"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC005"^^xsd:anyURI ;
    qudt:symbol "/mg"^^xsd:string ;
    qudt:ucumCode "mg-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PER-MilliL a qudt:Unit ;
    rdfs:label "Reciprocal Millilitre"^^xsd:string,
        "Reciprocal Millilitre"@en,
        "Reciprocal Milliliter"@en-us ;
    dcterms:description "reciprocal value of the unit Millilitre"^^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-3I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MilliL ] ;
    qudt:hasQuantityKind quantitykind:InverseVolume ;
    qudt:plainTextDescription "reciprocal value of the unit millilitre"^^xsd:string ;
    qudt:symbol "/mL"^^xsd:string ;
    qudt:ucumCode "mL-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PER-PlanckMass2 a qudt:Unit ;
    rdfs:label "Reciprocal Square Planck Mass"^^xsd:string,
        "Reciprocal Square Planck Mass"@en ;
    dcterms:description "In physics, the Planck mass, denoted by $m_P$, is the unit of mass in the system of natural units known as Planck units. It is defined so that $\\approx  1.2209 \\times 10 GeV/c_0 = 2.17651(13) \\times 10 kg$, (or $21.7651 \\mu g$), where $c_0$ is the speed of light in a vacuum, $G$ is the gravitational constant, and $\\hbar$ is the reduced Planck constant. Particle physicists and cosmologists often use the reduced Planck mass, which is $\\approx  4.341 \\times 10 kg = 2.435  \\times 10 GeV/c$. The added factor of $1/{\\sqrt{8\\pi}}$ simplifies a number of equations in general relativity. Quantum effects are typified by the magnitude of Planck's constant."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/PLANCK> ;
    qudt:conversionMultiplier 2111089287176721.707084516481080014 ;
    qudt:conversionMultiplierSN 2.111089e+15 ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Planck_mass"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M-2H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:PlanckMass ] ;
    qudt:hasQuantityKind quantitykind:InverseSquareMass ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Planck_mass?oldid=493648632"^^xsd:anyURI,
        "https://en.wikipedia.org/wiki/Planck_units"^^xsd:anyURI ;
    qudt:latexDefinition "$m_P = \\sqrt{\\frac{ \\hbar c^3}{G}} \\approx 1.2209 \\times 10^{19} GeV/c^2 = 2.17651(13) \\times 10^{-8}$, where $c$ is the speed of light in a vacuum, $\\hbar$ is the reduced Planck's constant, and $G$ is the gravitational constant. The two digits enclosed by parentheses are the estimated standard error associated with the reported numerical value."^^qudt:LatexString ;
    qudt:symbol "/planckmass²"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PER-SEC-SR a qudt:Unit ;
    rdfs:label "Reciprocal Second Steradian"^^xsd:string,
        "На Секунда Стерадиан"@bg,
        "Na Sekunda Steradián"@cs,
        "Pro Sekunde Steradiant"@de,
        "Aνά Δευτερόλεπτο Στερακτίνιο"@el,
        "Reciprocal Second Steradian"@en,
        "Por Segundo Estereorradián"@es,
        "Par Seconde Stéradian"@fr,
        "Per Secondo Steradiante"@it,
        "Per Secundum Steradian"@la,
        "Per Saat Steradian"@ms,
        "Na Sekunda Steradian"@pl,
        "Por Segundo Esterradiano"@pt,
        "Pe Secundă Steradian"@ro,
        "На Секунда Стерадиан"@ru,
        "Na Sekunda Steradian"@sl,
        "Per Saniye Steradyan"@tr ;
    dcterms:description "Per Second Steradian Unit is a denominator unit with dimensions $/sec-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-sr$"^^qudt:LatexString ;
    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:SR ] ;
    qudt:hasQuantityKind quantitykind:PhotonIntensity,
        quantitykind:TemporalSummationFunction ;
    qudt:iec61360Code "0112/2///62720#UAA976"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA976"^^xsd:anyURI ;
    qudt:symbol "/(s·sr)"^^xsd:string ;
    qudt:ucumCode "s-1.sr-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "D1"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q83853845> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PER-SEC2 a qudt:Unit ;
    rdfs:label "Reciprocal Square Second"^^xsd:string,
        "На Квадратен Секунда"@bg,
        "Na Čtvereční Sekunda"@cs,
        "Pro Quadratsekunde"@de,
        "Aνά Τετραγωνικό Δευτερόλεπτο"@el,
        "Reciprocal Square Second"@en,
        "Por Segundo Cuadrado"@es,
        "Par Seconde Carré"@fr,
        "Per Secondo Quadrato"@it,
        "Per Secundum Quadratum"@la,
        "Per Saat Persegi"@ms,
        "Na Sekunda Kwadratowy"@pl,
        "Por Segundo Quadrado"@pt,
        "Pe Secundă Pătrat"@ro,
        "На Квадратный Секунда"@ru,
        "Na Kvadratni Sekunda"@sl,
        "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/IMPERIAL>,
        <http://qudt.org/vocab/sou/SI>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind quantitykind:InverseSquareTime ;
    qudt:hasReciprocalUnit unit:SEC2 ;
    qudt:symbol "/s²"^^xsd:string ;
    qudt:ucumCode "s-2"^^qudt:UCUMcs ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q106680668> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PER-VA-SEC a qudt:Unit ;
    rdfs:label "Reciprocal Volt Ampere Second"^^xsd:string,
        "Pro Voltampere Sekunde"@de,
        "Reciprocal Volt Ampere Second"@en,
        "Por Voltiamperio Segundo"@es,
        "Par Voltampère Seconde"@fr,
        "Per Volt Ampere Secondo"@it,
        "Por Volt-ampere Segundo"@pt,
        "На Вольт-ампер Секунда"@ru ;
    dcterms:description "reciprocal of the product of the SI derived unit volt ampere and the SI base unit second"^^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:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:VA ] ;
    qudt:hasQuantityKind quantitykind: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 "/(VA·s)"^^xsd:string ;
    qudt:ucumCode "VA-1.s-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PER-WB a qudt:Unit ;
    rdfs:label "Reciprocal Weber"^^xsd:string,
        "На Вебер"@bg,
        "Na Weber"@cs,
        "Pro Weber"@de,
        "Aνά Βέμπερ"@el,
        "Reciprocal Weber"@en,
        "Por Weber"@es,
        "Par Weber"@fr,
        "Per Weber"@it,
        "Per Weberium"@la,
        "Per Weber"@ms,
        "Na Weber"@pl,
        "Por Weber"@pt,
        "Pe Weber"@ro,
        "На Вебер"@ru,
        "Na Weber"@sl,
        "Per Weber"@tr ;
    dcterms:description "complement of the SI derived unit weber as unit of the Josephson constant, which value is equal to the 384,597,891-fold of the reference value gigahertz divided by volt"^^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:expression "$Wb^{-1}$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L-2I0M-1H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:WB ] ;
    qudt:hasQuantityKind quantitykind:InverseMagneticFlux ;
    qudt:iec61360Code "0112/2///62720#UAB354"^^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%23UAB354"^^xsd:anyURI ;
    qudt:symbol "/Wb"^^xsd:string ;
    qudt:ucumCode "Wb-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "Q23"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PERCENT-PER-HUNDRED 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 ;
    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:PERCENT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HUNDRED ] ;
    qudt:hasQuantityKind quantitykind: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-THOUSAND 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 ;
    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:THOUSAND ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PERCENT ] ;
    qudt:hasQuantityKind quantitykind: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:PH a qudt:Unit ;
    rdfs:label "Acidity"^^xsd:string,
        "Acidity"@en ;
    dcterms:description """
  In chemistry the unit $\\textit{pH}$, also referred to as $\\textit{acidity}$ or $\\textit{basicity}$,
   is the negative logarithm (base 10) of the concentration of free protons (or hydronium ions).
  The definition of $pH$ in terms of hydrogen ions in solution is:

  $$\\text{pH}=-\\log_{10}(a_{H^+})\\equiv-\\log_{10}\\left(\\left[H^+\\right]\\right)$$

  Where $a_{H^+}$ is the equilibrium molar concentration of $H^+$ in the solution, the activity of
   the hydrogen ion in the solution.
  $$$$
  This definition is appropriate for concentrations equal to, or less than $1\\ mol/l$, 
   where $aH+ \\equiv [H+]$, that is, $1\\ mol/L\\ HCl$ has a $pH$ of zero.
  $$$$
  To relate this to standard molality ($b^\\circ$), typically taken as $1 \\ mol/kg$, 
   consideration is given to the activity ($a_{H^+}$) of the hydrogen ions.
  $$$$
  The activity can be expressed as:

  $$a_{H^+} = \\gamma_{H^+} \\times m_{H^+}$$ 

  Where, $\\gamma_{H^+}$ is the activity coefficient, which adjusts the molality to account for
   non-ideal behavior due to interactions between ions in the solution.
  $m_{H^+}$ is the molality of hydrogen ions in the solution relative to the standard molality, 
   expressed in $mol/kg$.
  $$$$
  The expansion of $pH$ then becomes:

  $$\\text{pH} = -log_{10}\\left(m_{H+}\\times\\gamma_{H^+}\\right)$$

  $$$$
  This definition is relevant in more concentrated solutions or when precise thermodynamic calculations are required. 
  It reflects how the properties of the solution deviate from ideal behavior and provides a more accurate understanding of the $pH$ under various conditions.
  $$$$
  While $pH$ is a universally recognized scale for expressing hydrogen ion activity,
  its appropriateness and accuracy can diminish under conditions of extremely high
  ionic strength, non-aqueous environments, high temperatures, or very high or low $pH$ values.
  In such cases, alternative measurement strategies might be required to obtain meaningful and accurate descriptions of acidity or basicity.
  """^^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 quantitykind:Acidity,
        quantitykind:Basicity ;
    qudt:informativeReference "https://iupac.org/wp-content/uploads/2019/05/IUPAC-GB3-2012-2ndPrinting-PDFsearchable.pdf"^^xsd:anyURI ;
    qudt:symbol "pH"^^xsd:string ;
    qudt:ucumCode "[pH]"^^qudt:UCUMcs ;
    rdfs:comment "Unsure about dimensionality of pH; conversion requires a log function not just a multiplier"@en ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PPT_VOL a qudt:ContextualUnit,
        qudt:Unit ;
    rdfs:label "Parts per Trillion by Volume"^^xsd:string,
        "Parts per Trillion by Volume"@en ;
    dcterms:description "Dimensionless unit for concentration by volume. Recommended practice is to use specific units such as $ug/l$."^^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.000000000001 ;
    qudt:conversionMultiplierSN 1e-12 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Unknown ;
    qudt:scalingOf unit:NUM ;
    qudt:symbol "ppt (volume)"^^xsd:string ;
    qudt:ucumCode "[pptr]{vol}"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> ;
    skos:broader unit:PPT .

unit:PSI-PER-IN a qudt:Unit ;
    rdfs:label "Psi per Inch"^^xsd:string,
        "Psi per Inch"@en ;
    dcterms:description "compound unit for pressure (pound-force according to the Anglo-American unit system divided by the power of the unit inch according to the Anglo-American and Imperial system of units with the exponent 2) divided by the unit inch according to the Anglo-American and Imperial system of units"^^xsd:string ;
    qudt:conversionMultiplier 271447.1497054715109430218860437721 ;
    qudt:conversionMultiplierSN 2.714471e+05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PSI ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:IN ] ;
    qudt:hasQuantityKind quantitykind:PressureGradient ;
    qudt:hasReciprocalUnit unit:IN-PER-PSI ;
    qudt:iec61360Code "0112/2///62720#UAB426"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB426"^^xsd:anyURI ;
    qudt:symbol "psi/in"^^xsd:string ;
    qudt:ucumCode "[psi].[in_i]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "P86"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PT_BIG a qudt:Unit ;
    rdfs:label "Big Point"^^xsd:string,
        "Big Point"@en ;
    dcterms:description "unit for the type size correspondening to: 1 bp = 1/72 in"^^xsd:string ;
    qudt:conversionMultiplier 0.0003527778 ;
    qudt:conversionMultiplierSN 3.527778e-04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:hasQuantityKind quantitykind:Distance ;
    qudt:iec61360Code "0112/2///62720#UAB379"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB379"^^xsd:anyURI ;
    qudt:scalingOf unit:M ;
    qudt:symbol "pb"^^xsd:string ;
    qudt:uneceCommonCode "H82"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PebiBYTE a qudt:CountingUnit,
        qudt:Unit ;
    rdfs:label "Pebibyte"^^xsd:string,
        "Pebibyte"@en ;
    dcterms:description "The pebibyte is a standards-based binary multiple (prefix pebi, symbol Pi) of the byte, a unit of digital information storage. The pebibyte unit symbol is PiB. 1 pebibyte =  1125899906842624bytes = 1024 tebibytes The pebibyte is closely related to the petabyte, which is defined as $10^{15} bytes = 1,000,000,000,000,000 bytes$."^^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 698137323685796.73354331036219321 ;
    qudt:conversionMultiplierSN 6.981373e+14 ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Pebibyte"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:InformationEntropy ;
    qudt:iec61360Code "0112/2///62720#UAA274"^^xsd:string ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Pebibyte?oldid=492685015"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA274"^^xsd:anyURI ;
    qudt:prefix <http://qudt.org/vocab/prefix/Pebi> ;
    qudt:scalingOf unit:BYTE ;
    qudt:symbol "PiB"^^xsd:string ;
    qudt:uneceCommonCode "E60"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q79774> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PetaBIT a qudt:Unit ;
    rdfs:label "Petabit"^^xsd:string,
        "Petabit"@en ;
    dcterms:description "1,000,000,000,000,000-fold of the unit bit"^^xsd:string ;
    qudt:conversionMultiplier 693147180559945.30941723212145818 ;
    qudt:conversionMultiplierSN 6.931472e+14 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:DatasetOfBits ;
    qudt:iec61360Code "0112/2///62720#UAB190"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB190"^^xsd:anyURI ;
    qudt:prefix <http://qudt.org/vocab/prefix/Peta> ;
    qudt:scalingOf unit:BIT ;
    qudt:symbol "Pb"^^xsd:string ;
    qudt:ucumCode "Pbit"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "E78"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q1152074> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PetaBYTE a qudt:CountingUnit,
        qudt:Unit ;
    rdfs:label "Petabyte"^^xsd:string,
        "Petabyte"@en ;
    dcterms:description "A petabyte is a unit of information equal to one quadrillion bytes, or 1024 terabytes. The unit symbol for the petabyte is PB. The prefix peta (P) indicates the fifth power to 1000: 1 PB = 1000000000000000B, 1 million gigabytes = 1 thousand terabytes The pebibyte (PiB), using a binary prefix, is the corresponding power of 1024, which is more than $12\\% $greater ($2^{50} bytes = 1,125,899,906,842,624 bytes$)."^^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 5545177444479562.47533785697166544 ;
    qudt:conversionMultiplierSN 5.545177e+15 ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Petabyte"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:InformationEntropy ;
    qudt:iec61360Code "0112/2///62720#UAB187"^^xsd:string ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Petabyte?oldid=494735969"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB187"^^xsd:anyURI ;
    qudt:prefix <http://qudt.org/vocab/prefix/Peta> ;
    qudt:scalingOf unit:BYTE ;
    qudt:symbol "PB"^^xsd:string ;
    qudt:ucumCode "PBy"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "E36"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q79744> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PetaVA a qudt:Unit ;
    rdfs:label "Peta Volt Ampere"^^xsd:string,
        "Petavoltampere"@de,
        "Peta Volt Ampere"@en,
        "Petavoltiamperio"@es,
        "Petavoltampère"@fr,
        "Peta Volt Ampere"@it ;
    dcterms:description "1,000,000,000,000,000-fold of the SI derived unit ampere"^^xsd:string ;
    qudt:conversionMultiplier 1000000000000000.0 ;
    qudt:conversionMultiplierSN 1e+15 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-3D0> ;
    qudt:hasQuantityKind quantitykind: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:prefix <http://qudt.org/vocab/prefix/Peta> ;
    qudt:scalingOf unit:VA ;
    qudt:symbol "PVA"^^xsd:string ;
    qudt:ucumCode "PVA"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PicoFARAD a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Picofarad"^^xsd:string,
        "Picofarad"@cs,
        "Picofarad"@de,
        "Picofarad"@en,
        "Picofaradio"@es,
        "Picofarad"@fr,
        "Picofarad"@hu,
        "Picofarad"@it,
        "Picofarad"@ms,
        "Picofarad"@pl,
        "Picofarad"@ro,
        "Picofarad"@sl,
        "Picofarad"@tr ;
    dcterms:description "\"PicoF\" is a common unit of electric capacitance equal to $10^{-12} farad$. This unit was formerly called the micromicrofarad."^^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.000000000001 ;
    qudt:conversionMultiplierSN 1e-12 ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Farad"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E2L-2I0M-1H0T4D0> ;
    qudt:hasQuantityKind quantitykind:Capacitance ;
    qudt:iec61360Code "0112/2///62720#UAA930"^^xsd:string ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Farad?oldid=493070876"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA930"^^xsd:anyURI ;
    qudt:prefix <http://qudt.org/vocab/prefix/Pico> ;
    qudt:scalingOf unit:FARAD ;
    qudt:symbol "pF"^^xsd:string ;
    qudt:ucumCode "pF"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "4T"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q2756030> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PicoH a qudt:Unit ;
    rdfs:label "Picohenry"^^xsd:string,
        "Picohenry"@cs,
        "Picohenry"@de,
        "Picohenry"@en,
        "Picohenrio"@es,
        "Picohenry"@fr,
        "Picohenry"@hu,
        "Picohenry"@it,
        "Picohenry"@ms,
        "Picohenr"@pl,
        "Picohenry"@ro,
        "Picohenry"@sl,
        "Picohenry"@tr ;
    dcterms:description "0.000000000001-fold of the SI derived unit henry"^^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.000000000001 ;
    qudt:conversionMultiplierSN 1e-12 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-2L2I0M1H0T-2D0> ;
    qudt:hasQuantityKind quantitykind:Inductance ;
    qudt:iec61360Code "0112/2///62720#UAA932"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA932"^^xsd:anyURI ;
    qudt:plainTextDescription "0.000000000001-fold of the SI derived unit henry"^^xsd:string ;
    qudt:prefix <http://qudt.org/vocab/prefix/Pico> ;
    qudt:scalingOf unit:H ;
    qudt:symbol "pH"^^xsd:string ;
    qudt:ucumCode "pH"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "C73"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q96051150> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PicoKAT a qudt:Unit ;
    rdfs:label "Picokatal"^^xsd:string,
        "Picokatal"@cs,
        "Picokatal"@de,
        "Picokatal"@en,
        "Picokatal"@es,
        "Picokatal"@fr,
        "Picokatal"@hu,
        "Picokatal"@it,
        "Picokatal"@ms,
        "Picokatal"@pl,
        "Picokatal"@ro,
        "Picokatal"@sl,
        "Picokatal"@tr ;
    qudt:conversionMultiplier 0.000000000001 ;
    qudt:conversionMultiplierSN 1e-12 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L0I0M0H0T-1D0> ;
    qudt:hasQuantityKind quantitykind:CatalyticActivity ;
    qudt:prefix <http://qudt.org/vocab/prefix/Pico> ;
    qudt:scalingOf unit:KAT ;
    qudt:symbol "pkat"^^xsd:string ;
    qudt:ucumCode "pkat"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PicoVA a qudt:Unit ;
    rdfs:label "Pico Volt Ampere"^^xsd:string,
        "Picovoltampere"@de,
        "Pico Volt Ampere"@en,
        "Picovoltiamperio"@es,
        "Picovoltampère"@fr,
        "Pico Volt Ampere"@it ;
    dcterms:description "0.000000000001-fold of the product of the SI base unit volt with the SI base unit ampere"^^xsd:string ;
    qudt:conversionMultiplier 0.000000000001 ;
    qudt:conversionMultiplierSN 1e-12 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-3D0> ;
    qudt:hasQuantityKind quantitykind: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:prefix <http://qudt.org/vocab/prefix/Pico> ;
    qudt:scalingOf unit:VA ;
    qudt:symbol "pVA"^^xsd:string ;
    qudt:ucumCode "pVA"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PicoVAR a qudt:Unit ;
    rdfs:label "Pico Volt Ampere Reactive"^^xsd:string,
        "Pico Volt Ampere Reactive"@en ;
    dcterms:description "0.000000000001-fold of the unit volt ampere reactive"^^xsd:string ;
    qudt:conversionMultiplier 0.000000000001 ;
    qudt:conversionMultiplierSN 1e-12 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-3D0> ;
    qudt:hasQuantityKind quantitykind: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:prefix <http://qudt.org/vocab/prefix/Pico> ;
    qudt:scalingOf unit:VAR ;
    qudt:symbol "pVA{Reactive}"^^xsd:string ;
    qudt:ucumCode "pVA{reactive}"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PlanckCurrent a qudt:Unit ;
    rdfs:label "Planck Current"^^xsd:string,
        "Planck Current"@en ;
    dcterms:description "The Planck current is the unit of electric current, denoted by IP, in the system of natural units known as Planck units. $\\approx 3.479 \\times 10 A$, where:  the Planck time is the permittivity in vacuum and the reduced Planck constant G is the gravitational constant c is the speed of light in vacuum. The Planck current is that current which, in a conductor, carries a Planck charge in Planck time. Alternatively, the Planck current is that constant current which, if maintained in two straight parallel conductors of infinite length and negligible circular cross-section, and placed a Planck length apart in vacuum, would produce between these conductors a force equal to a Planck force per Planck length."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/PLANCK> ;
    qudt:conversionMultiplier 34789000000000000000000000.0 ;
    qudt:conversionMultiplierSN 3.4789e+25 ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Planck_current"^^xsd:anyURI ;
    qudt:derivedUnitOfSystem <http://qudt.org/vocab/sou/PLANCK> ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L0I0M0H0T0D0> ;
    qudt:hasQuantityKind quantitykind:ElectricCurrent ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Planck_current?oldid=493640689"^^xsd:anyURI ;
    qudt:scalingOf unit:A ;
    qudt:symbol "planckcurrent"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q1196846> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PlanckMomentum a qudt:Unit ;
    rdfs:label "Planck Momentum"^^xsd:string,
        "Planck Momentum"@en ;
    dcterms:description "Planck momentum is the unit of momentum in the system of natural units known as Planck units. It has no commonly used symbol of its own, but can be denoted by, where is the Planck mass and is the speed of light in a vacuum. Then where is the reduced Planck's constant, is the Planck length, is the gravitational constant. In SI units Planck momentum is $\\approx 6.5 kg m/s$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/PLANCK> ;
    qudt:conversionMultiplier 6.52485 ;
    qudt:conversionMultiplierSN 6.52485e+00 ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Planck_momentum"^^xsd:anyURI ;
    qudt:derivedUnitOfSystem <http://qudt.org/vocab/sou/PLANCK> ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-1D0> ;
    qudt:hasQuantityKind quantitykind:LinearMomentum,
        quantitykind:Momentum ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Planck_momentum?oldid=493644981"^^xsd:anyURI ;
    qudt:scalingOf unit:KiloGM-M-PER-SEC ;
    qudt:symbol "planckmomentum"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q239830> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:RAD_R a qudt:Unit ;
    rdfs:label "Rad"^^xsd:string,
        "Rad"@en ;
    dcterms:description "The $rad$ is a deprecated unit of absorbed radiation dose, defined as $1 rad = 0.01\\,Gy = 0.01 J/kg$. It was originally defined in CGS units in 1953 as the dose causing 100 ergs of energy to be absorbed by one gram of matter. It has been replaced by the gray in most of the world. A related unit, the $roentgen$, was formerly used to quantify the number of rad deposited into a target when it was exposed to radiation. The F-factor can used to convert between rad and roentgens. The material absorbing the radiation can be human tissue or silicon microchips or any other medium (for example, air, water, lead shielding, etc.)."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS> ;
    qudt:conversionMultiplier 0.01 ;
    qudt:conversionMultiplierSN 1e-02 ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/RAD"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T-2D0> ;
    qudt:hasQuantityKind quantitykind:AbsorbedDose ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/RAD?oldid=493716376"^^xsd:anyURI ;
    qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/rad> ;
    qudt:scalingOf unit:M2-PER-SEC2 ;
    qudt:symbol "rad"^^xsd:string ;
    qudt:ucumCode "RAD"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "C80"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q1052397> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:RAYL a qudt:Unit ;
    rdfs:label "Rayl"^^xsd:string,
        "Rayl"@en ;
    dcterms:description """The $Rayl$ is one of two units of specific acoustic impedance. There is a CGS version and an MKS version of different magnitude. 
  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 one rayl if unit pressure produces unit velocity. It is defined as follows: $1\\; rayl = 1 dyn\\cdot s\\cdot cm^{-3}$ Or in 
  SI as: $1 \\; rayl = 10^{-1}Pa\\cdot s\\cdot m^{-1}$, which equals $10\\,N \\cdot s\\cdot m^{-3}$."""^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS> ;
    qudt:conversionMultiplier 10.0 ;
    qudt:conversionMultiplierSN 1e+01 ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Rayl"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M1H0T-1D0> ;
    qudt:hasQuantityKind quantitykind:SpecificAcousticImpedance ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Rayl"^^xsd:anyURI ;
    qudt:scalingOf unit:KiloGM-PER-M2-SEC ;
    qudt:symbol "rayl"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q359151> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> ;
    rdfs:seeAlso unit:RAYL_MKS .

unit:RAYL_MKS a qudt:Unit ;
    rdfs:label "Rayl_MKS"^^xsd:string,
        "Rayl_MKS"@en ;
    dcterms:description """The $Rayl$ is one of two units of specific acoustic impedance. There is a CGS version and an MKS version of different magnitude. 
  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 one rayl if unit pressure produces unit velocity. It is defined as follows: $1\\; rayl = 1 dyn\\cdot s\\cdot cm^{-3}$ Or in 
  SI as: $1 \\; rayl = 10^{-1}Pa\\cdot s\\cdot m^{-1}$, which equals $10\\,N \\cdot s\\cdot m^{-3}$."""^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Rayl"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M1H0T-1D0> ;
    qudt:hasQuantityKind quantitykind:SpecificAcousticImpedance ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Rayl"^^xsd:anyURI ;
    qudt:scalingOf unit:KiloGM-PER-M2-SEC ;
    qudt:symbol "rayl_MKS"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q359151> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> ;
    rdfs:seeAlso unit:RAYL .

unit:REV-PER-HR a qudt:Unit ;
    rdfs:label "Revolution per Hour"^^xsd:string,
        "Revolution per Hour"@en ;
    dcterms:description "\"Revolution per Hour\" is a unit for  'Angular Velocity' expressed as $rev/h$."^^qudt:LatexString ;
    qudt:conversionMultiplier 0.001745329252777777777777777777777778 ;
    qudt:conversionMultiplierSN 1.745329e-03 ;
    qudt:expression "$rev/h$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:REV ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ] ;
    qudt:hasQuantityKind quantitykind:RotationalFrequency,
        quantitykind:RotationalVelocity ;
    qudt:symbol "rev/h"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:REV-PER-MIN a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Revolution per Minute"^^xsd:string,
        "Revolution per Minute"@en ;
    dcterms:description "\"Revolution per Minute\" is a unit for  'Angular Velocity' expressed as $rev/min$.  One revolution per minute is equivalent to 1/60 hertz."^^qudt:LatexString ;
    qudt:altSymbol "RPM"^^xsd:string,
        "r/min"^^xsd:string,
        "rpm"^^xsd:string ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.1047197551666666666666666666666667 ;
    qudt:conversionMultiplierSN 1.047198e-01 ;
    qudt:expression "$rev/min$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:REV ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MIN ] ;
    qudt:hasQuantityKind quantitykind:RotationalFrequency,
        quantitykind:RotationalVelocity ;
    qudt:iec61360Code "0112/2///62720#UAB231"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB231"^^xsd:anyURI ;
    qudt:symbol "rev/min"^^xsd:string ;
    qudt:ucumCode "{#}.min-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "M46"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q206037> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:REV-PER-SEC a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Revolution per Second"^^xsd:string,
        "Revolution per Second"@en ;
    dcterms:description "\"Revolution per Second\" is a unit for 'Angular Velocity' expressed as $rev/s$."^^qudt:LatexString ;
    qudt:conversionMultiplier 6.28318531 ;
    qudt:conversionMultiplierSN 6.283185e+00 ;
    qudt:expression "$rev/s$"^^qudt:LatexString ;
    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:REV ] ;
    qudt:hasQuantityKind quantitykind:RotationalFrequency,
        quantitykind:RotationalVelocity ;
    qudt:symbol "rev/s"^^xsd:string ;
    qudt:uneceCommonCode "RPS"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:SEC-PER-FT2 a qudt:Unit ;
    rdfs:label "Second per Square Foot"^^xsd:string,
        "Second per Square 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 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 10.7639104167097223083335055559 ;
    qudt:conversionMultiplierSN 1.076391e+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 -2 ;
            qudt:hasUnit unit:FT ] ;
    qudt:hasQuantityKind quantitykind:Unknown ;
    qudt:hasReciprocalUnit unit:FT2-PER-SEC ;
    qudt:iec61360Code "0112/2///62720#UAD843"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD843"^^xsd:anyURI ;
    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-NUM a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Second per Number"^^xsd:string,
        "Second per Number"@en ;
    dcterms:description "Seconds between events of note - inverse of frequency."^^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/A0E0L0I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:NUM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind quantitykind:TimePerCount ;
    qudt:hasReciprocalUnit unit:NUM-PER-SEC ;
    qudt:symbol "s/#"^^xsd:string ;
    qudt:ucumCode "s.{#}-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:SEC2 a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Square Second"^^xsd:string,
        "Квадратен Секунда"@bg,
        "Čtvereční Sekunda"@cs,
        "Quadratsekunde"@de,
        "Τετραγωνικό Δευτερόλεπτο"@el,
        "Square Second"@en,
        "Segundo Cuadrado"@es,
        "Seconde Carré"@fr,
        "Secondo Quadrato"@it,
        "Secundum Quadratum"@la,
        "Saat Persegi"@ms,
        "Sekunda Kwadratowy"@pl,
        "Segundo Quadrado"@pt,
        "Secundă Pătrat"@ro,
        "Квадратный Секунда"@ru,
        "Kvadratni Sekunda"@sl,
        "Saniyekare"@tr ;
    dcterms:description "\"Square Second\" is a unit for  'Square Time' expressed as $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/IMPERIAL>,
        <http://qudt.org/vocab/sou/SI>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/SI>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:derivedCoherentUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:expression "$s^2$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind quantitykind:SquareTime ;
    qudt:hasReciprocalUnit unit:PER-SEC2 ;
    qudt:symbol "s²"^^xsd:string ;
    qudt:ucumCode "s2"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:SLUG-PER-FT-SEC a qudt:Unit ;
    rdfs:label "Slug per Foot Second"^^xsd:string,
        "Slug per Foot Second"@en ;
    dcterms:description "$\\textit{Slug per Foot Second}$ is a unit for  'Dynamic Viscosity' expressed as $slug/(ft-s)$."^^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/USCS> ;
    qudt:expression "$slug/(ft-s)$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-1D0> ;
    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:SLUG ] ;
    qudt:hasQuantityKind quantitykind:DynamicViscosity,
        quantitykind:Viscosity ;
    qudt:iec61360Code "0112/2///62720#UAA980"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA980"^^xsd:anyURI ;
    qudt:symbol "slug/(ft·s)"^^xsd:string ;
    qudt:uneceCommonCode "L64"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:SLUG-PER-SEC a qudt:Unit ;
    rdfs:label "Slug per Second"^^xsd:string,
        "Slug per Second"@en ;
    dcterms:description "\"Slug per Second\" is an Imperial unit for  'Mass Per Time' expressed as $slug/s$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL> ;
    qudt:conversionMultiplier 14.5939035919985 ;
    qudt:conversionMultiplierSN 1.45939e+01 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/IMPERIAL> ;
    qudt:expression "$slug/s$"^^qudt:LatexString ;
    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:SEC ] ;
    qudt:hasQuantityKind quantitykind:MassFlowRate,
        quantitykind:MassPerTime ;
    qudt:iec61360Code "0112/2///62720#UAA984"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA984"^^xsd:anyURI ;
    qudt:symbol "slug/s"^^xsd:string ;
    qudt:uneceCommonCode "L68"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:S_Stat a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Statsiemens"^^xsd:string,
        "Statsiemens"@en ;
    dcterms:description "The unit of conductance, admittance, and susceptance in the centimeter-gram-second electrostatic system of units."^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS-ESU> ;
    qudt:conversionMultiplier 0.0000000000011126500561 ;
    qudt:conversionMultiplierSN 1.11265e-12 ;
    qudt:derivedUnitOfSystem <http://qudt.org/vocab/sou/CGS-ESU> ;
    qudt:exactMatch unit:MHO_Stat ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E2L-3I0M-1H0T3D0> ;
    qudt:hasQuantityKind quantitykind:ElectricConductivity ;
    qudt:informativeReference "http://www.knowledgedoor.com/2/units_and_constants_handbook/statsiemens.html"^^xsd:anyURI,
        "http://www.sizes.com/units/statmho.htm"^^xsd:anyURI,
        "http://www3.wolframalpha.com/input/?i=statsiemens"^^xsd:anyURI ;
    qudt:scalingOf unit:S-PER-M ;
    qudt:symbol "statS"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> ;
    skos:altLabel "statmho"^^xsd:string .

unit:SpeedOfLight a qudt:ContextualUnit,
        qudt:Unit ;
    rdfs:label "Speed of Light"^^xsd:string,
        "Speed of Light"@en ;
    qudt:conversionMultiplier 0.0 ;
    qudt:conversionMultiplierSN 0e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T-1D0> ;
    qudt:hasQuantityKind quantitykind:SpeedOfLight ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:T-M a qudt:Unit ;
    rdfs:label "Tesla Metre"^^xsd:string,
        "Тесла Метър"@bg,
        "Tesla Metr"@cs,
        "Tesla Meter"@de,
        "Τέσλα Μέτρο"@el,
        "Tesla Metre"@en,
        "Tesla Meter"@en-us,
        "Tesla Metro"@es,
        "Tesla Mètre"@fr,
        "Tesla Metro"@it,
        "Tesla Metrum"@la,
        "Tesla Meter"@ms,
        "Tesla Metr"@pl,
        "Tesla Metro"@pt,
        "Tesla Metru"@ro,
        "Тесла Метр"@ru,
        "Tesla Meter"@sl,
        "Tesla 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-1L1I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:T ] ;
    qudt:hasQuantityKind quantitykind:MagneticFluxPerLength ;
    qudt:hasReciprocalUnit unit:PER-T-M ;
    qudt:symbol "T·m"^^xsd:string ;
    qudt:ucumCode "T.m"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:T-SEC a qudt:Unit ;
    rdfs:label "Tesla Second"^^xsd:string,
        "Тесла Секунда"@bg,
        "Tesla Sekunda"@cs,
        "Tesla Sekunde"@de,
        "Τέσλα Δευτερόλεπτο"@el,
        "Tesla Second"@en,
        "Tesla Segundo"@es,
        "Tesla Seconde"@fr,
        "Tesla Secondo"@it,
        "Tesla Secundum"@la,
        "Tesla Saat"@ms,
        "Tesla Sekunda"@pl,
        "Tesla Segundo"@pt,
        "Tesla Secundă"@ro,
        "Тесла Секунда"@ru,
        "Tesla Sekunda"@sl,
        "Tesla Saniye"@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-1L0I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:T ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind quantitykind:MassPerElectricCharge ;
    qudt:hasReciprocalUnit unit:PER-T-SEC ;
    qudt:symbol "T·s"^^xsd:string ;
    qudt:ucumCode "T.s"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:TONNE-PER-BAR a qudt:Unit ;
    rdfs:label "Tonne per Bar"^^xsd:string,
        "Tonne per Bar"@en ;
    dcterms:description "unit ton divided by the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.01 ;
    qudt:conversionMultiplierSN 1e-02 ;
    qudt:exactMatch unit:TON_Metric-PER-BAR ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:TONNE ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ] ;
    qudt:hasQuantityKind quantitykind:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA990"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA990"^^xsd:anyURI ;
    qudt:symbol "t/bar"^^xsd:string ;
    qudt:ucumCode "t.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "L70"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:TONNE-PER-DAY a qudt:Unit ;
    rdfs:label "Tonne per Day"^^xsd:string,
        "Tonne per Day"@en ;
    dcterms:description "metric unit tonne divided by the unit for time 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.01157407407407407407407407407407407 ;
    qudt:conversionMultiplierSN 1.157407e-02 ;
    qudt:exactMatch unit:TON_Metric-PER-DAY ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:TONNE ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DAY ] ;
    qudt:hasQuantityKind quantitykind:MassFlowRate ;
    qudt:iec61360Code "0112/2///62720#UAA991"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA991"^^xsd:anyURI ;
    qudt:plainTextDescription "metric unit tonne divided by the unit for time day"^^xsd:string ;
    qudt:symbol "t/d"^^xsd:string ;
    qudt:ucumCode "t.d-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "L71"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:TONNE-PER-DAY-BAR a qudt:Unit ;
    rdfs:label "Tonne per Day Bar"^^xsd:string,
        "Tonne per Day Bar"@en ;
    dcterms:description "unit ton divided by the product of the unit day and the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.0000001157407407407407407407407407407407 ;
    qudt:conversionMultiplierSN 1.157407e-07 ;
    qudt:exactMatch unit:TON_Metric-PER-DAY-BAR ;
    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:TONNE ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ] ;
    qudt:hasQuantityKind quantitykind:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA993"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA993"^^xsd:anyURI ;
    qudt:symbol "t/(d·bar)"^^xsd:string ;
    qudt:ucumCode "t.d-1.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "L73"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:TONNE-PER-DAY-K a qudt:Unit ;
    rdfs:label "Tonne per Day Kelvin"^^xsd:string,
        "Tonne per Day Kelvin"@en ;
    dcterms:description "unit ton divided by the product of the unit day and the SI base unit Kelvin"^^xsd:string ;
    qudt:conversionMultiplier 0.01157407407407407407407407407407407 ;
    qudt:conversionMultiplierSN 1.157407e-02 ;
    qudt:exactMatch unit:TON_Metric-PER-DAY-K ;
    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:TONNE ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DAY ] ;
    qudt:hasQuantityKind quantitykind:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA992"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA992"^^xsd:anyURI ;
    qudt:symbol "t/(d·K)"^^xsd:string ;
    qudt:ucumCode "t.d-1.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "L72"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:TONNE-PER-HR a qudt:Unit ;
    rdfs:label "Tonne per Hour"^^xsd:string,
        "Tonne per Hour"@en ;
    dcterms:description "unit tonne divided by the unit for time 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.2777777777777777777777777777777778 ;
    qudt:conversionMultiplierSN 2.777778e-01 ;
    qudt:exactMatch unit:TON_Metric-PER-HR ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:TONNE ] ;
    qudt:hasQuantityKind quantitykind:MassFlowRate ;
    qudt:iec61360Code "0112/2///62720#UAB994"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB994"^^xsd:anyURI ;
    qudt:plainTextDescription "unit tonne divided by the unit for time hour"^^xsd:string ;
    qudt:symbol "t/h"^^xsd:string ;
    qudt:ucumCode "t.h-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "E18"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:TONNE-PER-HR-BAR a qudt:Unit ;
    rdfs:label "Tonne per Hour Bar"^^xsd:string,
        "Tonne per Hour Bar"@en ;
    dcterms:description "unit ton divided by the product of the unit hour and the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.000002777777777777777777777777777777778 ;
    qudt:conversionMultiplierSN 2.777778e-06 ;
    qudt:exactMatch unit:TON_Metric-PER-HR-BAR ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T1D0> ;
    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:TONNE ] ;
    qudt:hasQuantityKind quantitykind:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA996"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA996"^^xsd:anyURI ;
    qudt:symbol "t/(h·bar)"^^xsd:string ;
    qudt:ucumCode "t.h-1.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "L75"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:TONNE-PER-HR-K a qudt:Unit ;
    rdfs:label "Tonne per Hour Kelvin"^^xsd:string,
        "Tonne per Hour Kelvin"@en ;
    dcterms:description "unit ton divided by the product of the unit hour and the SI base unit Kelvin"^^xsd:string ;
    qudt:conversionMultiplier 0.2777777777777777777777777777777778 ;
    qudt:conversionMultiplierSN 2.777778e-01 ;
    qudt:exactMatch unit:TON_Metric-PER-HR-K ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H-1T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:TONNE ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ] ;
    qudt:hasQuantityKind quantitykind:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA995"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA995"^^xsd:anyURI ;
    qudt:symbol "t/(h·K)"^^xsd:string ;
    qudt:ucumCode "t.h-1.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "L74"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:TONNE-PER-K a qudt:Unit ;
    rdfs:label "Tonne per Kelvin"^^xsd:string,
        "Tonne per Kelvin"@en ;
    dcterms:description "unit ton divided by the SI base unit Kelvin"^^xsd:string ;
    qudt:conversionMultiplier 1000.0 ;
    qudt:conversionMultiplierSN 1e+03 ;
    qudt:exactMatch unit:TON_Metric-PER-K ;
    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:TONNE ] ;
    qudt:hasQuantityKind quantitykind:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA989"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA989"^^xsd:anyURI ;
    qudt:symbol "t/K"^^xsd:string ;
    qudt:ucumCode "t.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "L69"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:TONNE-PER-M3-K a qudt:Unit ;
    rdfs:label "Tonne per Cubic Metre Kelvin"^^xsd:string,
        "Tonne per Cubic Metre Kelvin"@en,
        "Tonne per Cubic Meter Kelvin"@en-us ;
    dcterms:description "1,000-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 1000.0 ;
    qudt:conversionMultiplierSN 1e+03 ;
    qudt:exactMatch unit:TON_Metric-PER-M3-K ;
    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:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:TONNE ] ;
    qudt:hasQuantityKind quantitykind:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA998"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA998"^^xsd:anyURI ;
    qudt:symbol "t/(m³·K)"^^xsd:string ;
    qudt:ucumCode "t.m-3.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "L76"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:TONNE-PER-MIN a qudt:Unit ;
    rdfs:label "Tonne per Minute"^^xsd:string,
        "Tonne per Minute"@en ;
    dcterms:description "unit tonne divided by the unit for time 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 16.66666666666666666666666666666667 ;
    qudt:conversionMultiplierSN 1.666667e+01 ;
    qudt:exactMatch unit:TON_Metric-PER-MIN ;
    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:TONNE ] ;
    qudt:hasQuantityKind quantitykind:MassFlowRate ;
    qudt:iec61360Code "0112/2///62720#UAB000"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB000"^^xsd:anyURI ;
    qudt:plainTextDescription "unit tonne divided by the unit for time minute"^^xsd:string ;
    qudt:symbol "t/min"^^xsd:string ;
    qudt:ucumCode "t.min-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "L78"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:TONNE-PER-MIN-BAR a qudt:Unit ;
    rdfs:label "Tonne per Minute Bar"^^xsd:string,
        "Tonne per Minute Bar"@en ;
    dcterms:description "unit ton divided by the product of the unit minute and the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.0001666666666666666666666666666666667 ;
    qudt:conversionMultiplierSN 1.666667e-04 ;
    qudt:exactMatch unit:TON_Metric-PER-MIN-BAR ;
    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:TONNE ] ;
    qudt:hasQuantityKind quantitykind:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAB002"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB002"^^xsd:anyURI ;
    qudt:symbol "t/(min·bar)"^^xsd:string ;
    qudt:ucumCode "t.min-1.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "L80"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:TONNE-PER-MIN-K a qudt:Unit ;
    rdfs:label "Tonne per Minute Kelvin"^^xsd:string,
        "Tonne per Minute Kelvin"@en ;
    dcterms:description "unit ton divided by the product of the unit minute and the SI base unit Kelvin"^^xsd:string ;
    qudt:conversionMultiplier 16.66666666666666666666666666666667 ;
    qudt:conversionMultiplierSN 1.666667e+01 ;
    qudt:exactMatch unit:TON_Metric-PER-MIN-K ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H-1T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:TONNE ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MIN ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ] ;
    qudt:hasQuantityKind quantitykind:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAB001"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB001"^^xsd:anyURI ;
    qudt:symbol "t/(min·K)"^^xsd:string ;
    qudt:ucumCode "t.min-1.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "L79"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:TONNE-PER-MO a qudt:Unit ;
    rdfs:label "Tonne per Month"^^xsd:string,
        "Tonne per Month"@en ;
    dcterms:description "unit tonne divided by the unit month"^^xsd:string ;
    qudt:conversionMultiplier 0.0003919350772901616281311709002114104 ;
    qudt:conversionMultiplierSN 3.919351e-04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MO ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:TONNE ] ;
    qudt:hasQuantityKind quantitykind:MassFlowRate,
        quantitykind:MassPerTime ;
    qudt:iec61360Code "0112/2///62720#UAB366"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB366"^^xsd:anyURI ;
    qudt:symbol "t/mo"^^xsd:string ;
    qudt:ucumCode "t.mo-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "M88"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:TONNE-PER-SEC a qudt:Unit ;
    rdfs:label "Tonne per Second"^^xsd:string,
        "Tonne per Second"@en ;
    dcterms:description "unit tonne 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 1000.0 ;
    qudt:conversionMultiplierSN 1e+03 ;
    qudt:exactMatch unit:TON_Metric-PER-SEC ;
    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:TONNE ] ;
    qudt:hasQuantityKind quantitykind:MassFlowRate ;
    qudt:iec61360Code "0112/2///62720#UAB003"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB003"^^xsd:anyURI ;
    qudt:plainTextDescription "unit tonne divided by the SI base unit second"^^xsd:string ;
    qudt:symbol "t/s"^^xsd:string ;
    qudt:ucumCode "t.s-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "L81"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:TONNE-PER-SEC-BAR a qudt:Unit ;
    rdfs:label "Tonne per Second Bar"^^xsd:string,
        "Tonne per Second Bar"@en ;
    dcterms:description "unit ton 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:exactMatch unit:TON_Metric-PER-SEC-BAR ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:TONNE ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind quantitykind:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAB005"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB005"^^xsd:anyURI ;
    qudt:symbol "t/(s·bar)"^^xsd:string ;
    qudt:ucumCode "t.s-1.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "L83"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:TONNE-PER-SEC-K a qudt:Unit ;
    rdfs:label "Tonne per Second Kelvin"^^xsd:string,
        "Tonne per Second Kelvin"@en ;
    dcterms:description "unit ton divided by the product of the SI base unit second and the SI base unit Kelvin"^^xsd:string ;
    qudt:conversionMultiplier 1000.0 ;
    qudt:conversionMultiplierSN 1e+03 ;
    qudt:exactMatch unit:TON_Metric-PER-SEC-K ;
    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:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:TONNE ] ;
    qudt:hasQuantityKind quantitykind:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAB004"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB004"^^xsd:anyURI ;
    qudt:symbol "t/(s·K)"^^xsd:string ;
    qudt:ucumCode "t.s-1.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "L82"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:TONNE-PER-YR a qudt:Unit ;
    rdfs:label "Tonne per Year"^^xsd:string,
        "Tonne per Year"@en,
        "Ton per Jaar"@nl ;
    dcterms:description "1,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.00003168808781402895023702689684893655 ;
    qudt:conversionMultiplierSN 3.168809e-05 ;
    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:TONNE ] ;
    qudt:hasQuantityKind quantitykind:MassFlowRate,
        quantitykind:MassPerTime ;
    qudt:iec61360Code "0112/2///62720#UAB367"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB367"^^xsd:anyURI ;
    qudt:symbol "t/a"^^xsd:string ;
    qudt:ucumCode "t.a-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "M89"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:TON_FG-HR a qudt:Unit ;
    rdfs:label "Ton of Refrigeration Hour"^^xsd:string,
        "Ton of Refrigeration Hour"@en ;
    dcterms:description "12000 btu"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 12660670.8 ;
    qudt:conversionMultiplierSN 1.266067e+07 ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Ton_of_refrigeration"^^xsd:anyURI ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/USCS> ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:TON_FG ] ;
    qudt:hasQuantityKind quantitykind:ThermalEnergy ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Ton_of_refrigeration?oldid=494342824"^^xsd:anyURI ;
    qudt:symbol "TOR·h"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:TON_Metric-PER-BAR a qudt:Unit ;
    rdfs:label "Metric Ton per Bar"^^xsd:string,
        "Metric Ton per Bar"@en ;
    dcterms:description "unit ton divided by the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.01 ;
    qudt:conversionMultiplierSN 1e-02 ;
    qudt:exactMatch unit:TONNE-PER-BAR ;
    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:TON_Metric ] ;
    qudt:hasQuantityKind quantitykind:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA990"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA990"^^xsd:anyURI ;
    qudt:symbol "t/bar"^^xsd:string ;
    qudt:ucumCode "t.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "L70"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:TON_Metric-PER-DAY a qudt:Unit ;
    rdfs:label "Metric Ton per Day"^^xsd:string,
        "Metric Ton per Day"@en ;
    dcterms:description "metric unit ton divided by the unit for time 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.01157407407407407407407407407407407 ;
    qudt:conversionMultiplierSN 1.157407e-02 ;
    qudt:exactMatch unit:TONNE-PER-DAY ;
    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_Metric ] ;
    qudt:hasQuantityKind quantitykind:MassFlowRate ;
    qudt:iec61360Code "0112/2///62720#UAA991"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA991"^^xsd:anyURI ;
    qudt:plainTextDescription "metric unit ton divided by the unit for time day"^^xsd:string ;
    qudt:symbol "t/d"^^xsd:string ;
    qudt:ucumCode "t.d-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "L71"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:TON_Metric-PER-DAY-BAR a qudt:Unit ;
    rdfs:label "Metric Ton per Day Bar"^^xsd:string,
        "Metric Ton per Day Bar"@en ;
    dcterms:description "unit ton divided by the product of the unit day and the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.0000001157407407407407407407407407407407 ;
    qudt:conversionMultiplierSN 1.157407e-07 ;
    qudt:exactMatch unit:TONNE-PER-DAY-BAR ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:TON_Metric ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DAY ] ;
    qudt:hasQuantityKind quantitykind:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA993"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA993"^^xsd:anyURI ;
    qudt:symbol "t/(d·bar)"^^xsd:string ;
    qudt:ucumCode "t.d-1.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "L73"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:TON_Metric-PER-DAY-K a qudt:Unit ;
    rdfs:label "Metric Ton per Day Kelvin"^^xsd:string,
        "Metric Ton per Day Kelvin"@en ;
    dcterms:description "unit ton divided by the product of the unit day and the SI base unit Kelvin"^^xsd:string ;
    qudt:conversionMultiplier 0.01157407407407407407407407407407407 ;
    qudt:conversionMultiplierSN 1.157407e-02 ;
    qudt:exactMatch unit:TONNE-PER-DAY-K ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H-1T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:TON_Metric ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DAY ] ;
    qudt:hasQuantityKind quantitykind:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA992"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA992"^^xsd:anyURI ;
    qudt:symbol "t/(d·K)"^^xsd:string ;
    qudt:ucumCode "t.d-1.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "L72"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:TON_Metric-PER-HR a qudt:Unit ;
    rdfs:label "Metric Ton per Hour"^^xsd:string,
        "Metric Ton per Hour"@en ;
    dcterms:description "unit tonne divided by the unit for time 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.2777777777777777777777777777777778 ;
    qudt:conversionMultiplierSN 2.777778e-01 ;
    qudt:exactMatch unit:TONNE-PER-HR ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:TON_Metric ] ;
    qudt:hasQuantityKind quantitykind:MassFlowRate ;
    qudt:iec61360Code "0112/2///62720#UAB994"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB994"^^xsd:anyURI ;
    qudt:plainTextDescription "unit tonne divided by the unit for time hour"^^xsd:string ;
    qudt:symbol "t/h"^^xsd:string ;
    qudt:ucumCode "t.h-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "E18"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:TON_Metric-PER-HR-BAR a qudt:Unit ;
    rdfs:label "Metric Ton per Hour Bar"^^xsd:string,
        "Metric Ton per Hour Bar"@en ;
    dcterms:description "unit ton divided by the product of the unit hour and the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.000002777777777777777777777777777777778 ;
    qudt:conversionMultiplierSN 2.777778e-06 ;
    qudt:exactMatch unit:TONNE-PER-HR-BAR ;
    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:TON_Metric ] ;
    qudt:hasQuantityKind quantitykind:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA996"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA996"^^xsd:anyURI ;
    qudt:symbol "t/(h·bar)"^^xsd:string ;
    qudt:ucumCode "t.h-1.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "L75"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:TON_Metric-PER-HR-K a qudt:Unit ;
    rdfs:label "Metric Ton per Hour Kelvin"^^xsd:string,
        "Metric Ton per Hour Kelvin"@en ;
    dcterms:description "unit ton divided by the product of the unit hour and the SI base unit Kelvin"^^xsd:string ;
    qudt:conversionMultiplier 0.2777777777777777777777777777777778 ;
    qudt:conversionMultiplierSN 2.777778e-01 ;
    qudt:exactMatch unit:TONNE-PER-HR-K ;
    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:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:TON_Metric ] ;
    qudt:hasQuantityKind quantitykind:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA995"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA995"^^xsd:anyURI ;
    qudt:symbol "t/(h·K)"^^xsd:string ;
    qudt:ucumCode "t.h-1.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "L74"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:TON_Metric-PER-K a qudt:Unit ;
    rdfs:label "Metric Ton per Kelvin"^^xsd:string,
        "Metric Ton per Kelvin"@en ;
    dcterms:description "unit ton divided by the SI base unit Kelvin"^^xsd:string ;
    qudt:conversionMultiplier 1000.0 ;
    qudt:conversionMultiplierSN 1e+03 ;
    qudt:exactMatch unit:TONNE-PER-K ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H-1T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:TON_Metric ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ] ;
    qudt:hasQuantityKind quantitykind:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA989"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA989"^^xsd:anyURI ;
    qudt:symbol "t/K"^^xsd:string ;
    qudt:ucumCode "t.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "L69"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:TON_Metric-PER-M3-K a qudt:Unit ;
    rdfs:label "Metric Ton per Cubic Metre Kelvin"^^xsd:string,
        "Metric Ton per Cubic Metre Kelvin"@en,
        "Metric Ton per Cubic Meter Kelvin"@en-us ;
    dcterms:description "1,000-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 1000.0 ;
    qudt:conversionMultiplierSN 1e+03 ;
    qudt:exactMatch unit:TONNE-PER-M3-K ;
    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:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:TON_Metric ] ;
    qudt:hasQuantityKind quantitykind:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA998"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA998"^^xsd:anyURI ;
    qudt:symbol "t/(m³·K)"^^xsd:string ;
    qudt:ucumCode "t.m-3.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "L76"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:TON_Metric-PER-MIN a qudt:Unit ;
    rdfs:label "Metric Ton per Minute"^^xsd:string,
        "Metric Ton per Minute"@en ;
    dcterms:description "unit ton divided by the unit for time 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 16.66666666666666666666666666666667 ;
    qudt:conversionMultiplierSN 1.666667e+01 ;
    qudt:exactMatch unit:TONNE-PER-MIN ;
    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:TON_Metric ] ;
    qudt:hasQuantityKind quantitykind:MassFlowRate ;
    qudt:iec61360Code "0112/2///62720#UAB000"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB000"^^xsd:anyURI ;
    qudt:plainTextDescription "unit ton divided by the unit for time minute"^^xsd:string ;
    qudt:symbol "t/min"^^xsd:string ;
    qudt:ucumCode "t.min-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "L78"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:TON_Metric-PER-MIN-BAR a qudt:Unit ;
    rdfs:label "Metric Ton per Minute Bar"^^xsd:string,
        "Metric Ton per Minute Bar"@en ;
    dcterms:description "unit ton divided by the product of the unit minute and the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.0001666666666666666666666666666666667 ;
    qudt:conversionMultiplierSN 1.666667e-04 ;
    qudt:exactMatch unit:TONNE-PER-MIN-BAR ;
    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:TON_Metric ] ;
    qudt:hasQuantityKind quantitykind:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAB002"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB002"^^xsd:anyURI ;
    qudt:symbol "t/(min·bar)"^^xsd:string ;
    qudt:ucumCode "t.min-1.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "L80"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:TON_Metric-PER-MIN-K a qudt:Unit ;
    rdfs:label "Metric Ton per Minute Kelvin"^^xsd:string,
        "Metric Ton per Minute Kelvin"@en ;
    dcterms:description "unit ton divided by the product of the unit minute and the SI base unit Kelvin"^^xsd:string ;
    qudt:conversionMultiplier 16.66666666666666666666666666666667 ;
    qudt:conversionMultiplierSN 1.666667e+01 ;
    qudt:exactMatch unit:TONNE-PER-MIN-K ;
    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:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:TON_Metric ] ;
    qudt:hasQuantityKind quantitykind:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAB001"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB001"^^xsd:anyURI ;
    qudt:symbol "t/(min·K)"^^xsd:string ;
    qudt:ucumCode "t.min-1.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "L79"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:TON_Metric-PER-SEC a qudt:Unit ;
    rdfs:label "Metric Ton per Second"^^xsd:string,
        "Metric Ton per Second"@en ;
    dcterms:description "unit ton 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 1000.0 ;
    qudt:conversionMultiplierSN 1e+03 ;
    qudt:exactMatch unit:TONNE-PER-SEC ;
    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:TON_Metric ] ;
    qudt:hasQuantityKind quantitykind:MassFlowRate ;
    qudt:iec61360Code "0112/2///62720#UAB003"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB003"^^xsd:anyURI ;
    qudt:plainTextDescription "unit ton divided by the SI base unit second"^^xsd:string ;
    qudt:symbol "t/s"^^xsd:string ;
    qudt:ucumCode "t.s-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "L81"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:TON_Metric-PER-SEC-BAR a qudt:Unit ;
    rdfs:label "Metric Ton per Second Bar"^^xsd:string,
        "Metric Ton per Second Bar"@en ;
    dcterms:description "unit ton 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:exactMatch unit:TONNE-PER-SEC-BAR ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:TON_Metric ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ] ;
    qudt:hasQuantityKind quantitykind:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAB005"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB005"^^xsd:anyURI ;
    qudt:symbol "t/(s·bar)"^^xsd:string ;
    qudt:ucumCode "t.s-1.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "L83"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:TON_Metric-PER-SEC-K a qudt:Unit ;
    rdfs:label "Metric Ton per Second Kelvin"^^xsd:string,
        "Metric Ton per Second Kelvin"@en ;
    dcterms:description "unit ton divided by the product of the SI base unit second and the SI base unit Kelvin"^^xsd:string ;
    qudt:conversionMultiplier 1000.0 ;
    qudt:conversionMultiplierSN 1e+03 ;
    qudt:exactMatch unit:TONNE-PER-SEC-K ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H-1T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:TON_Metric ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind quantitykind:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAB004"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB004"^^xsd:anyURI ;
    qudt:symbol "t/(s·K)"^^xsd:string ;
    qudt:ucumCode "t.s-1.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "L82"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:TON_US-PER-HR a qudt:Unit ;
    rdfs:label "Ton (US) per Hour"^^xsd:string,
        "Ton (US) per Hour"@en ;
    dcterms:description "unit ton divided by the unit for time hour"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 0.2519957611111111111111111111111111 ;
    qudt:conversionMultiplierSN 2.519958e-01 ;
    qudt:exactMatch unit:TON_SHORT-PER-HR ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:TON_US ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ] ;
    qudt:hasQuantityKind quantitykind:MassFlowRate ;
    qudt:iec61360Code "0112/2///62720#UAA994"^^xsd:string,
        "0112/2///62720#UAB019"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA994"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB019"^^xsd:anyURI ;
    qudt:plainTextDescription "unit ton divided by the unit for time hour"^^xsd:string ;
    qudt:symbol "ton{US}/h"^^xsd:string ;
    qudt:ucumCode "[ston_av].h-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "4W"^^xsd:string,
        "E18"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:TebiBYTE a qudt:CountingUnit,
        qudt:Unit ;
    rdfs:label "Tebibyte"^^xsd:string,
        "Tebibyte"@en ;
    dcterms:description "The tebibyte is a multiple of the unit byte for digital information. The prefix tebi means 1024^4"^^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 6096987078286.483602423014974471338 ;
    qudt:conversionMultiplierSN 6.096987e+12 ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Tebibyte"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:InformationEntropy ;
    qudt:iec61360Code "0112/2///62720#UAA295"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA295"^^xsd:anyURI,
        "https://en.wikipedia.org/wiki/Byte#Multiple-byte_units"^^xsd:anyURI ;
    qudt:prefix <http://qudt.org/vocab/prefix/Tebi> ;
    qudt:scalingOf unit:BYTE ;
    qudt:symbol "TiB"^^xsd:string ;
    qudt:ucumCode "TiBy"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "E61"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q79769> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:TeraBIT a qudt:Unit ;
    rdfs:label "Terabit"^^xsd:string,
        "Terabit"@en ;
    dcterms:description "1,000,000,000,000-fold of the unit bit"^^xsd:string ;
    qudt:conversionMultiplier 693147180559.94530941723212145818 ;
    qudt:conversionMultiplierSN 6.931472e+11 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:DatasetOfBits ;
    qudt:iec61360Code "0112/2///62720#UAB191"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB191"^^xsd:anyURI ;
    qudt:prefix <http://qudt.org/vocab/prefix/Tera> ;
    qudt:scalingOf unit:BIT ;
    qudt:symbol "Tb"^^xsd:string ;
    qudt:ucumCode "Tbit"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "E83"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q1152323> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:TeraBYTE a qudt:CountingUnit,
        qudt:Unit ;
    rdfs:label "Terabyte"^^xsd:string,
        "Terabyte"@en ;
    dcterms:description "The terabyte is a multiple of the unit byte for digital information. The prefix tera means 10^12 in the International System of Units (SI), and therefore 1 terabyte is 1000000000000bytes, or 1 trillion bytes, or 1000 gigabytes. 1 terabyte in binary prefixes is 0.9095 tebibytes, or 931.32 gibibytes. The unit symbol for the terabyte is TB or TByte, but not Tb (lower case b) which refers to terabit."^^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 5545177444479.56247533785697166544 ;
    qudt:conversionMultiplierSN 5.545177e+12 ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Terabyte"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:InformationEntropy ;
    qudt:iec61360Code "0112/2///62720#UAB186"^^xsd:string ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Terabyte?oldid=494671550"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB186"^^xsd:anyURI ;
    qudt:prefix <http://qudt.org/vocab/prefix/Tera> ;
    qudt:scalingOf unit:BYTE ;
    qudt:symbol "TB"^^xsd:string ;
    qudt:ucumCode "TBy"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "E35"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q79741> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:TeraVA a qudt:Unit ;
    rdfs:label "Tera Volt Ampere"^^xsd:string,
        "Teravoltampere"@de,
        "Tera Volt Ampere"@en,
        "Teravoltiamperio"@es,
        "Teravoltampère"@fr,
        "Tera Volt Ampere"@it ;
    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 ;
    qudt:conversionMultiplier 1000000000000.0 ;
    qudt:conversionMultiplierSN 1e+12 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-3D0> ;
    qudt:hasQuantityKind quantitykind: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:prefix <http://qudt.org/vocab/prefix/Tera> ;
    qudt:scalingOf unit:VA ;
    qudt:symbol "TVA"^^xsd:string ;
    qudt:ucumCode "TVA"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:TeraVAR a qudt:Unit ;
    rdfs:label "Tera Volt Ampere Reactive"^^xsd:string,
        "Tera Volt Ampere Reactive"@en ;
    dcterms:description "0.000000000001 of the unit volt ampere reactive"^^xsd:string ;
    qudt:conversionMultiplier 1000000000000.0 ;
    qudt:conversionMultiplierSN 1e+12 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-3D0> ;
    qudt:hasQuantityKind quantitykind: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:prefix <http://qudt.org/vocab/prefix/Tera> ;
    qudt:scalingOf unit:VAR ;
    qudt:symbol "TVA{Reactive}"^^xsd:string ;
    qudt:ucumCode "TVA{reactive}"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:UNKNOWN a qudt:Unit ;
    rdfs:label "Unknown"^^xsd:string,
        "Unknown"@en ;
    dcterms:description "Placeholder unit for abstract quantities"^^xsd:string ;
    qudt:conversionMultiplier 0.0 ;
    qudt:conversionMultiplierSN 0e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/NotApplicable> ;
    qudt:hasQuantityKind quantitykind:Unknown ;
    qudt:symbol "Unknown"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:UnitPole a qudt:Unit ;
    rdfs:label "Unit Pole"^^xsd:string,
        "Unit Pole"@en ;
    dcterms:description "A magnetic pole is a unit pole if it exerts a force of one dyne on another pole of equal strength at a distance of 1 cm. The strength of any given pole in cgs units is therefore numerically equal to the force in dynes which it exerts on a unit pole 1 cm away."^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS> ;
    qudt:conversionMultiplier 0.0000001256637 ;
    qudt:conversionMultiplierSN 1.256637e-07 ;
    qudt:expression "$U/nWb$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-1L2I0M1H0T-2D0> ;
    qudt:hasQuantityKind quantitykind:MagneticFlux ;
    qudt:iec61360Code "0112/2///62720#UAB214"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB214"^^xsd:anyURI ;
    qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/unitPole> ;
    qudt:scalingOf unit:WB ;
    qudt:symbol "pole"^^xsd:string ;
    qudt:uneceCommonCode "P53"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:V-PER-K a qudt:Unit ;
    rdfs:label "Volt per Kelvin"^^xsd:string,
        "Волт на Келвин"@bg,
        "Volt na Kelvin"@cs,
        "Volt pro Kelvin"@de,
        "Βολτ ανά Κέλβιν"@el,
        "Volt per Kelvin"@en,
        "Voltio por Kelvin"@es,
        "Volt par Kelvin"@fr,
        "Volt per Kelvin"@it,
        "Voltium per Kelvin"@la,
        "Volt per Kelvin"@ms,
        "Wolt na Kelwin"@pl,
        "Volt por Kelvin"@pt,
        "Volt pe Kelvin"@ro,
        "Вольт на Кельвин"@ru,
        "Volt na Kelvin"@sl,
        "Volt per Kelvin"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:expression "$v/k$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-1L2I0M1H-1T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:V ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ] ;
    qudt:hasQuantityKind quantitykind:SeebeckCoefficient,
        quantitykind:ThomsonCoefficient ;
    qudt:iec61360Code "0112/2///62720#UAB173"^^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%23UAB173"^^xsd:anyURI ;
    qudt:symbol "V/K"^^xsd:string ;
    qudt:ucumCode "V.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "D48"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q105761745> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:V-PER-M2 a qudt:Unit ;
    rdfs:label "Volt per Square Metre"^^xsd:string,
        "Волт на Квадратен Метър"@bg,
        "Volt na Čtvereční Metr"@cs,
        "Volt pro Quadratmeter"@de,
        "Βολτ ανά Τετραγωνικό Μέτρο"@el,
        "Volt per Square Metre"@en,
        "Volt per Square Meter"@en-us,
        "Voltio por Metro Cuadrado"@es,
        "Volt par Mètre Carré"@fr,
        "Volt per Metro Quadrato"@it,
        "Voltium per Metrum Quadratum"@la,
        "Volt per Meter Persegi"@ms,
        "Wolt na Metr Kwadratowy"@pl,
        "Volt por Metro Quadrado"@pt,
        "Volt pe Metru Pătrat"@ro,
        "Вольт на Квадратный Метр"@ru,
        "Volt na Kvadratni Meter"@sl,
        "Volt per Metrekare"@tr ;
    dcterms:description """
  $\\textit{Volt per Square Metre}$ is the divergence at a particular point in a vector field is (roughly) how much the vector field 'spreads out' from that point. 
  Operationally, we take the partial derivative of each of the field with respect to each of its space variables and add all the derivatives together to get the divergence. 
  $\\textit{Electric field}$ ($V/m$) differentiated with respect to distance ($m$) yields $V/(m^2)$.
  """^^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:derivedCoherentUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:expression "$V m^{-2}$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-1L0I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:V ] ;
    qudt:hasQuantityKind quantitykind:EnergyPerAreaElectricCharge ;
    qudt:symbol "V/m²"^^xsd:string ;
    qudt:ucumCode "V.m-2"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:VA-PER-K a qudt:Unit ;
    rdfs:label "Volt Ampere per Kelvin"^^xsd:string,
        "Voltampere pro Kelvin"@de,
        "Volt Ampere per Kelvin"@en,
        "Voltiamperio por Kelvin"@es,
        "Voltampère par Kelvin"@fr,
        "Volt Ampere per Kelvin"@it,
        "Volt-ampere por Kelvin"@pt,
        "Вольт-ампер на Кельвин"@ru ;
    dcterms:description "the volt 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/A0E0L2I0M1H-1T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:VA ] ;
    qudt:hasQuantityKind quantitykind: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 "VA/K"^^xsd:string ;
    qudt:ucumCode "VA.K-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:VAR-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 ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H-1T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:VAR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ] ;
    qudt:hasQuantityKind quantitykind: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 "VA{Reactive}/K"^^xsd:string ;
    qudt:ucumCode "VA{reactive}.K-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:V_Ab-SEC a qudt:Unit ;
    rdfs:label "Abvolt Second"^^xsd:string,
        "Abvolt Second"@en ;
    dcterms:description "The magnetic flux whose expenditure in 1 second produces 1 abvolt per turn of a linked circuit. Technically defined in a three-dimensional system, it corresponds in the four-dimensional electromagnetic sector of the SI system to 10 nWb, and is an impractically small unit. In use for some years, the name was agreed by the International Electrotechnical Committee in 1930, along with a corresponding practical unit, the pramaxwell (or pro-maxwell) = $10^{8}$ maxwell."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU> ;
    qudt:conversionMultiplier 0.00000001 ;
    qudt:conversionMultiplierSN 1e-08 ;
    qudt:derivedUnitOfSystem <http://qudt.org/vocab/sou/CGS-EMU> ;
    qudt:expression "$abv-sec$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-1L2I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:V_Ab ] ;
    qudt:hasQuantityKind quantitykind:MagneticFlux ;
    qudt:informativeReference "http://www.oxfordreference.com/view/10.1093/acref/9780198605225.001.0001/acref-9780198605225-e-820"^^xsd:anyURI ;
    qudt:symbol "abV·s"^^xsd:string ;
    qudt:ucumCode "10.nV.s"^^qudt:UCUMcs ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q30063933> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:W-M2 a qudt:Unit ;
    rdfs:label "Watt Square Metre"^^xsd:string,
        "Ват Квадратен Метър"@bg,
        "Watt Čtvereční Metr"@cs,
        "Watt Quadratmeter"@de,
        "Βατ Τετραγωνικό Μέτρο"@el,
        "Watt Square Metre"@en,
        "Watt Square Meter"@en-us,
        "Vatio Metro Cuadrado"@es,
        "Watt Mètre Carré"@fr,
        "Watt Metro Quadrato"@it,
        "Wattium Metrum Quadratum"@la,
        "Watt Meter Persegi"@ms,
        "Wat Metr Kwadratowy"@pl,
        "Watt Metro Quadrado"@pt,
        "Watt Metru Pătrat"@ro,
        "Ватт Квадратный Метр"@ru,
        "Watt Kvadratni Meter"@sl,
        "Watt Metrekare"@tr ;
    dcterms:description "product of the SI derived unit watt and the power of the SI base unit metre with the exponent 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 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L4I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:W ] ;
    qudt:hasQuantityKind quantitykind:PowerArea ;
    qudt:iec61360Code "0112/2///62720#UAB350"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB350"^^xsd:anyURI ;
    qudt:symbol "W·m²"^^xsd:string ;
    qudt:ucumCode "W.m2"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "Q21"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q112299932> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:W-M2-PER-SR a qudt:Unit ;
    rdfs:label "Watt Square Metre per Steradian"^^xsd:string,
        "Ват Квадратен Метър на Стерадиан"@bg,
        "Watt Čtvereční Metr na Steradián"@cs,
        "Watt Quadratmeter pro Steradiant"@de,
        "Βατ Τετραγωνικό Μέτρο ανά Στερακτίνιο"@el,
        "Watt Square Metre per Steradian"@en,
        "Watt Square Meter per Steradian"@en-us,
        "Vatio Metro Cuadrado por Estereorradián"@es,
        "Watt Mètre Carré par Stéradian"@fr,
        "Watt Metro Quadrato per Steradiante"@it,
        "Wattium Metrum Quadratum per Steradian"@la,
        "Watt Meter Persegi per Steradian"@ms,
        "Wat Metr Kwadratowy na Steradian"@pl,
        "Watt Metro Quadrado por Esterradiano"@pt,
        "Watt Metru Pătrat pe Steradian"@ro,
        "Ватт Квадратный Метр на Стерадиан"@ru,
        "Watt Kvadratni Meter na Steradian"@sl,
        "Watt 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:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L4I0M1H0T-3D0> ;
    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:SR ] ;
    qudt:hasQuantityKind quantitykind:PowerAreaPerSolidAngle ;
    qudt:symbol "W·m²/sr"^^xsd:string ;
    qudt:ucumCode "W.m2.sr-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:W-PER-K a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Watt per Kelvin"^^xsd:string,
        "Ват на Келвин"@bg,
        "Watt na Kelvin"@cs,
        "Watt pro Kelvin"@de,
        "Βατ ανά Κέλβιν"@el,
        "Watt per Kelvin"@en,
        "Vatio por Kelvin"@es,
        "Watt par Kelvin"@fr,
        "Watt per Kelvin"@it,
        "Wattium per Kelvin"@la,
        "Watt per Kelvin"@ms,
        "Wat na Kelwin"@pl,
        "Watt por Kelvin"@pt,
        "Watt pe Kelvin"@ro,
        "Ватт на Кельвин"@ru,
        "Watt na Kelvin"@sl,
        "Watt per Kelvin"@tr ;
    dcterms:description "Watt Per Kelvin ($W/K$) is a unit in the category of Thermal conductivity."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:expression "$w-per-K$"^^qudt:LatexString ;
    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:W ] ;
    qudt:hasQuantityKind quantitykind:ThermalConductance ;
    qudt:hasReciprocalUnit unit:K-PER-W ;
    qudt:iec61360Code "0112/2///62720#UAA307"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA307"^^xsd:anyURI ;
    qudt:symbol "W/K"^^xsd:string ;
    qudt:ucumCode "W.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "D52"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q81663366> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:W-PER-M2-K4 a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Watt per Square Metre Quartic Kelvin"^^xsd:string,
        "Watt pro Quadratmeter Kelvin hoch vier"@de,
        "Watt per Square Metre Quartic Kelvin"@en,
        "Watt per Square Meter Quartic Kelvin"@en-us ;
    dcterms:description "Watt Per Square Meter Per Quartic Kelvin ($W/m2\\cdotK4)$ is a unit in the category of light."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:expression "$W/(m^2.K^4)$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H-4T-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 -4 ;
            qudt:hasUnit unit:K ] ;
    qudt:hasQuantityKind quantitykind:PowerPerAreaQuarticTemperature ;
    qudt:iec61360Code "0112/2///62720#UAB175"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB175"^^xsd:anyURI ;
    qudt:symbol "W/(m²·K⁴)"^^xsd:string ;
    qudt:ucumCode "W.m-2.K-4"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "D56"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q21395834> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:W-PER-M3 a qudt:Unit ;
    rdfs:label "Watt per Cubic Metre"^^xsd:string,
        "Ват на Кубичен Метър"@bg,
        "Watt na Metr Krychlový"@cs,
        "Watt pro Kubikmeter"@de,
        "Βατ ανά Κυβικό Μέτρο"@el,
        "Watt per Cubic Metre"@en,
        "Watt per Cubic Meter"@en-us,
        "Vatio por Metro Cúbico"@es,
        "Watt par Mètre Cube"@fr,
        "Watt per Metro Cubo"@it,
        "Wattium per Metrum Cubicum"@la,
        "Watt per Meter Kubik"@ms,
        "Wat na Metr Sześcienny"@pl,
        "Watt por Metro Cúbico"@pt,
        "Watt pe Metru Cub"@ro,
        "Ватт на Кубический Метр"@ru,
        "Watt na Kubični Meter"@sl,
        "Watt per Metreküp"@tr ;
    dcterms:description "SI derived unit watt 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/A0E0L-1I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:W ] ;
    qudt:hasQuantityKind quantitykind:PowerDensity,
        quantitykind:PowerPerVolume ;
    qudt:iec61360Code "0112/2///62720#UAA312"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA312"^^xsd:anyURI ;
    qudt:plainTextDescription "SI derived unit watt divided by the power of the SI base unit metre with the exponent 3"^^xsd:string ;
    qudt:symbol "W/m³"^^xsd:string ;
    qudt:ucumCode "W.m-3"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "H47"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q104381302> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:W0dot a qudt:ContextualUnit,
        qudt:Unit ;
    rdfs:label "Placeholder"^^xsd:string,
        "Placeholder"@en ;
    qudt:conversionMultiplier 0.0 ;
    qudt:conversionMultiplierSN 0e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/NotApplicable> ;
    qudt:hasQuantityKind quantitykind:Unknown ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:WB-M a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Weber Metre"^^xsd:string,
        "Вебер Метър"@bg,
        "Weber Metr"@cs,
        "Weber Meter"@de,
        "Βέμπερ Μέτρο"@el,
        "Weber Metre"@en,
        "Weber Meter"@en-us,
        "Weber Metro"@es,
        "Weber Mètre"@fr,
        "Weber Metro"@it,
        "Weberium Metrum"@la,
        "Weber Meter"@ms,
        "Weber Metr"@pl,
        "Weber Metro"@pt,
        "Weber Metru"@ro,
        "Вебер Метр"@ru,
        "Weber Meter"@sl,
        "Weber 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:exactMatch unit:N-M2-PER-A ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-1L3I0M1H0T-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 quantitykind:MagneticDipoleMoment ;
    qudt:iec61360Code "0112/2///62720#UAB333"^^xsd:string ;
    qudt:informativeReference "http://www.simetric.co.uk/siderived.htm"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB333"^^xsd:anyURI ;
    qudt:symbol "Wb·m"^^xsd:string ;
    qudt:ucumCode "Wb.m"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "P50"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q71580762> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:YR-PER-NUM a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Year per Number"^^xsd:string,
        "Year per Number"@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 31557600.0 ;
    qudt:conversionMultiplierSN 3.15576e+07 ;
    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:YR ] ;
    qudt:hasQuantityKind quantitykind:TimePerCount ;
    qudt:hasReciprocalUnit unit:NUM-PER-YR ;
    qudt:symbol "a/#"^^xsd:string ;
    qudt:ucumCode "a.{#}-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

ns1:GMD_VAEM a ns1:GraphMetaData ;
    rdfs:label "VAEM Schema Version 2.0 Metadata"^^xsd:string ;
    dcterms:abstract "VAEM stands for \"Vocabulary for Attaching Essential Metadata\". What VAEM regards as essential metadata is data about dates and times, confidentiality, and other characterisitic qualifiers of the ontology, but also references to where a ontology is documented and where to find ontology registration for governance, attribution and provenance. VAEM makes use of some properties from the DC terms vocabulary using the namespace prefix \"dct\". VAEM is OWL-DL compliant."^^xsd:string ;
    dcterms:created "2011-04-20"^^xsd:date ;
    dcterms:modified "2014-07-26"^^xsd:date ;
    dcterms:title "VAEM Version 2.0 Metadata"^^xsd:string ;
    ns1:description "VAEM stands for \"Vocabulary for Attaching Essential Metadata\". What VAEM regards as essential metadata is data about dates and times, confidentiality, and other characterisitic qualifiers of the ontology, but also references to where a ontology is documented and where to find ontology registration for governance, attribution and provenance. VAEM makes use of some properties from the DC terms vocabulary using the namespace prefix \"dct\". VAEM is OWL-DL compliant."^^xsd:string ;
    ns1:hasGraphRole ns1:SchemaGraph ;
    ns1:hasOwner ns1:TopQuadrant ;
    ns1:hasSteward ns1:TopQuadrant ;
    ns1:intent "The purpose of VAEM is to provide, by import, a foundation for commonly needed resources for metadata on an ontology."^^xsd:string ;
    ns1:latestPublishedVersion "http://www.linkedmodel.org/doc/2014/SCHEMA_vaem-v2.0"^^xsd:anyURI ;
    ns1:logo "http://linkedmodel.org/lib/lm/images/logos/TopBraid-RDM-Graph-Logo.png"^^xsd:anyURI ;
    ns1:name "VAEM"^^xsd:string ;
    ns1:namespace "http://www.linkedmodel.org/schema/vaem#"^^xsd:anyURI ;
    ns1:namespacePrefix "vaem"^^xsd:string ;
    ns1:owner "TopQuadrant, Inc."^^xsd:string ;
    ns1:previousPublishedVersion "http://linkedmodel.org/doc/vaem/1.2/"^^xsd:anyURI ;
    ns1:rdfxmlFileURL "http://www.linkedmodel.org/2.0/schema/SCHEMA_vaem-v2.0.rdf"^^xsd:anyURI ;
    ns1:revision "2.0"^^xsd:string ;
    ns1:title "Vocabulary for Attaching Essential Metadata (VAEM) - Version 2.0"^^xsd:string ;
    ns1:turtleFileURL "http://www.linkedmodel.org/2.0/schema/SCHEMA_vaem-v2.0.ttl"^^xsd:anyURI ;
    ns1:usesNonImportedResource dcterms:abstract,
        dcterms:author,
        dcterms:created,
        dcterms:modified,
        dcterms:title,
        <http://voag.linkedmodel.org/voag/CC-SHAREALIKE_3PT0-US> ;
    ns1:withAttributionTo "VAEM is issued under a Creative Commons Attribution Share Alike 3.0 United States License. Attribution should be made to TopQuadrant, Inc."^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> .

ns1:QUDT a ns1:Party ;
    rdfs:label "QUDT"^^xsd:string ;
    dcterms:description "QUDT is a non-profit organization that governs the QUDT ontologies."^^rdf:HTML ;
    ns1:graphName "qudt.org"^^xsd:string ;
    ns1:website "http://www.qudt.org"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

ns1:TopQuadrant a ns1:Party ;
    rdfs:label "TopQuadrant"^^xsd:string ;
    ns1:name "TopQuadrant, Inc."^^xsd:string ;
    ns1:url "http:/www.topquadrant.com"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> .

ns1:hasMetadata a owl:ObjectProperty ;
    rdfs:label "has metadata"^^xsd:string ;
    dcterms:description "The property \"hasMetadata\" is used to reference a metadata information structure."^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> .

ns1:hasSteward a owl:ObjectProperty ;
    rdfs:label "has steward"^^xsd:string ;
    dcterms:description "A property that is used to refer to a \"Steward\", that is, the party or role that is responsible for maintaining an asset, in the case of VAEM, an ontology graph."^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> .

ns1:name a owl:DatatypeProperty ;
    rdfs:label "name"^^xsd:string ;
    dcterms:description "The property \"vaem:name\" is intended for general use. In many cases \"rdfs:label\" could be used give names to resources. In the case where compliance with a specific naming rule is needed,  \"vaem:name\" allows  a resource to carry a name that is used in more specific contexts."^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> ;
    rdfs:range xsd:string .

xsd:short a rdfs:Datatype .

xsd:unsignedInt a rdfs:Datatype .

xsd:unsignedLong a rdfs:Datatype .

skos:broaderTransitive a rdf:Property,
        owl:ObjectProperty,
        owl:TransitiveProperty ;
    rdfs:label "has broader transitive"@en ;
    rdfs:isDefinedBy <http://www.w3.org/2004/02/skos/core> ;
    rdfs:subPropertyOf skos:semanticRelation ;
    owl:inverseOf skos:narrowerTransitive ;
    skos:definition "skos:broaderTransitive is a transitive superproperty of skos:broader."^^xsd:string ;
    skos:scopeNote "By convention, skos:broaderTransitive is not used to make assertions. Rather, the properties can be used to draw inferences about the transitive closure of the hierarchical relation, which is useful e.g. when implementing a simple query expansion algorithm in a search application."@en .

skos:narrower a rdf:Property,
        owl:ObjectProperty ;
    rdfs:label "has narrower"@en ;
    rdfs:comment "Narrower concepts are typically rendered as children in a concept hierarchy (tree)."@en ;
    rdfs:isDefinedBy <http://www.w3.org/2004/02/skos/core> ;
    rdfs:subPropertyOf skos:narrowerTransitive ;
    owl:inverseOf skos:broader ;
    skos:definition "Relates a concept to a concept that is more specific in meaning."@en ;
    skos:scopeNote "By convention, skos:broader is only used to assert an immediate (i.e. direct) hierarchical link between two conceptual resources."@en .

skos:narrowerTransitive a rdf:Property,
        owl:ObjectProperty,
        owl:TransitiveProperty ;
    rdfs:label "has narrower transitive"@en ;
    rdfs:isDefinedBy <http://www.w3.org/2004/02/skos/core> ;
    rdfs:subPropertyOf skos:semanticRelation ;
    owl:inverseOf skos:broaderTransitive ;
    skos:definition "skos:narrowerTransitive is a transitive superproperty of skos:narrower."^^xsd:string ;
    skos:scopeNote "By convention, skos:narrowerTransitive is not used to make assertions. Rather, the properties can be used to draw inferences about the transitive closure of the hierarchical relation, which is useful e.g. when implementing a simple query expansion algorithm in a search application."@en .

sh:qualifiedValueShape a rdf:Property ;
    rdfs:label "qualified value shape"@en ;
    rdfs:comment "The shape that a specified number of values must conform to."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:range sh:Shape .

sh:qualifiedValueShapesDisjoint a rdf:Property ;
    rdfs:label "qualified value shapes disjoint"@en ;
    rdfs:comment "Can be used to mark the qualified value shape to be disjoint with its sibling shapes."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:range xsd:boolean .

s223:Binary-Logical a s223:Binary-Logical,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "Logical"^^xsd:string ;
    rdfs:comment """This class and its enumerated subclasses represent the possible values of a logical `Property` i.e., True or False.

: Binary-Logical Enumerations

| Enumeration |
|:-----------|
| `Logical-False` |
| `Logical-True` |"""^^xsd:string ;
    rdfs:subClassOf s223:EnumerationKind-Binary .

s223:Conductor a s223:Class,
        sh:NodeShape ;
    rdfs:label "Conductor"^^xsd:string ;
    rdfs:comment "A `Connection` that represents one or more wires used to convey `Constituent-Electricity`. Each instance of `Conductor` applies to no more than one electrical circuit."^^xsd:string ;
    rdfs:subClassOf s223:Connection ;
    sh:property [ rdfs:comment "Ensure the electrical phase is the same as all connected `ConnectionPoint`s"^^xsd:string ;
            sh:path s223:hasElectricalPhase ;
            sh:sparql [ a sh:SPARQLConstraint ;
                    rdfs:comment "Ensure the electrical phase is the same as all connected `ConnectionPoint`s"^^xsd:string ;
                    sh:message "s223: {$this} has an electrical phase of {?myphase} which is different from {?cpPhase} for `ConnectionPoint` {?cp}."^^xsd:string ;
                    sh:prefixes <http://data.ashrae.org/standard223/data/scb-vrf> ;
                    sh:select """
    SELECT $this ?myphase ?cp ?cpPhase
    WHERE {
        $this s223:hasElectricalPhase ?myphase .
        $this s223:connectsAt ?cp .
        ?cp s223:hasElectricalPhase ?cpPhase .
        FILTER (?myphase != ?cpPhase) .
        }
        """^^xsd:string ] ],
        [ rdfs:comment "A `Conductor` shall be associated with exactly one `Constituent-Electricity` using the relation `hasMedium`."^^xsd:string ;
            sh:class s223:Constituent-Electricity ;
            sh:maxCount 1 ;
            sh:message "s223: A `Conductor` shall be associated with exactly one `Constituent-Electricity` using the relation `hasMedium`."^^xsd:string ;
            sh:minCount 1 ;
            sh:path s223:hasMedium ],
        [ rdfs:comment "A `Conductor` shall be associated with at most one `EnumerationKind-ElectricalPhaseIdentifier` using the relation `hasElectricalPhase`."^^xsd:string ;
            sh:class s223:EnumerationKind-ElectricalPhaseIdentifier ;
            sh:maxCount 1 ;
            sh:message "s223: A `Conductor` shall be associated with at most one `EnumerationKind-ElectricalPhaseIdentifier` using the relation `hasElectricalPhase`."^^xsd:string ;
            sh:path s223:hasElectricalPhase ] .

s223:Constituent-NOX a s223:Class,
        s223:Constituent-NOX,
        sh:NodeShape ;
    rdfs:label "NOX"^^xsd:string ;
    rdfs:comment """This class and its enumerated subclasses represent common Nitrogen Oxides (NOx).

: Constituent-NOX Enumerations

| Enumeration |
|:-----------|
| `NOX-NO` |
| `NOX-NO2` |"""^^xsd:string ;
    rdfs:subClassOf s223:Medium-Constituent .

s223:CoolingCoil a s223:Class,
        sh:NodeShape ;
    rdfs:label "Cooling coil"^^xsd:string ;
    rdfs:comment "A `Coil` that is specifically used to cool air."^^xsd:string ;
    rdfs:subClassOf s223:Coil ;
    sh:property [ rdfs:comment "A `CoolingCoil` shall at least have the role `Role-Cooling`."^^xsd:string ;
            sh:message "s223: A `CoolingCoil` shall at least have the role `Role-Cooling`."^^xsd:string ;
            sh:path s223:hasRole ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:Role-Cooling ] ] .

s223:DayOfWeek-Weekend a s223:Class,
        s223:DayOfWeek-Weekend,
        sh:NodeShape ;
    rdfs:label "Weekend"^^xsd:string ;
    rdfs:comment """This class and its enumerated subclasses represent weekend days according to the Gregorian calendar, i.e., Saturday and Sunday.

: DayOfWeek-Weekend Enumerations

| Enumeration |
|:-----------|
| `Weekend-Saturday` |
| `Weekend-Sunday` |"""^^xsd:string ;
    rdfs:subClassOf s223:EnumerationKind-DayOfWeek .

s223:EM-RF a s223:Class,
        s223:EM-RF,
        sh:NodeShape ;
    rdfs:label "RF"^^xsd:string ;
    rdfs:comment """
This class and its enumerated subclasses represent the use electromagnetic energy in the radio frequency range for multiple purposes, including communication signals.

: EM-RF Enumerations

| Enumeration |
|:-----------|
| `RF-Signal` (see {s223:RF-Signal}) |"""^^xsd:string ;
    rdfs:subClassOf s223:Constituent-EM .

s223:ElectricEnergyConverter a s223:Class,
        sh:NodeShape ;
    rdfs:label "Electric energy converter"^^xsd:string ;
    rdfs:comment "A piece of `Equipment` that converts one form of electric power to another form of electric power."^^xsd:string ;
    rdfs:subClassOf s223:Equipment ;
    sh:property [ rdfs:comment "An `ElectricEnergyConverter` shall have at least two connection points using the medium `Constituent-Electricity`."^^xsd:string ;
            sh:message "s223: An `ElectricEnergyConverter` shall have at least two connection points using the medium `Constituent-Electricity`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 2 ;
            sh:qualifiedValueShape [ sh:class s223:ConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Constituent-Electricity ;
                                    sh:path s223:hasMedium ] ] ] ] .

s223:ElectricResistanceElement a s223:Class,
        sh:NodeShape ;
    rdfs:label "Electric resistance element"^^xsd:string ;
    rdfs:comment """A piece of `Equipment` that provides electrical resistance heating, for example an electric heating coil within a Fan Coil Unit.
It shall have one electricity `InletConnectionPoint`, and fit one of the following two patterns:

- Pattern 1: An `ElectricResistanceElement` shall have exactly one Bidirectional `ConnectionPoint` using the medium `Mix-Fluid`.
- Pattern 2: An `ElectricResistanceElement` shall have one inlet and one outlet using the medium `Mix-Fluid`."""^^xsd:string ;
    rdfs:subClassOf s223:Equipment ;
    sh:message "s223: An `ElectricResistanceElement` shall have one electricity `InletConnectionPoint`, plus fit one of the following two patterns: Pattern 1: An `ElectricResistanceElement` shall have exactly one Bidirectional `ConnectionPoint` using the medium `Mix-Fluid`. Pattern 2: An `ElectricResistanceElement` shall have one inlet and one outlet using the medium `Mix-Fluid`."^^xsd:string ;
    sh:property [ rdfs:comment "An `ElectricResistanceElement` shall at least have the role `Role-Heating`."^^xsd:string ;
            sh:message "s223: An `ElectricResistanceElement` 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 "An `ElectricResistanceElement` shall have at least one inlet using the medium `Constituent-Electricity`."^^xsd:string ;
            sh:message "s223: An `ElectricResistanceElement` 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:xone ( [ sh:property [ rdfs:comment "Pattern 1: An `ElectricResistanceElement` shall have exactly one Bidirectional `ConnectionPoint` using the medium `Mix-Fluid`."^^xsd:string ;
                        sh:message "s223: Pattern 1: An `ElectricResistanceElement` requires exactly one `BidirectionalConnectionPoint` using the medium `Mix-Fluid`."^^xsd:string ;
                        sh:path s223:hasConnectionPoint ;
                        sh:qualifiedMaxCount 1 ;
                        sh:qualifiedMinCount 1 ;
                        sh:qualifiedValueShape [ sh:class s223:BidirectionalConnectionPoint ;
                                sh:node [ sh:property [ sh:class s223:Mix-Fluid ;
                                                sh:path s223:hasMedium ] ] ] ;
                        sh:qualifiedValueShapesDisjoint true ] ] [ sh:property [ rdfs:comment "Pattern 2: An `ElectricResistanceElement` shall have one outlet using the medium `Mix-Fluid`."^^xsd:string ;
                        sh:path s223:hasConnectionPoint ;
                        sh:qualifiedMaxCount 1 ;
                        sh:qualifiedMinCount 1 ;
                        sh:qualifiedValueShape [ sh:class s223:OutletConnectionPoint ;
                                sh:node [ sh:property [ sh:class s223:Mix-Fluid ;
                                                sh:path s223:hasMedium ] ] ] ;
                        sh:qualifiedValueShapesDisjoint true ],
                    [ rdfs:comment "Pattern 2: An `ElectricResistanceElement` shall have one inlet using the medium `Mix-Fluid`."^^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:Mix-Fluid ;
                                                sh:path s223:hasMedium ] ] ] ;
                        sh:qualifiedValueShapesDisjoint true ] ] ) .

s223:EnumerationKind-DayOfWeek a s223:Class,
        s223:EnumerationKind-DayOfWeek,
        sh:NodeShape ;
    rdfs:label "Day of week"^^xsd:string ;
    rdfs:comment """This class and its enumerated subclasses represent the days of the week, according to the Gregorian calendar i.e., Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, and Sunday. The Weekend and Weekday EnumerationKinds define subsets of this `EnumerationKind` for Mon-Fri and Sat, Sun, respectively.

: EnumerationKind-DayOfWeek Enumerations

| Enumeration |
|:-----------|
| `DayOfWeek-Weekday` |
| `DayOfWeek-Weekend` |"""^^xsd:string ;
    rdfs:subClassOf s223:EnumerationKind .

s223:Fluid-Oil a s223:Class,
        s223:Fluid-Oil,
        sh:NodeShape ;
    rdfs:label "Oil"^^xsd:string ;
    rdfs:comment "Fluid-Oil"^^xsd:string ;
    rdfs:subClassOf s223:Mix-Fluid .

s223:HeatingCoil a s223:Class,
        sh:NodeShape ;
    rdfs:label "Heating coil"^^xsd:string ;
    rdfs:comment "A `Coil` that is specifically used to heat air."^^xsd:string ;
    rdfs:subClassOf s223:Coil ;
    sh:property [ rdfs:comment "A `HeatingCoil` shall at least have the role `Role-Heating`."^^xsd:string ;
            sh:message "s223: A `HeatingCoil` shall at least have the role `Role-Heating`."^^xsd:string ;
            sh:path s223:hasRole ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:Role-Heating ] ] .

s223:Light-Infrared a s223:Class,
        s223:Light-Infrared,
        sh:NodeShape ;
    rdfs:label "Infrared light"^^xsd:string ;
    rdfs:comment """ This class and its enumerated subclasses represent the use of electromagnetic energy in the infrared frequency range for multiple purposes, including communication signals.

  : Light-Infrared Enumerations

  | Enumeration |
  |:-----------|
  | `Infrared-Signal` (see {s223:Infrared-Signal}) |"""^^xsd:string ;
    rdfs:subClassOf s223:EM-Light .

s223:LightSensor a s223:Class,
        sh:NodeShape ;
    rdfs:label "Light sensor"^^xsd:string ;
    rdfs:comment "A `Sensor` that `observes` a `QuantifiableObservableProperty` that represents an attribute of light, as specified by the `QuantityKind` of the `Property` being observed, as described below."^^xsd:string ;
    rdfs:subClassOf s223:Sensor .

s223:Medium-Mix a s223:Class,
        s223:Medium-Mix,
        sh:NodeShape ;
    rdfs:label "Mixed medium"^^xsd:string ;
    rdfs:comment """
This class and its subclasses represent substances that are composed of constituents. The components of a `Medium-Mix` can be modeled using the relations `composedOf` and `ofConstituent`. See Figure 10-8a and Figure 10-8b.

Figure 10-8a shows `GlycolSolution-30Percent`, itself a subclass of
`Water-GlycolSolution`, `Fluid-Water`, and `Mix-Fluid`, with a _Water Concentration_
property referencing 70% `Constituent-H2O` by the relation `ofConstituent` and
a _Glycol Concentration_ property referencing 30% `Constituent-Glycol` also
by the relation `ofConstituent`.

Figure 10-8b shows `PowerAndSignal-PoE`, itself a subclass of `Mix-PowerAndSignal`,
composed of a _Power_ `Property` referencing `Electricity-DC` and a _Communications_
`Property` referencing `Signal-WiredEthernet`.

![ ](figures/Figure_10-8_Substance.svg)

: Medium-Mix Enumerations

| Enumeration |
|:-----------|
| `Mix-Fluid` (see {s223:Mix-Fluid}) |
| `Mix-PowerAndSignal` (see {s223:Mix-PowerAndSignal}) |"""^^xsd:string ;
    rdfs:subClassOf s223:Substance-Medium ;
    sh:property [ rdfs:comment "A `Medium-Mix` shall be associated with zero or more `Property`s that identify and characterize its constituents using the relation `composedOf`. The `Property` identifies the constituent using the relation `ofConstituent`. If appropriate, a `QuantifiableProperty` may be used to also specify the amount of the constituent using the relations `qudt:hasQuantityKind`, `qudt:hasUnit`, and `hasValue`. For example, see {s223:Water-GlycolSolution}."^^xsd:string ;
            sh:class s223:Property ;
            sh:message "s223: A `Medium-Mix` shall be associated with zero or more `Property`s that identify and characterize its constituents using the relation `composedOf`. The `Property` identifies the constituent using the relation `ofConstituent`. If appropriate, a `QuantifiableProperty` may be used to also specify the amount of the constituent using the relations `qudt:hasQuantityKind`, `qudt:hasUnit`, and `hasValue`. For example, see {s223:Water-GlycolSolution}."^^xsd:string ;
            sh:path s223:composedOf ] .

s223:Occupancy-Occupied a s223:Class,
        s223:Occupancy-Occupied,
        sh:NodeShape ;
    rdfs:label "Generic occupancy"^^xsd:string ;
    rdfs:comment """This class and its enumerated subclasses represent the generic detection of human occupancy in a space.

  : Occupancy-Occupied Enumerations

| Enumeration |
|:-----------|
| `Occupied-False` |
| `Occupied-True` |"""^^xsd:string ;
    rdfs:subClassOf s223:EnumerationKind-Occupancy .

s223:OccupancySensor a s223:Class,
        sh:NodeShape ;
    rdfs:label "Occupancy sensor"^^xsd:string ;
    rdfs:comment "A `Sensor` that `observes` an `ObservableProperty` that represents an attribute of occupancy in a space."^^xsd:string ;
    rdfs:subClassOf s223:Sensor .

s223:PhysicalSpace a s223:Class,
        sh:NodeShape ;
    rdfs:label "Physical space"^^xsd:string ;
    rdfs:comment "An architectural concept representing a room, a part of a room, a collection of rooms, or any other physical region in a building. PhysicalSpaces may be grouped to define larger `PhysicalSpace`s using the relation `contains` (see {s223:contains})."^^xsd:string ;
    rdfs:subClassOf s223:Concept ;
    sh:property [ rdfs:comment "A `PhysicalSpace` shall be associated with zero or more contained `PhysicalSpace`s using the relation `contains`."^^xsd:string ;
            sh:class s223:PhysicalSpace ;
            sh:message "s223: A `PhysicalSpace` shall be associated with zero or more contained `PhysicalSpace`s using the relation `contains`."^^xsd:string ;
            sh:path s223:contains ],
        [ rdfs:comment "A `PhysicalSpace` shall be associated with zero or more enclosed `DomainSpace`s using the relation `encloses`."^^xsd:string ;
            sh:class s223:DomainSpace ;
            sh:message "s223: A `PhysicalSpace` shall be associated with zero or more enclosed `DomainSpace`s using the relation `encloses`."^^xsd:string ;
            sh:path s223:encloses ] .

s223:PowerAndSignal-PoE a s223:Class,
        s223:PowerAndSignal-PoE,
        sh:NodeShape ;
    rdfs:label "Power over Ethernet (PoE)"^^xsd:string ;
    s223:composedOf [ a s223:Property ;
            rdfs:label "Unspecified"^^xsd:string ;
            s223:ofConstituent s223:Signal-WiredEthernet ],
        [ a s223:Property ;
            rdfs:label "Unspecified"^^xsd:string ;
            s223:ofConstituent s223:DC-PoE ] ;
    rdfs:comment "PowerAndSignal-PoE"^^xsd:string ;
    rdfs:subClassOf s223:Mix-PowerAndSignal ;
    sh:property [ rdfs:comment "One of the constituents of a `PowerAndSignal-PoE` shall be a `DC-PoE`."^^xsd:string ;
            sh:message "s223: One of the constituents of a `PowerAndSignal-PoE` shall be a `DC-PoE`."^^xsd:string ;
            sh:path s223:composedOf ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:Property ;
                    sh:node [ sh:property [ sh:class s223:DC-PoE ;
                                    sh:path s223:ofConstituent ] ] ] ;
            sh:qualifiedValueShapesDisjoint true ],
        [ rdfs:comment "A `PowerAndSignal-PoE` shall be associated with at least two `Property`s using the relation `composedOf`. These characterize the constituents of Power over Ethernet (PoE)."^^xsd:string ;
            sh:class s223:Property ;
            sh:message "s223: A `PowerAndSignal-PoE` shall be associated with at least two `Property`s using the relation `composedOf`. These characterize the constituents of Power over Ethernet (PoE)."^^xsd:string ;
            sh:minCount 2 ;
            sh:path s223:composedOf ],
        [ rdfs:comment "One of the constituents of a `PowerAndSignal-PoE` shall be a `Signal-WiredEthernet`."^^xsd:string ;
            sh:message "s223: One of the constituents of a `PowerAndSignal-PoE` shall be a `Signal-WiredEthernet`."^^xsd:string ;
            sh:path s223:composedOf ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:Property ;
                    sh:node [ sh:property [ sh:class s223:Signal-WiredEthernet ;
                                    sh:path s223:ofConstituent ] ] ] ;
            sh:qualifiedValueShapesDisjoint true ] .

s223:Signal-UHF a s223:Class,
        s223:Signal-UHF,
        sh:NodeShape ;
    rdfs:label "UHF"^^xsd:string ;
    rdfs:comment "RF Signal Ultra High Frequency 300 MHz to 3 GHz"^^xsd:string ;
    rdfs:subClassOf s223:RF-Signal .

s223:Signal-Wideband a s223:Class,
        s223:Signal-Wideband,
        sh:NodeShape ;
    rdfs:label "Wideband"^^xsd:string ;
    rdfs:comment "Signal-Wideband"^^xsd:string ;
    rdfs:subClassOf s223:RF-Signal .

s223:TerminalUnit a s223:Class,
        sh:NodeShape ;
    rdfs:label "Terminal unit"^^xsd:string ;
    rdfs:comment "A piece of `Equipment` that modulates the volume of air delivered to a space."^^xsd:string ;
    rdfs:subClassOf s223:Equipment ;
    sh:property [ rdfs:comment "A `TerminalUnit` shall have at least one inlet using the medium `Fluid-Air`."^^xsd:string ;
            sh:message "s223: A `TerminalUnit` 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 `TerminalUnit` shall have at least one outlet using the medium `Fluid-Air`."^^xsd:string ;
            sh:message "s223: A `TerminalUnit` 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:Voltage-2.5V a s223:Class,
        s223:Voltage-2.5V,
        sh:NodeShape ;
    rdfs:label "2.5 V"^^xsd:string ;
    s223:hasValue 2.5 ;
    qudt:hasQuantityKind quantitykind:Voltage ;
    qudt:hasUnit unit:V ;
    rdfs:comment "Voltage-2.5V"^^xsd:string ;
    rdfs:subClassOf s223:Numerical-Voltage .

s223:Voltage-3V a s223:Class,
        s223:Voltage-3V,
        sh:NodeShape ;
    rdfs:label "3 V"^^xsd:string ;
    s223:hasValue 3.0 ;
    qudt:hasQuantityKind quantitykind:Voltage ;
    qudt:hasUnit unit:V ;
    rdfs:comment "Voltage-3V"^^xsd:string ;
    rdfs:subClassOf s223:Numerical-Voltage .

s223:Water-GlycolSolution a s223:Class,
        s223:Water-GlycolSolution,
        sh:NodeShape ;
    rdfs:label "Water-Glycol solution"^^xsd:string ;
    s223:composedOf [ a s223:QuantifiableProperty ;
            rdfs:label "Unspecified"^^xsd:string ;
            s223:ofConstituent s223:Constituent-Glycol ;
            qudt:hasQuantityKind quantitykind:VolumeFraction ;
            qudt:hasUnit unit:PERCENT ],
        [ a s223:QuantifiableProperty ;
            rdfs:label "Unspecified"^^xsd:string ;
            s223:ofConstituent s223:Constituent-H2O ;
            qudt:hasQuantityKind quantitykind:VolumeFraction ;
            qudt:hasUnit unit:PERCENT ] ;
    s223:hasFreezingPoint [ a s223:QuantifiableProperty ;
            rdfs:label "Freezing point"^^xsd:string ;
            qudt:hasQuantityKind quantitykind:Temperature ] ;
    rdfs:comment """This class and its enumerated subclasses represent common concentrations of water-glycol solution.

: Water-GlycolSolution Enumerations

| Enumeration |
|:-----------|
| `GlycolSolution-15Percent` |
| `GlycolSolution-30Percent` |"""^^xsd:string ;
    rdfs:subClassOf s223:Fluid-Water ;
    sh:property [ rdfs:comment "One of the constituents of a `Water-GlycolSolution` shall be a `Constituent-H2O`."^^xsd:string ;
            sh:message "s223: One of the constituents of a `Water-GlycolSolution` shall be a `Constituent-H2O`."^^xsd:string ;
            sh:path s223:composedOf ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:QuantifiableProperty ;
                    sh:node [ sh:property [ rdfs:comment "The `QuantityKind` of the constituent shall be `VolumeFraction`."^^xsd:string ;
                                    sh:in ( quantitykind:VolumeFraction ) ;
                                    sh:path qudt:hasQuantityKind ],
                                [ rdfs:comment "One of the constituents of a `Water-GlycolSolution` shall be a `Constituent-H2O`."^^xsd:string ;
                                    sh:class s223:Constituent-H2O ;
                                    sh:path s223:ofConstituent ] ] ] ;
            sh:qualifiedValueShapesDisjoint true ],
        [ rdfs:comment "A `Water-GlycolSolution` shall be associated with zero or more `QuantifiableProperty`s with a `QuantityKind` of `Temperature` using the relation `hasFreezingPoint`."^^xsd:string ;
            sh:class s223:QuantifiableProperty ;
            sh:message "s223: A `Water-GlycolSolution` shall be associated with zero or more `QuantifiableProperty`s with a `QuantityKind` of `Temperature` using the relation `hasFreezingPoint`."^^xsd:string ;
            sh:node [ sh:property [ sh:in ( quantitykind:Temperature ) ;
                            sh:path qudt:hasQuantityKind ] ] ;
            sh:path s223:hasFreezingPoint ],
        [ rdfs:comment "A `Water-GlycolSolution` shall be associated with at least two `QuantifiableProperty`s using the relation `composedOf`. These characterize the constituents of a `Water-GlycolSolution`."^^xsd:string ;
            sh:class s223:QuantifiableProperty ;
            sh:message "s223: A `Water-GlycolSolution` shall be associated with at least two `QuantifiableProperty`s using the relation `composedOf`. These characterize the constituents of a `Water-GlycolSolution`."^^xsd:string ;
            sh:minCount 2 ;
            sh:path s223:composedOf ],
        [ rdfs:comment "One of the constituents of a `Water-GlycolSolution` shall be a `Constituent-Glycol`."^^xsd:string ;
            sh:message "s223: One of the constituents of a `Water-GlycolSolution` shall be a `Constituent-Glycol`."^^xsd:string ;
            sh:path s223:composedOf ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:QuantifiableProperty ;
                    sh:node [ sh:property [ rdfs:comment "The `QuantityKind` of the constituent shall be `VolumeFraction`."^^xsd:string ;
                                    sh:in ( quantitykind:VolumeFraction ) ;
                                    sh:path qudt:hasQuantityKind ],
                                [ rdfs:comment "One of the constituents of a `Water-GlycolSolution` shall be a `Constituent-Glycol`."^^xsd:string ;
                                    sh:class s223:Constituent-Glycol ;
                                    sh:path s223:ofConstituent ] ] ] ;
            sh:qualifiedValueShapesDisjoint true ] .

s223:Wideband-CATV a s223:Class,
        s223:Wideband-CATV,
        sh:NodeShape ;
    rdfs:label "CATV"^^xsd:string ;
    rdfs:comment "The Community Antenna Television communication protocol that is used to deliver cable TV service over `CoaxialCable` or `FiberOpticCable` communication networks."^^xsd:string ;
    rdfs:subClassOf s223:Signal-Wideband .

s223:actuatedByProperty a s223:Relation,
        rdf:Property ;
    rdfs:label "actuated by property"^^xsd:string ;
    rdfs:comment """A `Relation` that associates a piece of `Equipment` with the `ActuatableProperty` that it responds to. If the `Equipment`
is an `Actuator` (a subclass of `Equipment`), `actuatedByProperty` is a required relation. An `Actuator` may also identify another piece of
`Equipment` being actuated. (see {s223:actuates})."""^^xsd:string .

s223:connectedFrom a s223:RelationWithInverse,
        rdf:Property ;
    rdfs:label "connected from"^^xsd:string ;
    s223:inverseOf s223:connectedTo ;
    rdfs:comment "The relation `connectedFrom` indicates that connectable things are `connected` with a specific direction of flow. B is `connectedFrom` A, means that the direction of flow is from A to B.  The inverse direction is indicated by `connectedTo` (see {s223:connectedTo})."^^xsd:string .

s223:connectsThrough a s223:RelationWithInverse,
        rdf:Property ;
    rdfs:label "connects through"^^xsd:string ;
    s223:inverseOf s223:connectsAt ;
    rdfs:comment "A `Relation` that associates a `ConnectionPoint` with a `Connection`, without regard to the direction of flow."^^xsd:string .

s223:hasElectricalPhase a s223:Relation,
        rdf:Property ;
    rdfs:label "has electrical phase"^^xsd:string ;
    rdfs:comment "A `Relation` that associates a `Conductor` or `ConnectionPoint` with at most one `EnumerationKind-ElectricalPhaseIdentifier`."^^xsd:string .

s223:hasOutput a s223:Relation,
        rdf:Property ;
    rdfs:label "has output"^^xsd:string ;
    rdfs:comment "A `Relation` that associates a `Function` (see {s223:Function}) with a `Property` (see {s223:Property}) that is calculated by the `Function`."^^xsd:string .

s223:hasZone a s223:Relation,
        rdf:Property ;
    rdfs:label "has zone"^^xsd:string ;
    rdfs:comment "A `Relation` that associates a `Zone` with component `Zone`s."^^xsd:string .

s223:ofSubstance a s223:Relation,
        rdf:Property ;
    rdfs:label "of substance"^^xsd:string ;
    rdfs:comment "A `Relation` that associates a `Property` being observed by a `Sensor` with the `EnumerationKind-Substance` it characterizes within a specific `Substance-Medium`. For example, to denote the concentration of a `EnumerationKind-Substance` in a `Substance-Medium`, `ofSubstance` is used. Typically, there is also an `ofMedium` relation between the observed `Property` and the `Substance-Medium`, (see Figures 10-9 and 10-10). For example, to represent the concentration of CO2 in air, we use `ofSubstance` to relate to CO2 and `ofMedium` to relate to air. The term `ofSubstance` is broad enough to include situations where a sensor is used to detect constituents that should not be present in a medium, such as ammonia in air. Therefore, `ofSubstance` is used to indicate the substance of interest, while `ofConstituent` would indicate a constituent that is normally present in the composition of the mix."^^xsd:string .

ex1:00014 a s223:ConnectionPoint,
        s223:InletConnectionPoint,
        bob:AirConnectionPoint ;
    rdfs:label "return_fan.airInlet" ;
    s223:cnx ex1:00013 ;
    s223:hasMedium s223:Fluid-Air ;
    s223:isConnectionPointOf ex1:00013 ;
    s223:mapsTo ex1:00006 .

ex1:00019 a s223:ConnectionPoint,
        s223:OutletConnectionPoint,
        bob:AirConnectionPoint ;
    rdfs:label "ea_damper.airOutlet" ;
    s223:cnx ex1:00017 ;
    s223:hasMedium s223:Fluid-Air ;
    s223:isConnectionPointOf ex1:00017 ;
    s223:mapsTo ex1:00009 .

ex1:00021 a s223:ConnectionPoint,
        s223:InletConnectionPoint,
        bob:AirConnectionPoint ;
    rdfs:label "oa_damper.airInlet" ;
    s223:cnx ex1:00020 ;
    s223:hasMedium s223:Fluid-Air ;
    s223:isConnectionPointOf ex1:00020 ;
    s223:mapsTo ex1:00007 .

ex1:00031 a s223:ConnectionPoint,
        s223:OutletConnectionPoint,
        bob:AirConnectionPoint ;
    rdfs:label "supply_fan.airOutlet" ;
    s223:cnx ex1:00029 ;
    s223:hasMedium s223:Fluid-Air ;
    s223:isConnectionPointOf ex1:00029 ;
    s223:mapsTo ex1:00008 .

ex1:00045 a s223:ConnectionPoint,
        s223:InletConnectionPoint,
        bob:AirConnectionPoint ;
    rdfs:label "condenser.airInlet" ;
    s223:cnx ex1:00044 ;
    s223:hasMedium s223:Fluid-Air ;
    s223:isConnectionPointOf ex1:00044 ;
    s223:mapsTo ex1:00040 .

ex1:00056 a s223:ConnectionPoint,
        s223:OutletConnectionPoint,
        bob:AirConnectionPoint ;
    rdfs:label "fan.airOutlet" ;
    s223:cnx ex1:00049 ;
    s223:hasMedium s223:Fluid-Air ;
    s223:isConnectionPointOf ex1:00049 ;
    s223:mapsTo ex1:00041 .

ex1:00059 a s223:ConnectionPoint,
        s223:OutletConnectionPoint,
        ex1:RefrigerantConnectionPoint ;
    rdfs:label "ev.discharge" ;
    s223:cnx ex1:00058 ;
    s223:hasMedium s223:Fluid-Refrigerant ;
    s223:isConnectionPointOf ex1:00058 .

ex1:00062 a s223:ConnectionPoint,
        s223:OutletConnectionPoint,
        ex1:RefrigerantConnectionPoint ;
    rdfs:label "ev.suction" ;
    s223:cnx ex1:00058 ;
    s223:hasMedium s223:Fluid-Refrigerant ;
    s223:isConnectionPointOf ex1:00058 .

ex1:00082 a s223:BidirectionalConnectionPoint,
        s223:ConnectionPoint,
        s223:OutletConnectionPoint,
        ex1:RefrigerantConnectionPoint ;
    rdfs:label "ev.fromCondenser" ;
    s223:cnx ex1:00081 ;
    s223:hasMedium s223:Fluid-Refrigerant ;
    s223:isConnectionPointOf ex1:00081 ;
    s223:mapsTo ex1:00079 .

ex1:00086 a s223:ConnectionPoint,
        s223:OutletConnectionPoint,
        bob:AirConnectionPoint ;
    rdfs:label "coil.airOutlet" ;
    s223:cnx ex1:00084 ;
    s223:hasMedium s223:Fluid-Air ;
    s223:isConnectionPointOf ex1:00084 ;
    s223:mapsTo ex1:00078 .

ex1:00088 a s223:BidirectionalConnectionPoint,
        s223:ConnectionPoint,
        s223:OutletConnectionPoint,
        ex1:RefrigerantConnectionPoint ;
    rdfs:label "coil.refrigerantOutlet" ;
    s223:cnx ex1:00084 ;
    s223:hasMedium s223:Fluid-Refrigerant ;
    s223:isConnectionPointOf ex1:00084 ;
    s223:mapsTo ex1:00080 .

ex1:00092 a s223:ConnectionPoint,
        s223:InletConnectionPoint,
        bob:AirConnectionPoint ;
    rdfs:label "fan.airInlet" ;
    s223:cnx ex1:00089 ;
    s223:hasMedium s223:Fluid-Air ;
    s223:isConnectionPointOf ex1:00089 ;
    s223:mapsTo ex1:00077 .

ex1:00189 a s223:BidirectionalConnectionPoint,
        s223:ConnectionPoint,
        s223:OutletConnectionPoint,
        ex1:RefrigerantConnectionPoint ;
    rdfs:label "ev.fromCondenser" ;
    s223:cnx ex1:00188 ;
    s223:hasMedium s223:Fluid-Refrigerant ;
    s223:isConnectionPointOf ex1:00188 ;
    s223:mapsTo ex1:00186 .

ex1:00193 a s223:ConnectionPoint,
        s223:OutletConnectionPoint,
        bob:AirConnectionPoint ;
    rdfs:label "coil.airOutlet" ;
    s223:cnx ex1:00191 ;
    s223:hasMedium s223:Fluid-Air ;
    s223:isConnectionPointOf ex1:00191 ;
    s223:mapsTo ex1:00185 .

ex1:00195 a s223:BidirectionalConnectionPoint,
        s223:ConnectionPoint,
        s223:OutletConnectionPoint,
        ex1:RefrigerantConnectionPoint ;
    rdfs:label "coil.refrigerantOutlet" ;
    s223:cnx ex1:00191 ;
    s223:hasMedium s223:Fluid-Refrigerant ;
    s223:isConnectionPointOf ex1:00191 ;
    s223:mapsTo ex1:00187 .

ex1:00199 a s223:ConnectionPoint,
        s223:InletConnectionPoint,
        bob:AirConnectionPoint ;
    rdfs:label "fan.airInlet" ;
    s223:cnx ex1:00196 ;
    s223:hasMedium s223:Fluid-Air ;
    s223:isConnectionPointOf ex1:00196 ;
    s223:mapsTo ex1:00184 .

ex1:00296 a s223:BidirectionalConnectionPoint,
        s223:ConnectionPoint,
        s223:OutletConnectionPoint,
        ex1:RefrigerantConnectionPoint ;
    rdfs:label "ev.fromCondenser" ;
    s223:cnx ex1:00295 ;
    s223:hasMedium s223:Fluid-Refrigerant ;
    s223:isConnectionPointOf ex1:00295 ;
    s223:mapsTo ex1:00293 .

ex1:00300 a s223:ConnectionPoint,
        s223:OutletConnectionPoint,
        bob:AirConnectionPoint ;
    rdfs:label "coil.airOutlet" ;
    s223:cnx ex1:00298 ;
    s223:hasMedium s223:Fluid-Air ;
    s223:isConnectionPointOf ex1:00298 ;
    s223:mapsTo ex1:00292 .

ex1:00302 a s223:BidirectionalConnectionPoint,
        s223:ConnectionPoint,
        s223:OutletConnectionPoint,
        ex1:RefrigerantConnectionPoint ;
    rdfs:label "coil.refrigerantOutlet" ;
    s223:cnx ex1:00298 ;
    s223:hasMedium s223:Fluid-Refrigerant ;
    s223:isConnectionPointOf ex1:00298 ;
    s223:mapsTo ex1:00294 .

ex1:00306 a s223:ConnectionPoint,
        s223:InletConnectionPoint,
        bob:AirConnectionPoint ;
    rdfs:label "fan.airInlet" ;
    s223:cnx ex1:00303 ;
    s223:hasMedium s223:Fluid-Air ;
    s223:isConnectionPointOf ex1:00303 ;
    s223:mapsTo ex1:00291 .

ex1:00403 a s223:BidirectionalConnectionPoint,
        s223:ConnectionPoint,
        s223:OutletConnectionPoint,
        ex1:RefrigerantConnectionPoint ;
    rdfs:label "ev.fromCondenser" ;
    s223:cnx ex1:00402 ;
    s223:hasMedium s223:Fluid-Refrigerant ;
    s223:isConnectionPointOf ex1:00402 ;
    s223:mapsTo ex1:00400 .

ex1:00407 a s223:ConnectionPoint,
        s223:OutletConnectionPoint,
        bob:AirConnectionPoint ;
    rdfs:label "coil.airOutlet" ;
    s223:cnx ex1:00405 ;
    s223:hasMedium s223:Fluid-Air ;
    s223:isConnectionPointOf ex1:00405 ;
    s223:mapsTo ex1:00399 .

ex1:00409 a s223:BidirectionalConnectionPoint,
        s223:ConnectionPoint,
        s223:OutletConnectionPoint,
        ex1:RefrigerantConnectionPoint ;
    rdfs:label "coil.refrigerantOutlet" ;
    s223:cnx ex1:00405 ;
    s223:hasMedium s223:Fluid-Refrigerant ;
    s223:isConnectionPointOf ex1:00405 ;
    s223:mapsTo ex1:00401 .

ex1:00413 a s223:ConnectionPoint,
        s223:InletConnectionPoint,
        bob:AirConnectionPoint ;
    rdfs:label "fan.airInlet" ;
    s223:cnx ex1:00410 ;
    s223:hasMedium s223:Fluid-Air ;
    s223:isConnectionPointOf ex1:00410 ;
    s223:mapsTo ex1:00398 .

ex1:00510 a s223:BidirectionalConnectionPoint,
        s223:ConnectionPoint,
        s223:OutletConnectionPoint,
        ex1:RefrigerantConnectionPoint ;
    rdfs:label "ev.fromCondenser" ;
    s223:cnx ex1:00509 ;
    s223:hasMedium s223:Fluid-Refrigerant ;
    s223:isConnectionPointOf ex1:00509 ;
    s223:mapsTo ex1:00507 .

ex1:00514 a s223:ConnectionPoint,
        s223:OutletConnectionPoint,
        bob:AirConnectionPoint ;
    rdfs:label "coil.airOutlet" ;
    s223:cnx ex1:00512 ;
    s223:hasMedium s223:Fluid-Air ;
    s223:isConnectionPointOf ex1:00512 ;
    s223:mapsTo ex1:00506 .

ex1:00516 a s223:BidirectionalConnectionPoint,
        s223:ConnectionPoint,
        s223:OutletConnectionPoint,
        ex1:RefrigerantConnectionPoint ;
    rdfs:label "coil.refrigerantOutlet" ;
    s223:cnx ex1:00512 ;
    s223:hasMedium s223:Fluid-Refrigerant ;
    s223:isConnectionPointOf ex1:00512 ;
    s223:mapsTo ex1:00508 .

ex1:00520 a s223:ConnectionPoint,
        s223:InletConnectionPoint,
        bob:AirConnectionPoint ;
    rdfs:label "fan.airInlet" ;
    s223:cnx ex1:00517 ;
    s223:hasMedium s223:Fluid-Air ;
    s223:isConnectionPointOf ex1:00517 ;
    s223:mapsTo ex1:00505 .

ex1:00617 a s223:BidirectionalConnectionPoint,
        s223:ConnectionPoint,
        s223:OutletConnectionPoint,
        ex1:RefrigerantConnectionPoint ;
    rdfs:label "ev.fromCondenser" ;
    s223:cnx ex1:00616 ;
    s223:hasMedium s223:Fluid-Refrigerant ;
    s223:isConnectionPointOf ex1:00616 ;
    s223:mapsTo ex1:00614 .

ex1:00621 a s223:ConnectionPoint,
        s223:OutletConnectionPoint,
        bob:AirConnectionPoint ;
    rdfs:label "coil.airOutlet" ;
    s223:cnx ex1:00619 ;
    s223:hasMedium s223:Fluid-Air ;
    s223:isConnectionPointOf ex1:00619 ;
    s223:mapsTo ex1:00613 .

ex1:00623 a s223:BidirectionalConnectionPoint,
        s223:ConnectionPoint,
        s223:OutletConnectionPoint,
        ex1:RefrigerantConnectionPoint ;
    rdfs:label "coil.refrigerantOutlet" ;
    s223:cnx ex1:00619 ;
    s223:hasMedium s223:Fluid-Refrigerant ;
    s223:isConnectionPointOf ex1:00619 ;
    s223:mapsTo ex1:00615 .

ex1:00627 a s223:ConnectionPoint,
        s223:InletConnectionPoint,
        bob:AirConnectionPoint ;
    rdfs:label "fan.airInlet" ;
    s223:cnx ex1:00624 ;
    s223:hasMedium s223:Fluid-Air ;
    s223:isConnectionPointOf ex1:00624 ;
    s223:mapsTo ex1:00612 .

ex1:00724 a s223:BidirectionalConnectionPoint,
        s223:ConnectionPoint,
        s223:OutletConnectionPoint,
        ex1:RefrigerantConnectionPoint ;
    rdfs:label "ev.fromCondenser" ;
    s223:cnx ex1:00723 ;
    s223:hasMedium s223:Fluid-Refrigerant ;
    s223:isConnectionPointOf ex1:00723 ;
    s223:mapsTo ex1:00721 .

ex1:00728 a s223:ConnectionPoint,
        s223:OutletConnectionPoint,
        bob:AirConnectionPoint ;
    rdfs:label "coil.airOutlet" ;
    s223:cnx ex1:00726 ;
    s223:hasMedium s223:Fluid-Air ;
    s223:isConnectionPointOf ex1:00726 ;
    s223:mapsTo ex1:00720 .

ex1:00730 a s223:BidirectionalConnectionPoint,
        s223:ConnectionPoint,
        s223:OutletConnectionPoint,
        ex1:RefrigerantConnectionPoint ;
    rdfs:label "coil.refrigerantOutlet" ;
    s223:cnx ex1:00726 ;
    s223:hasMedium s223:Fluid-Refrigerant ;
    s223:isConnectionPointOf ex1:00726 ;
    s223:mapsTo ex1:00722 .

ex1:00734 a s223:ConnectionPoint,
        s223:InletConnectionPoint,
        bob:AirConnectionPoint ;
    rdfs:label "fan.airInlet" ;
    s223:cnx ex1:00731 ;
    s223:hasMedium s223:Fluid-Air ;
    s223:isConnectionPointOf ex1:00731 ;
    s223:mapsTo ex1:00719 .

ex1:00831 a s223:BidirectionalConnectionPoint,
        s223:ConnectionPoint,
        s223:OutletConnectionPoint,
        ex1:RefrigerantConnectionPoint ;
    rdfs:label "ev.fromCondenser" ;
    s223:cnx ex1:00830 ;
    s223:hasMedium s223:Fluid-Refrigerant ;
    s223:isConnectionPointOf ex1:00830 ;
    s223:mapsTo ex1:00828 .

ex1:00835 a s223:ConnectionPoint,
        s223:OutletConnectionPoint,
        bob:AirConnectionPoint ;
    rdfs:label "coil.airOutlet" ;
    s223:cnx ex1:00833 ;
    s223:hasMedium s223:Fluid-Air ;
    s223:isConnectionPointOf ex1:00833 ;
    s223:mapsTo ex1:00827 .

ex1:00837 a s223:BidirectionalConnectionPoint,
        s223:ConnectionPoint,
        s223:OutletConnectionPoint,
        ex1:RefrigerantConnectionPoint ;
    rdfs:label "coil.refrigerantOutlet" ;
    s223:cnx ex1:00833 ;
    s223:hasMedium s223:Fluid-Refrigerant ;
    s223:isConnectionPointOf ex1:00833 ;
    s223:mapsTo ex1:00829 .

ex1:00841 a s223:ConnectionPoint,
        s223:InletConnectionPoint,
        bob:AirConnectionPoint ;
    rdfs:label "fan.airInlet" ;
    s223:cnx ex1:00838 ;
    s223:hasMedium s223:Fluid-Air ;
    s223:isConnectionPointOf ex1:00838 ;
    s223:mapsTo ex1:00826 .

ex1:00938 a s223:BidirectionalConnectionPoint,
        s223:ConnectionPoint,
        s223:OutletConnectionPoint,
        ex1:RefrigerantConnectionPoint ;
    rdfs:label "ev.fromCondenser" ;
    s223:cnx ex1:00937 ;
    s223:hasMedium s223:Fluid-Refrigerant ;
    s223:isConnectionPointOf ex1:00937 ;
    s223:mapsTo ex1:00935 .

ex1:00942 a s223:ConnectionPoint,
        s223:OutletConnectionPoint,
        bob:AirConnectionPoint ;
    rdfs:label "coil.airOutlet" ;
    s223:cnx ex1:00940 ;
    s223:hasMedium s223:Fluid-Air ;
    s223:isConnectionPointOf ex1:00940 ;
    s223:mapsTo ex1:00934 .

ex1:00944 a s223:BidirectionalConnectionPoint,
        s223:ConnectionPoint,
        s223:OutletConnectionPoint,
        ex1:RefrigerantConnectionPoint ;
    rdfs:label "coil.refrigerantOutlet" ;
    s223:cnx ex1:00940 ;
    s223:hasMedium s223:Fluid-Refrigerant ;
    s223:isConnectionPointOf ex1:00940 ;
    s223:mapsTo ex1:00936 .

ex1:00948 a s223:ConnectionPoint,
        s223:InletConnectionPoint,
        bob:AirConnectionPoint ;
    rdfs:label "fan.airInlet" ;
    s223:cnx ex1:00945 ;
    s223:hasMedium s223:Fluid-Air ;
    s223:isConnectionPointOf ex1:00945 ;
    s223:mapsTo ex1:00933 .

ex1:01045 a s223:BidirectionalConnectionPoint,
        s223:ConnectionPoint,
        s223:OutletConnectionPoint,
        ex1:RefrigerantConnectionPoint ;
    rdfs:label "ev.fromCondenser" ;
    s223:cnx ex1:01044 ;
    s223:hasMedium s223:Fluid-Refrigerant ;
    s223:isConnectionPointOf ex1:01044 ;
    s223:mapsTo ex1:01042 .

ex1:01049 a s223:ConnectionPoint,
        s223:OutletConnectionPoint,
        bob:AirConnectionPoint ;
    rdfs:label "coil.airOutlet" ;
    s223:cnx ex1:01047 ;
    s223:hasMedium s223:Fluid-Air ;
    s223:isConnectionPointOf ex1:01047 ;
    s223:mapsTo ex1:01041 .

ex1:01051 a s223:BidirectionalConnectionPoint,
        s223:ConnectionPoint,
        s223:OutletConnectionPoint,
        ex1:RefrigerantConnectionPoint ;
    rdfs:label "coil.refrigerantOutlet" ;
    s223:cnx ex1:01047 ;
    s223:hasMedium s223:Fluid-Refrigerant ;
    s223:isConnectionPointOf ex1:01047 ;
    s223:mapsTo ex1:01043 .

ex1:01055 a s223:ConnectionPoint,
        s223:InletConnectionPoint,
        bob:AirConnectionPoint ;
    rdfs:label "fan.airInlet" ;
    s223:cnx ex1:01052 ;
    s223:hasMedium s223:Fluid-Air ;
    s223:isConnectionPointOf ex1:01052 ;
    s223:mapsTo ex1:01040 .

ex1:01152 a s223:BidirectionalConnectionPoint,
        s223:ConnectionPoint,
        s223:OutletConnectionPoint,
        ex1:RefrigerantConnectionPoint ;
    rdfs:label "ev.fromCondenser" ;
    s223:cnx ex1:01151 ;
    s223:hasMedium s223:Fluid-Refrigerant ;
    s223:isConnectionPointOf ex1:01151 ;
    s223:mapsTo ex1:01149 .

ex1:01156 a s223:ConnectionPoint,
        s223:OutletConnectionPoint,
        bob:AirConnectionPoint ;
    rdfs:label "coil.airOutlet" ;
    s223:cnx ex1:01154 ;
    s223:hasMedium s223:Fluid-Air ;
    s223:isConnectionPointOf ex1:01154 ;
    s223:mapsTo ex1:01148 .

ex1:01158 a s223:BidirectionalConnectionPoint,
        s223:ConnectionPoint,
        s223:OutletConnectionPoint,
        ex1:RefrigerantConnectionPoint ;
    rdfs:label "coil.refrigerantOutlet" ;
    s223:cnx ex1:01154 ;
    s223:hasMedium s223:Fluid-Refrigerant ;
    s223:isConnectionPointOf ex1:01154 ;
    s223:mapsTo ex1:01150 .

ex1:01162 a s223:ConnectionPoint,
        s223:InletConnectionPoint,
        bob:AirConnectionPoint ;
    rdfs:label "fan.airInlet" ;
    s223:cnx ex1:01159 ;
    s223:hasMedium s223:Fluid-Air ;
    s223:isConnectionPointOf ex1:01159 ;
    s223:mapsTo ex1:01147 .

ex1:01259 a s223:BidirectionalConnectionPoint,
        s223:ConnectionPoint,
        s223:OutletConnectionPoint,
        ex1:RefrigerantConnectionPoint ;
    rdfs:label "ev.fromCondenser" ;
    s223:cnx ex1:01258 ;
    s223:hasMedium s223:Fluid-Refrigerant ;
    s223:isConnectionPointOf ex1:01258 ;
    s223:mapsTo ex1:01256 .

ex1:01263 a s223:ConnectionPoint,
        s223:OutletConnectionPoint,
        bob:AirConnectionPoint ;
    rdfs:label "coil.airOutlet" ;
    s223:cnx ex1:01261 ;
    s223:hasMedium s223:Fluid-Air ;
    s223:isConnectionPointOf ex1:01261 ;
    s223:mapsTo ex1:01255 .

ex1:01265 a s223:BidirectionalConnectionPoint,
        s223:ConnectionPoint,
        s223:OutletConnectionPoint,
        ex1:RefrigerantConnectionPoint ;
    rdfs:label "coil.refrigerantOutlet" ;
    s223:cnx ex1:01261 ;
    s223:hasMedium s223:Fluid-Refrigerant ;
    s223:isConnectionPointOf ex1:01261 ;
    s223:mapsTo ex1:01257 .

ex1:01269 a s223:ConnectionPoint,
        s223:InletConnectionPoint,
        bob:AirConnectionPoint ;
    rdfs:label "fan.airInlet" ;
    s223:cnx ex1:01266 ;
    s223:hasMedium s223:Fluid-Air ;
    s223:isConnectionPointOf ex1:01266 ;
    s223:mapsTo ex1:01254 .

ex1:01366 a s223:BidirectionalConnectionPoint,
        s223:ConnectionPoint,
        s223:OutletConnectionPoint,
        ex1:RefrigerantConnectionPoint ;
    rdfs:label "ev.fromCondenser" ;
    s223:cnx ex1:01365 ;
    s223:hasMedium s223:Fluid-Refrigerant ;
    s223:isConnectionPointOf ex1:01365 ;
    s223:mapsTo ex1:01363 .

ex1:01370 a s223:ConnectionPoint,
        s223:OutletConnectionPoint,
        bob:AirConnectionPoint ;
    rdfs:label "coil.airOutlet" ;
    s223:cnx ex1:01368 ;
    s223:hasMedium s223:Fluid-Air ;
    s223:isConnectionPointOf ex1:01368 ;
    s223:mapsTo ex1:01362 .

ex1:01372 a s223:BidirectionalConnectionPoint,
        s223:ConnectionPoint,
        s223:OutletConnectionPoint,
        ex1:RefrigerantConnectionPoint ;
    rdfs:label "coil.refrigerantOutlet" ;
    s223:cnx ex1:01368 ;
    s223:hasMedium s223:Fluid-Refrigerant ;
    s223:isConnectionPointOf ex1:01368 ;
    s223:mapsTo ex1:01364 .

ex1:01376 a s223:ConnectionPoint,
        s223:InletConnectionPoint,
        bob:AirConnectionPoint ;
    rdfs:label "fan.airInlet" ;
    s223:cnx ex1:01373 ;
    s223:hasMedium s223:Fluid-Air ;
    s223:isConnectionPointOf ex1:01373 ;
    s223:mapsTo ex1:01361 .

qudt:Aspect a qudt:AspectClass,
        sh:NodeShape ;
    rdfs:label "QUDT Aspect"^^xsd:string ;
    dcterms:description "An aspect is an abstract type class that defines properties that can be reused."^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subClassOf rdfs:Resource .

qudt:BigEndian a qudt:EndianType ;
    rdfs:label "Big Endian"^^xsd:string ;
    dcterms:description "A big-endian machine stores the most significant byte first."^^rdf:HTML ;
    ns2:code 1 ;
    ns2:literal "big"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype>,
        <http://qudt.org/3.1.8/vocab/datatype> .

qudt:BitField a rdfs:Datatype ;
    dcterms:description """
  <p>A bit field is a common idiom used in computer programming to store a set of Boolean datatype flags compactly, as a series of bits. 
  The bit field is stored in an integral type of known, fixed bit-width. 
  Each Boolean flag is stored in a separate bit. 
  Usually the source code will define a set of constants, each a power of two, that semantically associate each individual bit with its respective Boolean flag. 
  The bitwise operators and, or, and not are used in combination to set, reset and test the flags.
  </p>
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf xsd:string .

qudt:CCT_VehicleCentered a qudt:CoordinateCenterKind ;
    rdfs:label "Vehicle-centered Coordinate System Type"^^xsd:string ;
    ns2:literal "vehicleCentered"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:FLOAT-DP a qudt:RealDoublePrecisionType ;
    rdfs:label "Double Precision Real"^^xsd:string ;
    dcterms:description """
  <p>A double precision floating point datatype. 
  Numbers of this type are stored using 64 bits, they require more memory than numbers of type single, which use 32 bits. 
  However, because they are stored with more bits, numbers of type double are represented to more precision than numbers of type single. 
  The double-precision (or double) data type is represented according to IEEE Standard 754 for double precision. 
  A value is formatted with bit-fields for sign, mantissa and exponent.
  </p>
  """^^rdf:HTML ;
    qudt:abbreviation "F64"^^xsd:string ;
    qudt:ansiSQLName "DOUPLE PRECISION"^^xsd:string ;
    qudt:base 2 ;
    qudt:bits 64 ;
    qudt:bytes 8 ;
    qudt:encoding qudt:DoublePrecisionEncoding ;
    qudt:exactMatch qudt:FLOAT_IEEE754-BINARY64 ;
    qudt:id "T006-03"^^xsd:string ;
    qudt:javaName "double"^^xsd:string ;
    qudt:jsName "double"^^xsd:string ;
    qudt:matlabName "double"^^xsd:string ;
    qudt:maxExclusive "(1-2^{-53}) \\times 2^{1024}"^^xsd:string ;
    qudt:maxExponent 1023 ;
    qudt:maxMantissa 9007199254740991 ;
    qudt:microsoftSQLServerName "float"^^xsd:string ;
    qudt:minExclusive "-(1-2^{-53}) \\times 2^{1024}"^^xsd:string ;
    qudt:minMantissa -9007199254740991 ;
    qudt:mySQLName "DOUBLE"^^xsd:string ;
    qudt:odbcName "SQL_DOUBLE"^^xsd:string ;
    qudt:oleDBName "DBTYPE_R8"^^xsd:string ;
    qudt:oracleSQLName "FLOAT(49)"^^xsd:string ;
    qudt:rdfsDatatype xsd:double ;
    ns2:code 405 ;
    ns2:literal "double"^^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://en.wikipedia.org/wiki/IEEE_floating_point>,
        <http://msdn.microsoft.com/en-us/library/aa275635(v=sql.80).aspx>,
        <http://www.mathworks.com/help/matlab/matlab_prog/floating-point-numbers.html> .

qudt:MaybeQuantityPropertyShape a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:Quantity ;
    sh:maxCount 1 ;
    sh:path qudt:quantity .

qudt:UnsignedIntegerEncoding a qudt:IntegerEncodingType ;
    rdfs:label "Unsigned 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:bits a rdf:Property ;
    rdfs:label "bits"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:definedUnitOfSystem a rdf:Property ;
    rdfs:label "defined unit of system"^^xsd:string ;
    dcterms:description "This property relates a unit of measure with the unit system that defines the unit."^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subPropertyOf qudt:isUnitOfSystem .

qudt:derivedUnitOfSystem a rdf:Property ;
    rdfs:label "is derived 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 derived unit. 
  That is, the derived unit is defined as a product of the base units for the system raised to some rational power.
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subPropertyOf qudt:isUnitOfSystem .

qudt:frameType a rdf:Property ;
    rdfs:label "frame type"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:hasCoherentUnit a rdf:Property ;
    rdfs:label "coherent unit"^^xsd:string ;
    dcterms:description """
  A coherent unit of measurement for a unit system is a defined unit that may be expressed as a product of powers
   of the system's base units with the proportionality factor of one.
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subPropertyOf qudt:hasDefinedUnit .

qudt:hasDefinedUnit a rdf:Property ;
    rdfs:label "defined unit"^^xsd:string ;
    dcterms:description "This property relates a unit system with a unit of measure that is defined by the system."^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subPropertyOf qudt:hasUnit .

qudt:hasDerivedUnit a rdf:Property ;
    rdfs:label "derived unit"^^xsd:string ;
    dcterms:description """
  This property relates a system of units to a unit of measure that is defined within the system in terms
   of the base units for the system. 
  That is, the derived unit is defined as a product of the base units for the system raised to some rational power.
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:hasDimensionVector a rdf:Property ;
    rdfs:label "has dimension vector"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:iec61360Code a rdf:Property ;
    rdfs:label "iec-61360 code"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:isDeltaQuantity a rdf:Property ;
    rdfs:label "is Delta Quantity"^^xsd:string ;
    dcterms:description """
  This property is used to identify a Quantity instance that is a measure of a change, or interval, of some property,
   rather than a measure of its absolute value. 
  This is important for measurements such as temperature differences where the conversion among units would be calculated differently because of offsets.
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:isUnitOfSystem a rdf:Property ;
    rdfs:label "is unit of system"^^xsd:string ;
    dcterms:description """
  This property relates a unit of measure with a system of units that either a) defines the unit
   or b) allows the unit to be used within the system.
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:length a rdf:Property ;
    rdfs:label "length"^^xsd:string ;
    dcterms:description "The length of a structure, for example the size of a vector"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:mathMLdefinition a rdf:Property ;
    rdfs:label "mathML definition"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subPropertyOf qudt:mathDefinition .

qudt:memberDatatype a rdf:Property ;
    rdfs:label "member datatype"^^xsd:string ;
    dcterms:description """
  This property is used to define the data type of a collection's elements. 
  It is used for collections with elements that are all of the same type.
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:normativeReference a rdf:Property ;
    rdfs:label "normative reference"^^xsd:string ;
    dcterms:description "Provides a way to reference information that is an authoritative source providing a standard definition"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:rotationDefinition a rdf:Property ;
    rdfs:label "rotation definition"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:signedness a rdf:Property ;
    rdfs:label "signedness"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:type a rdf:Property ;
    rdfs:label "type"^^xsd:string ;
    rdfs:comment "A reference to the specification of the data type of a variable or constant."^^xsd:string .

qudt:ucumCode a rdf:Property ;
    rdfs:label "ucum code"^^xsd:string ;
    dcterms:description "<p><em>ucumCode</em> associates a QUDT unit with its UCUM code (case-sensitive). <p>In SHACL the values are derived from specific ucum properties using 'sh:values'."^^rdf:HTML ;
    dcterms:source "https://ucum.org/ucum.html"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:seeAlso <https://ucum.org/ucum.html> ;
    rdfs:subPropertyOf skos:notation .

<http://qudt.org/vocab/dimensionvector/A0E-1L2I0M1H-1T-3D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_CGS,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E-1L2I0M1H-1T-3D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent -1 ;
    qudt:dimensionExponentForLength 2 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 1 ;
    qudt:dimensionExponentForThermodynamicTemperature -1 ;
    qudt:dimensionExponentForTime -3 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition " $E^{-1}$ $L^{2}$ $M^{1}$ $H^{-1}$ $T^{-3}$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E-1L3I0M1H0T-2D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E-1L3I0M1H0T-2D0"^^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:hasReferenceQuantityKind quantitykind:MagneticDipoleMoment ;
    qudt:latexDefinition " $E^{-1}$ $L^{3}$ $M^{1}$ $T^{-2}$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E-1L3I0M1H0T-3D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E-1L3I0M1H0T-3D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent -1 ;
    qudt:dimensionExponentForLength 3 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 1 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime -3 ;
    qudt:dimensionlessExponent 0 ;
    qudt:hasReferenceQuantityKind quantitykind:ElectricFlux ;
    qudt:latexDefinition " $E^{-1}$ $L^{3}$ $M^{1}$ $T^{-3}$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L-0dot5I0M1H0T-2D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_CGS,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E0L-0dot5I0M1H0T-2D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength -0.5 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 1 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime -2 ;
    qudt:dimensionlessExponent 0 ;
    qudt:hasReferenceQuantityKind quantitykind:StressIntensityFactor ;
    qudt:latexDefinition "$L^-0.5 M T^-2$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H1T0D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_CGS,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E0L-1I0M0H1T0D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength -1 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 0 ;
    qudt:dimensionExponentForThermodynamicTemperature 1 ;
    qudt:dimensionExponentForTime 0 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition " $L^{-1}$ $H^{1}$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L-2I0M-1H0T3D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E0L-2I0M-1H0T3D0"^^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: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-2I1M0H0T1D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E0L-2I1M0H0T1D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength -2 ;
    qudt:dimensionExponentForLuminousIntensity 1 ;
    qudt:dimensionExponentForMass 0 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime 1 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition " $L^{-2}$ $I^{1}$ $T^{1}$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L-5I0M-1H0T2D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E0L-5I0M-1H0T2D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength -5 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass -1 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime 2 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition "$L^-5 M^-1 T^2 $"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L0I0M-1H0T3D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E0L0I0M-1H0T3D0"^^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 0 ;
    qudt:latexDefinition " $M^{-1}$ $T^{3}$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H-1T-1D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E0L0I0M0H-1T-1D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength 0 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 0 ;
    qudt:dimensionExponentForThermodynamicTemperature -1 ;
    qudt:dimensionExponentForTime -1 ;
    qudt:dimensionlessExponent 0 ;
    qudt:hasReferenceQuantityKind quantitykind:InverseTimeTemperature ;
    qudt:latexDefinition " $H^{-1}$ $T^{-1}$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H-4T-3D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E0L0I0M1H-4T-3D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength 0 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 1 ;
    qudt:dimensionExponentForThermodynamicTemperature -4 ;
    qudt:dimensionExponentForTime -3 ;
    qudt:dimensionlessExponent 0 ;
    qudt:hasReferenceQuantityKind quantitykind:PowerPerAreaQuarticTemperature ;
    qudt:latexDefinition " $M^{1}$ $H^{-4}$ $T^{-3}$"^^qudt:LatexString ;
    qudt:latexSymbol "$M T^{-3}.\\Theta^{-4}$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H1T0D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E0L2I0M0H1T0D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength 2 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 0 ;
    qudt:dimensionExponentForThermodynamicTemperature 1 ;
    qudt:dimensionExponentForTime 0 ;
    qudt:dimensionlessExponent 0 ;
    qudt:hasReferenceQuantityKind quantitykind:AreaTemperature ;
    qudt:latexDefinition " $L^{2}$ $H^{1}$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H1T1D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E0L2I0M0H1T1D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength 2 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 0 ;
    qudt:dimensionExponentForThermodynamicTemperature 1 ;
    qudt:dimensionExponentForTime 1 ;
    qudt:dimensionlessExponent 0 ;
    qudt:hasReferenceQuantityKind quantitykind:AreaTimeTemperature ;
    qudt:latexDefinition " $L^{2}$ $H^{1}$ $T^{1}$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T-2D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E0L3I0M0H0T-2D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength 3 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 0 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime -2 ;
    qudt:dimensionlessExponent 0 ;
    qudt:hasReferenceQuantityKind quantitykind:StandardGravitationalParameter ;
    qudt:latexDefinition " $L^{3}$ $T^{-2}$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L6I0M0H0T0D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_CGS,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E0L6I0M0H0T0D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength 6 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 0 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime 0 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition " $L^{6}$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E1L-1I0M-1H0T2D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E1L-1I0M-1H0T2D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 1 ;
    qudt:dimensionExponentForLength -1 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass -1 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime 2 ;
    qudt:dimensionlessExponent 0 ;
    qudt:hasReferenceQuantityKind quantitykind:MagneticReluctivity ;
    qudt:latexDefinition " $E^{1}$ $L^{-1}$ $M^{-1}$ $T^{2}$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E1L-2I0M-1H0T3D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E1L-2I0M-1H0T3D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 1 ;
    qudt:dimensionExponentForLength -2 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass -1 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime 3 ;
    qudt:dimensionlessExponent 0 ;
    qudt:hasReferenceQuantityKind quantitykind:ElectricCurrentPerEnergy ;
    qudt:latexDefinition " $E^{1}$ $L^{-2}$ $M^{-1}$ $T^{3}$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E2L0I0M-1H0T4D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E2L0I0M-1H0T4D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 2 ;
    qudt:dimensionExponentForLength 0 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass -1 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime 4 ;
    qudt:dimensionlessExponent 0 ;
    qudt:hasReferenceQuantityKind quantitykind:Polarizability ;
    qudt:latexDefinition " $E^{2}$ $M^{-1}$ $T^{4}$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E2L2I0M-1H0T2D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E2L2I0M-1H0T2D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 2 ;
    qudt:dimensionExponentForLength 2 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass -1 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime 2 ;
    qudt:dimensionlessExponent 0 ;
    qudt:hasReferenceQuantityKind quantitykind:EnergyPerSquareMagneticFluxDensity ;
    qudt:latexDefinition " $E^{2}$ $L^{2}$ $M^{-1}$ $T^{2}$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E3L-3I0M-2H0T7D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_CGS,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E3L-3I0M-2H0T7D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 3 ;
    qudt:dimensionExponentForLength -3 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass -2 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime 7 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition " $E^{3}$ $L^{-3}$ $M^{-2}$ $T^{7}$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E4L-2I0M-3H0T10D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E4L-2I0M-3H0T10D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 4 ;
    qudt:dimensionExponentForLength -2 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass -3 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime 10 ;
    qudt:dimensionlessExponent 0 ;
    qudt:hasReferenceQuantityKind quantitykind:QuarticElectricDipoleMomentPerCubicEnergy ;
    qudt:latexDefinition " $E^{4}$ $L^{-2}$ $M^{-3}$ $T^{10}$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E4L-6I0M-2H0T6D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E4L-6I0M-2H0T6D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 4 ;
    qudt:dimensionExponentForLength -6 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass -2 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime 6 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition " $E^{4}$ $L^{-6}$ $M^{-2}$ $T^{6}$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A1E0L-2I0M0H0T0D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_CGS,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A1E0L-2I0M0H0T0D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 1 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength -2 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 0 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime 0 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition " $A^{1}$ $L^{-2}$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A1E0L-3I0M0H-1T0D0> a qudt:QuantityKindDimensionVector ;
    rdfs:label "A1E0L-3I0M0H-1T0D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 1 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength -3 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 0 ;
    qudt:dimensionExponentForThermodynamicTemperature -1 ;
    qudt:dimensionExponentForTime 0 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition "$N L^-3 H^-1 $"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A2E0L-4I0M0H0T-2D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A2E0L-4I0M0H0T-2D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 2 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength -4 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 0 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime -2 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition " $A^{2}$ $L^{-4}$ $T^{-2}$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

quantitykind:AcousticImpedance a qudt:QuantityKind ;
    rdfs:label "Acoustic Impediance"@en ;
    dcterms:description """
  $\\textit{Acoustic Impedance}$ at a surface is the complex quotient of the average sound pressure over that surface by the sound volume flow rate through that surface.
  """^^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"^^xsd:anyURI ;
    qudt:latexDefinition "$Z_a= \\frac{p}{q} = \\frac{p}{vS}$, where $p$ is the sound pressure, $q$ is the sound volume velocity, $v$ is sound particle velocity, and $S$ is the surface area through which an acoustic wave of frequence $f$ propagates."^^qudt:LatexString ;
    qudt:plainTextDescription "Acoustic impedance at a surface is the complex quotient of the average sound pressure over that surface by the sound volume flow rate through that surface."^^xsd:string ;
    qudt:symbol "Z"^^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 quantitykind:MassPerAreaTime .

quantitykind:ActivePower a qudt:QuantityKind ;
    rdfs:label "Active Power"@en ;
    dcterms:description """
  An $Active Power$ is, under periodic conditions, the mean value, taken over one period $T$, of the instantaneous power $p$. 
  In complex notation, $P = \\mathbf{Re} \\; \\underline{S}$, where $\\underline{S}$ is $\\textit{complex power}$.
  """^^qudt:LatexString ;
    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:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-3D0> ;
    qudt:iec61360Code "0112/2///62720#UAD003"^^xsd:string ;
    qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=131-11-42"^^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%23UAD003"^^xsd:anyURI ;
    qudt:latexDefinition "$P = \\frac{1}{T}\\int_{0}^{T} pdt$, where $T$ is the period and $p$ is instantaneous power."^^qudt:LatexString ;
    qudt:symbol "P"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q12713281> ;
    rdfs:comment "Applicable units are those of quantitykind:ElectricPower"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    rdfs:seeAlso quantitykind:InstantaneousPower ;
    skos:broader quantitykind:ElectricPower .

quantitykind:AmountOfSubstancePerMassPressure a qudt:QuantityKind ;
    rdfs:label "Molar Mass variation due to Pressure"@en ;
    dcterms:description "The \"Variation of Molar Mass\" of a gas as a function of pressure."^^qudt:LatexString ;
    qudt:applicableUnit unit:MOL-PER-KiloGM-BAR,
        unit:MOL-PER-KiloGM-PA ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L1I0M-2H0T2D0> ;
    qudt:plainTextDescription "The \"Variation of Molar Mass\" of a gas as a function of pressure."^^xsd:string ;
    qudt:qkdvDenominator <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M2H0T-2D0> ;
    qudt:qkdvNumerator <http://qudt.org/vocab/dimensionvector/A1E0L0I0M0H0T0D0> ;
    rdfs:comment "Applicable units are those of quantitykind:AmountOfSubstancePerMassPressure"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:AngularCrossSection a qudt:QuantityKind ;
    rdfs:label "Angular Cross-section"@en ;
    dcterms:description "\"Angular Cross-section\" is the cross-section for ejecting or scattering a particle into an elementary cone, divided by the solid angle $d\\Omega$ of that cone."^^qudt:LatexString ;
    qudt:applicableUnit unit:M2-PER-SR ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T0D0> ;
    qudt:iec61360Code "0112/2///62720#UAD007"^^xsd:string ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Cross_section_(physics)"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD007"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:latexDefinition "$\\sigma = \\int \\sigma_\\Omega d\\Omega$"^^qudt:LatexString ;
    qudt:latexSymbol "$\\sigma_\\Omega$"^^qudt:LatexString ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q98266630> ;
    rdfs:comment "Applicable units are those of quantitykind:AngularCrossSection"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:closeMatch quantitykind:SpectralCrossSection .

quantitykind:AreaAngle a qudt:QuantityKind ;
    rdfs:label "Area Angle"@en ;
    qudt:applicableUnit unit:M2-SR ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T0D0> ;
    rdfs:comment "Applicable units are those of quantitykind:AreaAngle"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:AreaRatio a qudt:QuantityKind ;
    rdfs:label "Area Ratio"@en ;
    qudt:applicableUnit unit:M2-PER-HA,
        unit:M2-PER-M2 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:qkdvDenominator <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T0D0> ;
    qudt:qkdvNumerator <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T0D0> ;
    rdfs:comment "Applicable units are those of quantitykind:AreaRatio"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader quantitykind:DimensionlessRatio .

quantitykind:AreaThermalExpansion a qudt:QuantityKind ;
    rdfs:label "Area Thermal Expansion"@en ;
    dcterms:description "When the temperature of a substance changes, the energy that is stored in the intermolecular bonds between atoms changes. When the stored energy increases, so does the length of the molecular bonds. As a result, solids typically expand in response to heating and contract on cooling; this dimensional response to temperature change is expressed by its coefficient of thermal expansion."^^qudt:LatexString ;
    qudt:applicableUnit unit:M2-PER-K ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H-1T0D0> ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Thermal_expansion#Area"^^xsd:anyURI ;
    qudt:plainTextDescription "When the temperature of a substance changes, the energy that is stored in the intermolecular bonds between atoms changes. When the stored energy increases, so does the length of the molecular bonds. As a result, solids typically expand in response to heating and contract on cooling; this dimensional response to temperature change is expressed by its coefficient of thermal expansion."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:AreaThermalExpansion"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:AtmosphericHydroxylationRate a qudt:QuantityKind ;
    rdfs:label "Atmospheric Hydroxylation Rate"@en ;
    dcterms:description "A second order reaction rate constant that is a specific second order reaction rate constant that governs the kinetics of an atmospheric, gas-phase reaction between hydroxyl radicals and an organic chemical."^^qudt:LatexString ;
    qudt:applicableUnit unit:CentiM3-PER-MOL-SEC,
        unit:L-PER-MOL-SEC,
        unit:M3-PER-MOL-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A-1E0L3I0M0H0T-1D0> ;
    qudt:plainTextDescription "A second order reaction rate constant that is a specific second order reaction rate constant that governs the kinetics of an atmospheric, gas-phase reaction between hydroxyl radicals and an organic chemical."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:AtmosphericHydroxylationRate"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader quantitykind:SecondOrderReactionRateConstant .

quantitykind:BloodGlucoseLevel a qudt:QuantityKind ;
    rdfs:label "Blood Glucose Level"@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 ;
    qudt:applicableUnit unit:MilliMOL-PER-L ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L-3I0M0H0T0D0> ;
    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:comment "Applicable units are those of quantitykind:BloodGlucoseLevel"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    rdfs:seeAlso quantitykind:MassBasedBloodGlucoseLevel .

quantitykind:BulkModulus a qudt:QuantityKind ;
    rdfs:label "Bulk Modulus"@en ;
    dcterms:description "The bulk modulus of a substance measures the substance's resistance to uniform compression. It is defined as the ratio of the infinitesimal pressure increase to the resulting relative decrease of the volume."^^qudt:LatexString ;
    qudt:applicableUnit unit:PA,
        unit:PicoPA ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-2D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Bulk_modulus"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ;
    qudt:latexDefinition "$K = \\frac{p}{\\vartheta}$, where $p$ is pressure and $\\vartheta$ is volume strain."^^qudt:LatexString ;
    qudt:plainTextDescription "The bulk modulus of a substance measures the substance's resistance to uniform compression. It is defined as the ratio of the infinitesimal pressure increase to the resulting relative decrease of the volume."^^xsd:string ;
    qudt:symbol "K"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q900371> ;
    rdfs:comment "Applicable units are those of quantitykind:BulkModulus"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:CanonicalPartitionFunction a qudt:QuantityKind ;
    rdfs:label "Canonical Partition Function"@en ;
    dcterms:description "A \"Canonical Partition Function\" applies to a canonical ensemble, in which the system is allowed to exchange heat with the environment at fixed temperature, volume, and number of particles."^^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 "$Z = \\sum_r e^{-\\frac{E_r}{kT}}$, where the sum is over all quantum states consistent with given energy, volume, external fields, and content, $E_r$ is the energy in the $rth$ quantum state, $k$ is the Boltzmann constant, and $T$ is thermodynamic temperature."^^qudt:LatexString ;
    qudt:plainTextDescription "A \"Canonical Partition Function\" applies to a canonical ensemble, in which the system is allowed to exchange heat with the environment at fixed temperature, volume, and number of particles."^^xsd:string ;
    qudt:symbol "Z"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q96142389> ;
    rdfs:comment "Applicable units are those of quantitykind:CanonicalPartitionFunction"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:CombinedNonEvaporativeHeatTransferCoefficient a qudt:QuantityKind ;
    rdfs:label "Combined Non Evaporative Heat Transfer Coefficient"@en ;
    qudt:applicableUnit unit:KiloW-PER-M2-K,
        unit:W-PER-M2-K ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H-1T-3D0> ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ;
    qudt:latexDefinition "$h = h_r + h_c + h_k$, where $h_r$ is the linear radiative heat transfer coefficient, $h_c$ is the convective heat transfer coefficient, and $h_k$ is the conductive heat transfer coefficient."^^qudt:LatexString ;
    qudt:symbol "h"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:CombinedNonEvaporativeHeatTransferCoefficient"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:ConductionSpeed a qudt:QuantityKind ;
    rdfs:label "Conduction Speed"@en ;
    dcterms:description "\"Conduction Speed\" is the speed of impulses in nerve fibers."^^qudt:LatexString ;
    qudt:applicableUnit unit:GigaHZ-M,
        unit:KiloHZ-M ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T-1D0> ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Conduction Speed\" is the speed of impulses in nerve fibers."^^xsd:string ;
    qudt:symbol "c"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:ConductionSpeed"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader quantitykind:Speed .

quantitykind:CrossSection a qudt:QuantityKind ;
    rdfs:label "Cross-section"@en ;
    dcterms:description "\"Cross-section\" is used to express the likelihood of interaction between particles. For a specified target particle and for a specified reaction or process produced by incident charged or uncharged particles of specified type and energy, it is the mean number of such reactions or processes divided by the incident-particle fluence."^^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:iec61360Code "0112/2///62720#UAD026"^^xsd:string ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Cross_section_(physics)"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD026"^^xsd:anyURI ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Cross-section\" is used to express the likelihood of interaction between particles. For a specified target particle and for a specified reaction or process produced by incident charged or uncharged particles of specified type and energy, it is the mean number of such reactions or processes divided by the incident-particle fluence."^^xsd:string ;
    qudt:symbol "σ"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q17128025> ;
    rdfs:comment "Applicable units are those of quantitykind:Area"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader quantitykind:Area .

quantitykind:DigitRate a qudt:QuantityKind ;
    rdfs:label "digit rate"^^xsd:string ;
    qudt:applicableUnit unit:BAUD,
        unit:KiloBAUD,
        unit:MegaBAUD ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:iec61360Code "0112/2///62720#UAD032"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD032"^^xsd:anyURI ;
    rdfs:comment "Applicable units are those of quantitykind:DigitRate"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:DisplacementCurrentDensity a qudt:QuantityKind ;
    rdfs:label "Displacement Current Density"@en ;
    dcterms:description """
$\\text{Displacement Current Density}$ is the time rate of change of the $\\textit{Electric Flux Density}$. 
  This is a measure of how quickly the electric field changes if we observe it as a function of time. 
  This is different than if we look at how the electric field changes spatially, that is, over a region of space for a fixed amount of time.
  """^^qudt:LatexString ;
    qudt:applicableUnit unit:A-PER-M2 ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Electric_flux"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L-2I0M0H0T0D0> ;
    qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI,
        "http://www.maxwells-equations.com/math/partial-electric-flux.php"^^xsd:anyURI ;
    qudt:latexDefinition "$J_D = \\frac{\\partial D}{\\partial t}$, where $D$ is electric flux density and $t$ is time."^^qudt:LatexString ;
    qudt:latexSymbol "$J_D$"^^qudt:LatexString ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q77614612> ;
    rdfs:comment "Applicable units are those of quantitykind:DisplacementCurrentDensity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    rdfs:seeAlso quantitykind:ElectricFluxDensity .

quantitykind:DutyCycle a qudt:QuantityKind ;
    rdfs:label "Duty Cycle"@en ;
    dcterms:description "A duty cycle or power cycle is the fraction of one period in which a signal or system is active."^^qudt:LatexString ;
    qudt:applicableUnit unit:FRACTION,
        unit:PERCENT,
        unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Duty_cycle"^^xsd:anyURI ;
    qudt:latexSymbol "$\\alpha$"^^qudt:LatexString ;
    qudt:plainTextDescription "A duty cycle or power cycle is the fraction of one period in which a signal or system is active."^^xsd:string ;
    qudt:symbol "α"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:DutyCycle"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader quantitykind:DimensionlessRatio .

quantitykind:Duv a qudt:QuantityKind ;
    rdfs:label "Delta u,v"@en ;
    dcterms:description "Duv is a metric that is short for Delta u,v (not to be confused with Delta u',v') and describes the distance of a light color point from the black body curve."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "https://www.waveformlighting.com/tech/calculate-duv-from-cie-1931-xy-coordinates"^^xsd:anyURI,
        "https://www1.eere.energy.gov/buildings/publications/pdfs/ssl/led-color-characteristics-factsheet.pdf"^^xsd:anyURI ;
    qudt:plainTextDescription "Duv is a metric that is short for Delta u,v (not to be confused with Delta u',v') and describes the distance of a light color point from the black body curve."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Duv"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    rdfs:seeAlso quantitykind:CorrelatedColorTemperature .

quantitykind:ElectricChargeLineDensity a qudt:QuantityKind ;
    rdfs:label "Electric Charge Line Density"@en ;
    dcterms:description "In electromagnetism, charge density is a measure of electric charge per unit volume of space, in one, two or three dimensions. More specifically: the linear, surface, or volume charge density is the amount of electric charge per unit length, surface area, or volume, respectively. The respective SI units are $C \\cdot $, $m^{-1}$, $C \\cdot m^{-2}$ or $C \\cdot m^{-3}$."^^qudt:LatexString ;
    qudt:applicableUnit unit:C-PER-M ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L-1I0M0H0T1D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Charge_density"^^xsd:anyURI ;
    qudt:latexSymbol "$\\lambda$"^^qudt:LatexString ;
    rdfs:comment "Applicable units are those of quantitykind:ElectricChargeLineDensity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:ElectricDisplacement a qudt:QuantityKind ;
    rdfs:label "Electric Displacement"@en ;
    dcterms:description "In a dielectric material the presence of an electric field E causes the bound charges in the material (atomic nuclei and their electrons) to slightly separate, inducing a local electric dipole moment. The Electric Displacement Field, $D$, is a vector field that accounts for the effects of free charges within such dielectric materials. This describes also the charge density on an extended surface that could be causing the field."^^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:exactMatch quantitykind:ElectricFluxDensity ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L-2I0M0H0T1D0> ;
    qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI,
        "http://www.oxfordreference.com/view/10.1093/acref/9780199233991.001.0001/acref-9780199233991-e-895"^^xsd:anyURI ;
    qudt:latexDefinition "$D = \\epsilon_0 E + P$, where $\\epsilon_0$ is the electric constant, $E$ is electric field strength, and $P$ is electric polarization."^^qudt:LatexString ;
    qudt:symbol "D"^^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 quantitykind:ElectricChargePerArea .

quantitykind:ElectricDisplacementField a qudt:QuantityKind ;
    rdfs:label "Electric Displacement Field"@en ;
    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:symbol "D"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q371907> ;
    rdfs:comment "Applicable units are those of quantitykind:ElectricChargePerArea"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader quantitykind:ElectricChargePerArea .

quantitykind:ElectromagneticEnergyDensity a qudt:QuantityKind ;
    rdfs:label "Electromagnetic Energy Density"@en ;
    dcterms:description """
$\\textit{Electromagnetic Energy Density}$, also known as the $\\color{indigo} {\\text{Volumic Electromagnetic Energy}}$, is the energy associated with an electromagnetic field, per unit volume of the field.
  """^^qudt:LatexString ;
    qudt:applicableUnit unit:J-PER-M3 ;
    qudt:exactMatch quantitykind:VolumicElectromagneticEnergy ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-2D0> ;
    qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=121-11-64"^^xsd:anyURI,
        "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ;
    qudt:latexDefinition "$w = (1/2) ( \\mathbf{E} \\cdot \\mathbf{D} + \\mathbf{B} \\cdot \\mathbf{H})$, where $\\mathbf{E}$ is electric field strength, $\\mathbf{D}$ is electric flux density, $\\mathbf{M}$ is magnetic flux density, and $\\mathbf{H}$ is magnetic field strength."^^qudt:LatexString ;
    qudt:symbol "w"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q77989624> ;
    rdfs:comment "Applicable units are those of quantitykind:ElectromagneticEnergyDensity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    rdfs:seeAlso quantitykind:ElectricFieldStrength,
        quantitykind:ElectricFluxDensity,
        quantitykind:MagneticFieldStrength,
        quantitykind:MagneticFluxDensity .

quantitykind:Emissivity a qudt:QuantityKind ;
    rdfs:label "Emissivity"@en ;
    dcterms:description "Emissivity of a material (usually written $\\varepsilon$ or e) is the relative ability of its surface to emit energy by radiation."^^qudt:LatexString ;
    qudt:applicableUnit unit:PERCENT,
        unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Emissivity"^^xsd:anyURI ;
    qudt:latexDefinition "$\\varepsilon = \\frac{M}{M_b}$, where $M$ is the radiant exitance of a thermal radiator and $M_b$ is the radiant exitance of a blackbody at the same temperature."^^qudt:LatexString ;
    qudt:latexSymbol "$\\varepsilon$"^^qudt:LatexString ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q899670> ;
    rdfs:comment "Applicable units are those of quantitykind:Emissivity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:EnergyDensityOfStates a qudt:QuantityKind ;
    rdfs:label "Energy Density of States"@en ;
    dcterms:description "\"Energy Density of States\" refers to electrons or other entities, e.g. phonons. It quantifies the numnber of states in an infitesimal energy range, per volume, and has dimensionality of inverse energy times inverse volume."^^qudt:LatexString ;
    qudt:applicableUnit unit:PER-EV-M3,
        unit:PER-J-M3 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-5I0M-1H0T2D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Density_of_states"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
    qudt:latexDefinition "$\\rho(E) = n_E(E) = \\frac{dN(E)}{dE}\\frac{1}{V}$, where $N(E)$ is the total number of states with energy less than $E$, and $V$ is the volume."^^qudt:LatexString ;
    qudt:plainTextDescription "\"Energy Density of States\" refers to electrons or other entities, e.g. phonons.  It quantifies the numnber of states in an infitesimal energy range, per volume, and has dimensionality of inverse energy times inverse volume."^^xsd:string ;
    qudt:symbol "n_E"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q105687031> ;
    rdfs:comment "Applicable units are those of quantitykind:EnergyDensityOfStates"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    rdfs:seeAlso quantitykind:VibrationalDensityOfStates .

quantitykind:EquilibriumConstant a qudt:QuantityKind ;
    rdfs:label "Equilibrium Constant"@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:informativeReference "http://en.wikipedia.org/wiki/Equilibrium_constant"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ;
    qudt:latexDefinition "$K^\\Theta = \\Pi_B(\\lambda_B^\\Theta)^{-\\nu_B}$, where $\\Pi_B$ denotes the product for all substances $B$, $\\lambda_B^\\Theta$ is the standard absolute activity of substance $B$, and $\\nu_B$ is the stoichiometric number of the substance $B$."^^qudt:LatexString ;
    qudt:latexSymbol "$K^\\Theta$"^^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:wikidataMatch <http://www.wikidata.org/entity/Q857809> ;
    rdfs:comment "Applicable units are those of quantitykind:EquilibriumConstant"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    rdfs:seeAlso quantitykind:EquilibriumConstantOnConcentrationBasis,
        quantitykind:EquilibriumConstantOnPressureBasis .

quantitykind:ExchangeIntegral a qudt:QuantityKind ;
    rdfs:label "Exchange Integral"@en ;
    dcterms:description "\"Exchange Integral\" is the constituent of the interaction energy between the spins of adjacent electrons in matter arising from the overlap of electron state functions."^^qudt:LatexString ;
    qudt:applicableUnit unit:J,
        unit:NanoJ,
        unit:PicoJ ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Exchange_interaction"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Exchange Integral\" is the constituent of the interaction energy between the spins of adjacent electrons in matter arising from the overlap of electron state functions."^^xsd:string ;
    qudt:symbol "K"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q10882959> ;
    rdfs:comment "Applicable units are those of quantitykind:ExchangeIntegral"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:ExposureRate a qudt:QuantityKind ;
    rdfs:label "Exposure Rate"@en ;
    dcterms:description "\"Exposure Rate\" expresses the rate of charge production per unit mass of air and is commonly expressed in roentgens per hour (R/h) or milliroentgens per hour (mR/h)."^^qudt:LatexString ;
    qudt:applicableUnit unit:C-PER-KiloGM-SEC,
        unit:R-PER-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L0I0M-1H0T0D0> ;
    qudt:iec61360Code "0112/2///62720#UAD050"^^xsd:string ;
    qudt:informativeReference "http://hps.org/publicinformation/ate/faqs/gammaandexposure.html"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD050"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:latexDefinition "$\\dot{X} = \\frac{dX}{dt}$, where $X$ is the increment of exposure during time interval with duration $t$."^^qudt:LatexString ;
    qudt:latexSymbol "$\\dot{X}$"^^qudt:LatexString ;
    qudt:plainTextDescription "\"Exposure Rate\" expresses the rate of charge production per unit mass of air and is commonly expressed in roentgens per hour (R/h) or milliroentgens per hour (mR/h)."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q99720212> ;
    rdfs:comment "Applicable units are those of quantitykind:ExposureRate"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:Fluidity a qudt:QuantityKind ;
    rdfs:label "fluidity"^^xsd:string,
        "fluidity"@en-us ;
    dcterms:description "fluidity of a material as complement of the dynamic viscosity"@en ;
    qudt:applicableUnit unit:PERCENT-FT2-PER-LB_F-SEC,
        unit:PERCENT-IN2-PER-LB_F-SEC,
        unit:RHE ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M-1H0T1D0> ;
    qudt:iec61360Code "0112/2///62720#UAD264"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD264"^^xsd:anyURI ;
    qudt:plainTextDescription "Fließvermögen eines Stoffes als Kehrwert der dynamischen Viskosität"@de ;
    qudt:symbol "0173-1#Z4-BAJ447#001"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Fluidity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:Friction a qudt:QuantityKind ;
    rdfs:label "Friction"@en ;
    dcterms:description "\"Friction\" is the force of two surfaces In contact, or the force of a medium acting on a moving object (that is air on an aircraft). When contacting surfaces move relative to each other, the friction between the two objects converts kinetic energy into thermal energy."^^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,
        "http://wiki.answers.com/Q/What_is_the_symbol_of_friction"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Friction\" is the force of two surfaces In contact, or the force of a medium acting on a moving object (that is air on an aircraft). When contacting surfaces move relative to each other, the friction between the two objects converts kinetic energy into thermal energy."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q82580> ;
    rdfs:comment "Applicable units are those of quantitykind:Force"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader quantitykind:Force .

quantitykind:Illuminance a qudt:QuantityKind ;
    rdfs:label "شدة الضوء"@ar,
        "Осветеност"@bg,
        "Intenzita osvětlení"@cs,
        "Beleuchtungsstärke"@de,
        "illuminance"@en,
        "luminosidad"@es,
        "شدت روشنایی"@fa,
        "éclairement lumineux"@fr,
        "הארה (שטף ליחידת שטח)"@he,
        "प्रदीपन"@hi,
        "megvilágítás"@hu,
        "illuminamento"@it,
        "照度"@ja,
        "Pencahayaan"@ms,
        "natężenie oświetlenia"@pl,
        "iluminamento"@pt,
        "iluminare"@ro,
        "Освещённость"@ru,
        "osvetljenost"@sl,
        "aydınlanma şiddeti"@tr,
        "照度"@zh ;
    dcterms:description "Illuminance is the total luminous flux incident on a surface, per unit area. It is a measure of the intensity of the incident light, wavelength-weighted by the luminosity function to correlate with human brightness perception."^^qudt:LatexString ;
    qudt:applicableUnit unit:FC,
        unit:LUX,
        unit:PHOT ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Illuminance"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I1M0H0T0D0> ;
    qudt:iec61360Code "0112/2///62720#UAD062"^^xsd:string ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Illuminance"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD062"^^xsd:anyURI ;
    qudt:latexDefinition "$E_v = \\frac{d\\Phi}{dA}$, where $d\\Phi$ is the luminous flux incident on an element of the surface with area $dA$."^^qudt:LatexString ;
    qudt:plainTextDescription "Illuminance is the total luminous flux incident on a surface, per unit area. It is a measure of the intensity of the incident light, wavelength-weighted by the luminosity function to correlate with human brightness perception."^^xsd:string ;
    qudt:siExactMatch <https://si-digital-framework.org/quantities/ILLU> ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q194411> ;
    rdfs:comment "Applicable units are those of quantitykind:LuminousFluxPerArea"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:altLabel "éclairement"@fr ;
    skos:broader quantitykind:LuminousFluxPerArea .

quantitykind:InversePermittivity a qudt:QuantityKind ;
    rdfs:label "Inverse Permittivity"@en ;
    qudt:applicableUnit unit:M-PER-FARAD ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-2L3I0M1H0T-4D0> ;
    rdfs:comment "Applicable units are those of quantitykind:InversePermittivity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:InverseSquareMass a qudt:QuantityKind ;
    rdfs:label "Inverse Square Mass"@en ;
    qudt:applicableUnit unit:PER-KiloGM2,
        unit:PER-PlanckMass2 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M-2H0T0D0> ;
    rdfs:comment "Applicable units are those of quantitykind:InverseSquareMass"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:InverseSquareTime a qudt:QuantityKind ;
    rdfs:label "Inverse Square Time"@en ;
    qudt:applicableUnit unit:PER-SEC2 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-2D0> ;
    rdfs:comment "Applicable units are those of quantitykind:InverseSquareTime"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:InverseTemperature a qudt:QuantityKind ;
    rdfs:label "Inverse Temperature"@en ;
    qudt:applicableUnit unit:PER-DEG_F,
        unit:PER-K,
        unit:PER-MegaK ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H-1T0D0> ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q107028650> ;
    rdfs:comment "Applicable units are those of quantitykind:InverseTemperature"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:IsentropicExponent a qudt:QuantityKind ;
    rdfs:label "نسبة السعة الحرارية"@ar,
        "Poissonova konstanta"@cs,
        "Isentropenexponent"@de,
        "isentropic exponent"@en,
        "Coeficiente de dilatación adiabática"@es,
        "exposant isoentropique"@fr,
        "Coefficiente di dilatazione adiabatica"@it,
        "比熱比"@ja,
        "Wykładnik adiabaty"@pl,
        "Coeficiente de expansão adiabática"@pt,
        "Coeficient de transformare adiabatică"@ro,
        "Показатель адиабаты"@ru,
        "adiabatni eksponent"@sl,
        "ısı sığası oranı; adyabatik indeks"@tr,
        "绝热指数"@zh ;
    dcterms:description """
  $\\textit{Isentropic Exponent}$ is a variant of $\\textit{Specific Heat Ratio Capacities}$. 
  For an ideal gas $\\textit{Isentropic Exponent}$, $\\varkappa$. is equal to $\\gamma$,
   the ratio of its specific heat capacities $c_p$ and $c_v$ under steady pressure and volume.
  """^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.citizendium.org/wiki/Specific_heat_ratio"^^xsd:anyURI,
        "http://en.wikipedia.org/wiki/Compressibility"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ;
    qudt:latexDefinition "$\\varkappa = -\\frac{V}{p}\\left \\{  \\frac{\\partial p}{\\partial  V}\\right \\}_S$, where $V$ is volume, $p$ is pressure, and $S$ is entropy."^^qudt:LatexString ;
    qudt:latexSymbol "$\\varkappa$"^^qudt:LatexString ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q75775739> ;
    rdfs:comment "Applicable units are those of quantitykind:IsentropicExponent"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    rdfs:seeAlso quantitykind:IsentropicCompressibility ;
    skos:altLabel "indice adiabatique"@fr,
        "indice adiabatico"@it .

quantitykind:LevelWidth a qudt:QuantityKind ;
    rdfs:label "Level Width"@en ;
    dcterms:description "The \"Level Width\" is the uncertainty in the energy of a quantum-mechanical system having discrete energy levels in a state that is not strictly stationary. The system may be an atom, a molecule, or an atomic nucleus."^^qudt:LatexString ;
    qudt:applicableUnit unit:J,
        unit:NanoJ,
        unit:PicoJ ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:informativeReference "http://encyclopedia2.thefreedictionary.com/Level+Width"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:latexDefinition "$\\Gamma = \\frac{\\hbar}{\\tau}$, where $\\hbar$ is the reduced Planck constant and $\\tau$ is the mean lifetime."^^qudt:LatexString ;
    qudt:latexSymbol "$\\Gamma$"^^qudt:LatexString ;
    qudt:plainTextDescription "The \"Level Width\" is the uncertainty in the energy of a quantum-mechanical system having discrete energy levels in a state that is not strictly stationary. The system may be an atom, a molecule, or an atomic nucleus."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q98082340> ;
    rdfs:comment "Applicable units are those of quantitykind:LevelWidth"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:LinearEnergyTransfer a qudt:QuantityKind ;
    rdfs:label "Linear Energy Transfer"@en ;
    dcterms:description "\"Linear Energy Transfer\"  (LET) is the linear density of energy lost by a charged ionizing particle travelling through matter.Typically, this measure is used to quantify the effects of ionizing radiation on biological specimens or electronic devices."^^qudt:LatexString ;
    qudt:applicableUnit unit:J-PER-M,
        unit:KiloEV-PER-MicroM,
        unit:MegaEV-PER-CentiM ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Linear_energy_transfer"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-2D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Linear_energy_transfer"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:latexDefinition "For ionizing charged particles, $L_\\Delta = \\frac{dE_\\Delta}{dl}$, where $dE_\\Delta$ is the mean energy lost in elctronic collisions locally to matter along a small path through the matter, minus the sum of the kinetic energies of all the electrons released with kinetic energies in excess of $\\Delta$, and $dl$ is the length of that path."^^qudt:LatexString ;
    qudt:latexSymbol "$L_\\Delta$"^^qudt:LatexString,
        "$L_\\bigtriangleup$"^^qudt:LatexString ;
    qudt:plainTextDescription "\"Linear Energy Transfer\"  (LET) is the linear density of energy lost by a charged ionizing particle travelling through matter.Typically, this measure is used to quantify the effects of ionizing radiation on biological specimens or electronic devices."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q1699996> ;
    rdfs:comment "Applicable units are those of quantitykind:LinearEnergyTransfer"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:LinearLogarithmicRatio a qudt:QuantityKind ;
    rdfs:label "lineic logarithmic ratio"^^xsd:string ;
    qudt:applicableUnit unit:B-PER-M,
        unit:DeciB-PER-KiloM,
        unit:DeciB-PER-M ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H0T0D0> ;
    qudt:iec61360Code "0112/2///62720#UAD078"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD078"^^xsd:anyURI ;
    rdfs:comment "Applicable units are those of quantitykind:LinearLogarithmicRatio"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:LogarithmicFrequencyInterval a qudt:QuantityKind ;
    rdfs:label "Interval měření frekvence ?"@cs,
        "Frequenzmaßintervall"@de,
        "logarithmic frequency interval"@en,
        "فاصله فرکانس لگاریتمی"@fa,
        "intervalle de fréquence logarithmique"@fr,
        "intervallo logaritmico di frequenza"@it,
        "Selang kekerapan logaritma"@ms,
        "intervalo logarítmico de frequência"@pt,
        "частотный интервал"@ru,
        "logaritmik frekans aralığı"@tr,
        "对数频率间隔"@zh ;
    qudt:applicableUnit unit:OCT,
        unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:iec61360Code "0112/2///62720#UAD083"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD083"^^xsd:anyURI ;
    qudt:latexDefinition "$G = \\log_{2}(f2/f1)$, where $f1$ and $f2 \\geq f1$ are frequencies of two tones."^^qudt:LatexString ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q86499668> ;
    ns1:todo "belongs to SOQ-ISO"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:LogarithmicFrequencyInterval"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:LuminousFlux a qudt:QuantityKind ;
    rdfs:label "التدفق الضوئي"@ar,
        "Светлинен поток"@bg,
        "Světelný tok"@cs,
        "Lichtstrom"@de,
        "luminous flux"@en,
        "flujo luminoso"@es,
        "شار نوری"@fa,
        "flux lumineux"@fr,
        "שטף הארה"@he,
        "प्रकाशीय बहाव"@hi,
        "fényáram"@hu,
        "flusso luminoso"@it,
        "光束"@ja,
        "fluctús lucis"@la,
        "Fluks berluminositi"@ms,
        "strumień świetlny"@pl,
        "fluxo luminoso"@pt,
        "flux luminos"@ro,
        "Световой поток"@ru,
        "svetlobni tok"@sl,
        "işık akısı"@tr,
        "光通量"@zh ;
    dcterms:description """
  $\\textit{Luminous Flux}$, or $\\textit{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.
  """^^qudt:LatexString ;
    qudt:applicableUnit unit:KiloLM,
        unit:LM ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Luminous_flux"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I1M0H0T0D0> ;
    qudt:iec61360Code "0112/2///62720#UAD094"^^xsd:string ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Luminous_flux"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD094"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ;
    qudt:latexDefinition "$\\Phi_v = K_m \\int_{0}^{\\infty}{\\Phi_\\lambda(\\lambda)}{V(\\lambda)d\\lambda}$, where $K_m$ is the maximum spectral luminous efficacy, $\\Phi_\\lambda(\\lambda)$ is the spectral radiant flux, $V(\\lambda)$ is the spectral luminous efficiency, and $\\lambda$ is the wavelength."^^qudt:LatexString ;
    qudt:plainTextDescription "Luminous Flux or 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."^^xsd:string ;
    qudt:siExactMatch <https://si-digital-framework.org/quantities/LUFL> ;
    qudt:symbol "F"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q107780> ;
    rdfs:comment "Applicable units are those of quantitykind:LuminousFlux"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:MagnetizationField a qudt:QuantityKind ;
    rdfs:label "Magnetization Field"@en ;
    dcterms:description "The Magnetization Field is defined as the ratio of magnetic moment per unit volume. It is a vector-valued quantity."^^qudt:LatexString ;
    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:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L-1I0M0H0T0D0> ;
    qudt:plainTextDescription "The Magnetization Field is defined as the ratio of magnetic moment per unit volume. It is a vector-valued quantity."^^xsd:string ;
    qudt:symbol "M"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:LinearElectricCurrentDensity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader quantitykind:ElectricCurrentPerLength .

quantitykind:MassBasedBloodGlucoseLevel 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 ;
    qudt:applicableUnit unit:MilliGM-PER-DeciL ;
    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:comment "Applicable units are those of quantitykind:MassBasedBloodGlucoseLevel"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    rdfs:seeAlso quantitykind:BloodGlucoseLevel .

quantitykind:MassFractionOfDryMatter a qudt:QuantityKind ;
    rdfs:label "Mass Fraction of Dry Matter"@en ;
    dcterms:description "\"Mass Fraction of Dry Matter\" is one of a number of $\\textit{Concentration}$ quantities defined by ISO 80000."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ;
    qudt:latexDefinition "$w_d= 1 - w_{h2o}$, where $w_{h2o}$ is mass fraction of water."^^qudt:LatexString ;
    qudt:plainTextDescription "\"Mass Fraction of Dry Matter\" is one of a number of Concentration quantities defined by ISO 80000."^^xsd:string ;
    qudt:symbol "w_d"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q76379189> ;
    rdfs:comment "Applicable units are those of quantitykind:MassFractionOfDryMatter"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    rdfs:seeAlso quantitykind:MassFractionOfWater .

quantitykind:MassFractionOfWater a qudt:QuantityKind ;
    rdfs:label "Mass Fraction of Water"@en ;
    dcterms:description "\"Mass Fraction of Water\" is one of a number of $\\textit{Concentration}$ quantities defined by ISO 80000."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ;
    qudt:latexDefinition "$w_{H_2o} = \\frac{u}{1+u}$, where $u$ is mass ratio of water to dry water."^^qudt:LatexString ;
    qudt:plainTextDescription "Mass Fraction of Water is one of a number of Concentration quantities defined by ISO 80000."^^xsd:string ;
    qudt:symbol "w_{H_2o}"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q76379025> ;
    rdfs:comment "Applicable units are those of quantitykind:MassFractionOfWater"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    rdfs:seeAlso quantitykind:MassFractionOfDryMatter .

quantitykind:MassPerElectricCharge a qudt:QuantityKind ;
    rdfs:label "Mass per Electric Charge"@en ;
    dcterms:description "The mass-to-charge ratio ratio ($m/Q$) is a physical quantity that is widely used in the electrodynamics of charged particles, for example, in electron optics and ion optics. The importance of the mass-to-charge ratio, according to classical electrodynamics, is that two particles with the same mass-to-charge ratio move in the same path in a vacuum when subjected to the same electric and magnetic fields. Its SI units are $kg/C$, but it can also be measured in Thomson ($Th$)."^^qudt:LatexString ;
    qudt:applicableUnit unit:T-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-1L0I0M1H0T-1D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Mass-to-charge_ratio"^^xsd:anyURI ;
    rdfs:comment "Applicable units are those of quantitykind:MassPerElectricCharge"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:Mobility a qudt:QuantityKind ;
    rdfs:label "قابلية التحرك"@ar,
        "Beweglichkeit"@de,
        "mobility"@en,
        "movilidad"@es,
        "mobilité"@fr,
        "mobilità"@it,
        "移動度"@ja,
        "mobilność"@pl,
        "mobilidade"@pt,
        "迁移率"@zh ;
    dcterms:description "\"Mobility\" characterizes how quickly a particle can move through a metal or semiconductor, when pulled by an electric field. The average drift speed imparted to a charged particle in a medium by an electric field, divided by the electric field strength."^^qudt:LatexString ;
    qudt:applicableUnit unit:CentiM2-PER-V-SEC,
        unit:M2-PER-V-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L0I0M-1H0T2D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Electron_mobility"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:latexSymbol "$\\mu$"^^qudt:LatexString ;
    qudt:plainTextDescription "\"Mobility\" characterizes how quickly a particle can move through a metal or semiconductor, when pulled by an electric field. The average drift speed imparted to a charged particle in a medium by an electric field, divided by the electric field strength."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q900648> ;
    rdfs:comment "Applicable units are those of quantitykind:Mobility"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:altLabel "Mobilität"@de .

quantitykind:ModulusOfRotationalSubgradeReaction a qudt:QuantityKind ;
    rdfs:label "Modulus of Rotational Subgrade Reaction"@en ;
    dcterms:description "Modulus of Rotational Subgrade Reaction is a measure for modulus of rotational subgrade reaction, which expresses the rotational elastic bedding of a linear structural element per length, such as for a beam. It is typically measured in Nm/(m*rad)."^^qudt:LatexString ;
    qudt:applicableUnit unit:KiloN-M-PER-DEG-M,
        unit:N-M-PER-DEG-M,
        unit:N-M-PER-M-RAD ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-2D0> ;
    qudt:informativeReference "https://standards.buildingsmart.org/IFC/DEV/IFC4_2/FINAL/HTML/schema/ifcstructuralloadresource/lexical/ifcmodulusofrotationalsubgradereactionselect.htm"^^xsd:anyURI ;
    qudt:plainTextDescription "Modulus of Rotational Subgrade Reaction is a measure for modulus of rotational subgrade reaction, which expresses the rotational elastic bedding of a linear structural element per length, such as for a beam. It is typically measured in Nm/(m*rad)."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:ModulusOfRotationalSubgradeReaction"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader quantitykind:ForcePerAngle .

quantitykind:ModulusOfSubgradeReaction a qudt:QuantityKind ;
    rdfs:label "Modulus of Subgrade Reaction"@en ;
    dcterms:description "Modulus of Subgrade Reaction is a geotechnical measure describing interaction between foundation structures and the soil. May also be known as bedding measure. Usually measured in N/m3."^^qudt:LatexString ;
    qudt:applicableUnit unit:KiloN-PER-M3,
        unit:MegaN-PER-M3,
        unit:N-PER-M3 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M1H0T-2D0> ;
    qudt:informativeReference "https://standards.buildingsmart.org/IFC/DEV/IFC4_2/FINAL/HTML/schema/ifcstructuralloadresource/lexical/ifcmodulusofsubgradereactionselect.htm"^^xsd:anyURI ;
    qudt:plainTextDescription "Modulus of Subgrade Reaction is a geotechnical measure describing interaction between foundation structures and the soil. May also be known as bedding measure. Usually measured in N/m3."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:ModulusOfSubgradeReaction"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:MolarAbsorptionCoefficient a qudt:QuantityKind ;
    rdfs:label "Molar Absorption Coefficient"@en ;
    dcterms:description "\"Molar Absorption Coefficient\" is a spectrophotometric unit indicating the light a substance absorbs with respect to length, usually centimeters, and concentration, usually moles per liter."^^qudt:LatexString ;
    qudt:applicableUnit unit:M2-PER-MOL ;
    qudt:exactMatch quantitykind:MolarAttenuationCoefficient ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A-1E0L2I0M0H0T0D0> ;
    qudt:informativeReference "http://medical-dictionary.thefreedictionary.com/molar+absorption+coefficient"^^xsd:anyURI ;
    qudt:latexDefinition "$x = aV_m$, where $a$ is the linear absorption coefficient and $V_m$ is the molar volume."^^qudt:LatexString ;
    qudt:plainTextDescription "\"Molar Absorption Coefficient\" is a spectrophotometric unit indicating the light a substance absorbs with respect to length, usually centimeters, and concentration, usually moles per liter."^^xsd:string ;
    qudt:symbol "x"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q11784888> ;
    rdfs:comment "Applicable units are those of quantitykind:MolarAbsorptionCoefficient"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:MolarAttenuationCoefficient a qudt:QuantityKind ;
    rdfs:label "Molar Attenuation Coefficient"@en ;
    dcterms:description "\"Molar Attenuation Coefficient\" is a measurement of how strongly a chemical species or substance absorbs or scatters light at a given wavelength, per amount of substance."^^qudt:LatexString ;
    qudt:applicableUnit unit:M2-PER-MOL ;
    qudt:exactMatch quantitykind:MolarAbsorptionCoefficient ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A-1E0L2I0M0H0T0D0> ;
    qudt:iec61360Code "0112/2///62720#UAD120"^^xsd:string ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Mass_attenuation_coefficient"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD120"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:latexDefinition "$\\mu_c = -\\frac{\\mu}{c}$, where $\\mu$ is the linear attenuation coefficient and $c$ is the amount-of-substance concentration."^^qudt:LatexString ;
    qudt:latexSymbol "$\\mu_c$"^^qudt:LatexString ;
    qudt:plainTextDescription "\"Molar Attenuation Coefficient\" is a measurement of how strongly a chemical species or substance absorbs or scatters light at a given wavelength, per amount of substance."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q900239> ;
    rdfs:comment "Applicable units are those of quantitykind:MolarAttenuationCoefficient"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:closeMatch quantitykind:MassAttenuationCoefficient .

quantitykind:MolarFluxDensity a qudt:QuantityKind ;
    rdfs:label "Molar Flux Density"@en ;
    dcterms:description "the rate at which moles of a substance pass through a unit area per unit time. It is used for describing the flow of materials in terms of the transport of molecules or particles rather than bulk mass. The SI units are mol m-2 s-1"^^xsd:string ;
    qudt:applicableUnit unit:MilliMOL-PER-M2-HR,
        unit:NanoMOL-PER-M2-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L-2I0M0H0T-1D0> ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Mass_flux#Molar_fluxes"^^xsd:anyURI ;
    qudt:plainTextDescription "the rate at which moles of a substance pass through a unit area per unit time. It is used for describing the flow of materials in terms of the transport of molecules or particles rather than bulk mass. The SI units are mol m-2 s-1"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:MolarFluxDensity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:MultiplicationFactor a qudt:QuantityKind ;
    rdfs:label "Multiplication Factor"@en ;
    dcterms:description "The \"Multiplication Factor\" is the ratio of the total number of fission or fission-dependent neutrons produced in a time interval to the total number of neutrons lost by absorption and leakage during the same interval."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Neutron_multiplication_factor"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:plainTextDescription "The \"Multiplication Factor\" is the ratio of the total number of fission or fission-dependent neutrons produced in a time interval to the total number of neutrons lost by absorption and leakage during the same interval."^^xsd:string ;
    qudt:symbol "k"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q99440471> ;
    rdfs:comment "Applicable units are those of quantitykind:MultiplicationFactor"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:NuclearQuadrupoleMoment a qudt:QuantityKind ;
    rdfs:label "Nuclear Quadrupole Moment"@en ;
    dcterms:description "\"Nuclear Quadrupole Moment\" is a quantity that characterizes the deviation from spherical symmetry of the electrical charge distribution in an atomic nucleus."^^qudt:LatexString ;
    qudt:applicableUnit unit:KiloM2,
        unit:M2,
        unit:NanoM2 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T0D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Nuclear_quadrupole_resonance"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:latexDefinition "$Q = (\\frac{1}{e}) \\int (3z^2 - r^2)\\rho(x, y, z)dV$, in the quantum state with the nuclear spin in the field direction $(z)$, where $\\rho(x, y, z)$ is the nuclear electric charge density, $e$ is the elementary charge, $r^2 = x^2 + y^2 + z^2$, and $dV$ is the volume element $dx$ $dy$ $dz$."^^qudt:LatexString ;
    qudt:plainTextDescription "\"Nuclear Quadrupole Moment\" is a quantity that characterizes the deviation from spherical symmetry of the electrical charge distribution in an atomic nucleus."^^xsd:string ;
    qudt:symbol "Q"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q97921226> ;
    rdfs:comment "Applicable units are those of quantitykind:NuclearQuadrupoleMoment"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:OpeningRatio a qudt:QuantityKind ;
    rdfs:label "Opening Ratio"@en ;
    dcterms:description """In the context of mechanical systems, "opening ratio" might refer to the proportion of time 
  or the extent to which a valve or gate is open relative to its maximum capacity."""^^xsd:string ;
    qudt:applicableUnit unit:FRACTION,
        unit:NUM,
        unit:PERCENT ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:plainTextDescription """In the context of mechanical systems, "opening ratio" might refer to the proportion of time 
  or the extent to which a valve or gate is open relative to its maximum capacity."""^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:OpeningRatio"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader quantitykind:DimensionlessRatio .

quantitykind:PhaseSpeedOfSound a qudt:QuantityKind ;
    rdfs:label "Phase speed of sound"@en ;
    dcterms:description "In a dispersive medium sound speed is a function of sound frequency, through the dispersion relation. The spatial and temporal distribution of a propagating disturbance will continually change. Each frequency component propagates at its own Phase Velocity of Sound."^^qudt:LatexString ;
    qudt:applicableUnit unit:GigaHZ-M,
        unit:KiloHZ-M ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T-1D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Speed_of_sound"^^xsd:anyURI ;
    qudt:latexDefinition "$c = \\frac{\\omega}{k} = \\lambda f$, where $\\omega$ is the angular frequency, $k$ is angular wavenumber, $\\lambda$ is the wavelength, and $f$ is the frequency."^^qudt:LatexString ;
    qudt:plainTextDescription "In a dispersive medium sound speed is a function of sound frequency, through the dispersion relation. The spatial and temporal distribution of a propagating disturbance will continually change. Each frequency component propagates at its own Phase Velocity of Sound."^^xsd:string ;
    qudt:symbol "c"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q86501878> ;
    ns1:todo "belongs to SOQ-ISO"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:PhaseSpeedOfSound"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader quantitykind:SpeedOfSound .

quantitykind:PoyntingVector a qudt:QuantityKind ;
    rdfs:label "متجَه بوينتنج"@ar,
        "Poynting-Vektor"@de,
        "Poynting vector"@en,
        "vector de Poynting"@es,
        "vecteur de Poynting"@fr,
        "vettore di Poynting"@it,
        "ポインティングベクトル"@ja,
        "wektor Poyntinga"@pl,
        "vector de Poynting"@pt,
        "вектор Пойнтинга"@ru ;
    dcterms:description """
  A $\\textit{Poynting Vector}$ is the vector product of the electric field strength $\\mathbf{E}$
   and the magnetic field strength $\\mathbf{H}$ of the electromagnetic field at a given point. 
  The flux of the Poynting vector through a closed surface is equal to the electromagnetic power passing
   through this surface. 
  For a periodic electromagnetic field, the time average of the Poynting vector is a vector of which,
   with certain reservations, the direction may be considered as being the direction of propagation
   of electromagnetic energy and the magnitude considered as being the average electromagnetic power
   flux density.
  """^^qudt:LatexString ;
    qudt:applicableUnit unit:NanoW-PER-M2,
        unit:W-PER-M2 ;
    qudt:expression "$poynting-vector$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-3D0> ;
    qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=121-11-66"^^xsd:anyURI,
        "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ;
    qudt:latexDefinition "$\\mathbf{S} = \\mathbf{E}  \\times \\mathbf{H} $, where $\\mathbf{E}$ is electric field strength and \\mathbf{H}  is magnetic field strength."^^qudt:LatexString ;
    qudt:latexSymbol "$\\mathbf{S} $"^^qudt:LatexString ;
    qudt:plainTextDescription "\"Poynting Vector\" is the vector product of the electric field strength $\\mathbf{E}$ and the magnetic field strength $\\mathbf{H}\" of the electromagnetic field at a given point. The flux of the Poynting vector through a closed surface is equal to the electromagnetic power passing through this surface. For a periodic electromagnetic field, the time average of the Poynting vector is a vector of which, with certain reservations, the direction may be considered as being the direction of propagation of electromagnetic energy and the magnitude considered as being the average electromagnetic power flux density."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q504186> ;
    rdfs:comment "Applicable units are those of quantitykind:PoyntingVector"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:PressureInRelationToVolumeFlowRate a qudt:QuantityKind ;
    rdfs:label "pressure in relation to volume flow rate"^^xsd:string ;
    qudt:applicableUnit unit:DYN-SEC-PER-CentiM5,
        unit:PA-SEC-PER-L,
        unit:PA-SEC-PER-M3 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-4I0M1H0T-1D0> ;
    qudt:iec61360Code "0112/2///62720#UAD145"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD145"^^xsd:anyURI ;
    rdfs:comment "Applicable units are those of quantitykind:PressureInRelationToVolumeFlowRate"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:QualityFactor a qudt:QuantityKind ;
    rdfs:label "Quality Factor"@en ;
    dcterms:description "\"Quality Factor\", of a resonant circuit, is a measure of the \"goodness\" or quality of a resonant circuit. A higher value for this figure of merit correspondes to a more narrow bandwith, which is desirable in many applications. More formally, $Q$ is the ratio of power stored to power dissipated in the circuit reactance and resistance, respectively"^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.sourcetronic.com/electrical-measurement-glossary/quality-factor.html"^^xsd:anyURI,
        "http://www.allaboutcircuits.com/vol_2/chpt_6/6.html"^^xsd:anyURI,
        "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ;
    qudt:latexDefinition "If $\\underline{Z} = R + jX$, then $Q = \\left | X \\right |/R$, where $\\underline{Z}$ is impedance, $R$ is resistance, and $X$ is reactance."^^qudt:LatexString ;
    qudt:symbol "Q"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q79467569> ;
    ns1:todo "Resolve Quality Facor - electronics and also doses"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:QualityFactor"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    rdfs:seeAlso quantitykind:Impedance,
        quantitykind:Resistance .

quantitykind:Radiance a qudt:QuantityKind ;
    rdfs:label "Radiance"@en ;
    dcterms:description "\"Radiance\" is a radiometric measure that describes the amount of light that passes through or is emitted from a particular area, and falls within a given solid angle in a specified direction."^^qudt:LatexString ;
    qudt:applicableUnit unit:W-PER-M2-SR ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-3D0> ;
    qudt:iec61360Code "0112/2///62720#UAD148"^^xsd:string ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Radiance"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD148"^^xsd:anyURI ;
    qudt:latexDefinition "$L = \\frac{dI}{dA}\\frac{1}{cos\\alpha}$, where $dI$ is the radiant intensity emitted from an element of the surface area $dA$, and angle $\\alpha$ is the angle between the normal to the surface and the given direction."^^qudt:LatexString ;
    qudt:plainTextDescription "\"Radiance\" is a radiometric measure that describes the amount of light that passes through or is emitted from a particular area, and falls within a given solid angle in a specified direction."^^xsd:string ;
    qudt:siExactMatch <https://si-digital-framework.org/quantities/RADI> ;
    qudt:symbol "L"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q1411145> ;
    rdfs:comment "Applicable units are those of quantitykind:Radiance"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader quantitykind:PowerPerAreaAngle .

quantitykind:Radius a qudt:QuantityKind ;
    rdfs:label "Radius"@en ;
    dcterms:description "In classical geometry, the \"Radius\" of a circle or sphere is any line segment from its center to its perimeter the radius of a circle or sphere is the length of any such segment."^^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/Radius"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Radius"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ;
    qudt:latexDefinition "$r = \\frac{d}{2}$, where $d$ is the circle diameter."^^qudt:LatexString ;
    qudt:plainTextDescription "In classical geometry, the \"Radius\" of a circle or sphere is any line segment from its center to its perimeter the radius of a circle or sphere is the length of any such segment."^^xsd:string ;
    qudt:symbol "r"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q173817> ;
    rdfs:comment "Applicable units are those of quantitykind:Length"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader quantitykind:Length .

quantitykind:RateOfChange a qudt:QuantityKind ;
    rdfs:label "Rate of Change"@en ;
    qudt:applicableUnit unit:PERCENT-PER-SEC,
        unit:PERCENT-PER-WK,
        unit:PERCENT-PER-YR ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:plainTextDescription "Rate of Change is a dimensionless change per unit time, such as a percentage change per second."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:RateOfChange"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader quantitykind:InverseTime .

quantitykind:Reactance a qudt:QuantityKind ;
    rdfs:label "Reactance"@en ;
    dcterms:description """
  $\\textit{Reactance}$ is the opposition of a circuit element to a change of electric current or voltage,
   due to that element's inductance or capacitance. 
  A built-up electric field resists the change of voltage on the element,
   while a magnetic field resists the change of current. 
  The notion of reactance is similar to electrical resistance, but they differ in several respects. 
  Capacitance and inductance are inherent properties of an element, just like resistance.
  """^^qudt:LatexString ;
    qudt:applicableUnit unit:OHM ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Electrical_reactance"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-2L2I0M1H0T-3D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Electrical_reactance?oldid=494180019"^^xsd:anyURI,
        "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=131-12-46"^^xsd:anyURI,
        "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ;
    qudt:latexDefinition "$X = im \\underline{Z}$, where $\\underline{Z}$ is impedance and $im$ denotes the imaginary part."^^qudt:LatexString ;
    qudt:plainTextDescription "\"Reactance\" is the opposition of a circuit element to a change of electric current or voltage, due to that element's inductance or capacitance. A built-up electric field resists the change of voltage on the element, while a magnetic field resists the change of current. The notion of reactance is similar to electrical resistance, but they differ in several respects. Capacitance and inductance are inherent properties of an element, just like resistance."^^xsd:string ;
    qudt:symbol "X"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Reactance"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    rdfs:seeAlso quantitykind:Impedance .

quantitykind:Reluctance a qudt:QuantityKind ;
    rdfs:label "Reluctance"@en ;
    dcterms:description "\"Reluctance\" or magnetic resistance, is a concept used in the analysis of magnetic circuits. It is analogous to resistance in an electrical circuit, but rather than dissipating electric energy it stores magnetic energy. In likeness to the way an electric field causes an electric current to follow the path of least resistance, a magnetic field causes magnetic flux to follow the path of least magnetic reluctance. It is a scalar, extensive quantity, akin to electrical resistance."^^qudt:LatexString ;
    qudt:applicableUnit unit:PER-H ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E2L-2I0M-1H0T2D0> ;
    qudt:iec61360Code "0112/2///62720#UAD159"^^xsd:string ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Magnetic_reluctance"^^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%23UAD159"^^xsd:anyURI ;
    qudt:latexDefinition "$R_m = \\frac{U_m}{\\Phi}$, where $U_m$ is magnetic tension, and $\\Phi$ is magnetic flux."^^qudt:LatexString ;
    qudt:plainTextDescription "\"Reluctance\" or magnetic resistance, is a concept used in the analysis of magnetic circuits. It is analogous to resistance in an electrical circuit, but rather than dissipating electric energy it stores magnetic energy. In likeness to the way an electric field causes an electric current to follow the path of least resistance, a magnetic field causes magnetic flux to follow the path of least magnetic reluctance. It is a scalar, extensive quantity, akin to electrical resistance."^^xsd:string ;
    qudt:symbol "R_m"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Reluctance"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    rdfs:seeAlso quantitykind:MagneticFlux,
        quantitykind:MagneticTension .

quantitykind:Repetency a qudt:QuantityKind ;
    rdfs:label "repetency"^^xsd:string,
        "repetency"@en-us ;
    dcterms:description "quantity whose value  is inversely proportional to the length value"@en ;
    qudt:applicableUnit unit:PER-IN,
        unit:PERCENT-PER-IN,
        unit:PERCENT-PER-MilliM ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H0T0D0> ;
    qudt:iec61360Code "0112/2///62720#UAD160"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD160"^^xsd:anyURI ;
    qudt:plainTextDescription "Größe, deren Wert sich umgekehrt proportional zum Längenwert verhält"@de ;
    qudt:symbol "0173-1#Z4-BAJ370#002"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Repetency"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:ResidualResistivity a qudt:QuantityKind ;
    rdfs:label "Residual Resistivity"@en ;
    dcterms:description "\"Residual Resistivity\" for metals, is the resistivity extrapolated to zero thermodynamic temperature."^^qudt:LatexString ;
    qudt:applicableUnit unit:MegaOHM-KiloM,
        unit:OHM-KiloM,
        unit:OHM-M ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-2L3I0M1H0T-3D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Residual-resistance_ratio"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
    qudt:latexSymbol "$\\rho_R$"^^qudt:LatexString ;
    qudt:plainTextDescription "\"Residual Resistivity\" for metals, is the resistivity extrapolated to zero thermodynamic temperature."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q25098876> ;
    rdfs:comment "Applicable units are those of quantitykind:ResidualResistivity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:Rotary-TranslatoryMotionConversion a qudt:QuantityKind ;
    rdfs:label "rotary-translatory motion conversion"^^xsd:string ;
    qudt:applicableUnit unit:IN-PER-REV,
        unit:M-PER-RAD ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:iec61360Code "0112/2///62720#UAD163"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD163"^^xsd:anyURI ;
    rdfs:comment "Applicable units are those of quantitykind:Rotary-TranslatoryMotionConversion"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:ServiceFactor a qudt:QuantityKind ;
    rdfs:label "Service Factor"@en ;
    dcterms:description "The value indicates the multiplier of the rated power that equipment can handle for some period of time when operating according to a manufacturer's specified conditions; typically applicable to motors."^^qudt:LatexString ;
    qudt:applicableUnit unit:FRACTION,
        unit:PERCENT,
        unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:plainTextDescription "The value indicates the multiplier of the rated power that equipment can handle for some period of time when operating according to a manufacturer's specified conditions; typically applicable to motors."^^xsd:string ;
    qudt:symbol "SF"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:ServiceFactor"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader quantitykind:DimensionlessRatio .

quantitykind:SoundParticleVelocity a qudt:QuantityKind ;
    rdfs:label "سرعة جسيم"@ar,
        "Schallschnelle"@de,
        "sound particle velocity"@en,
        "velocidad acústica de una partícula"@es,
        "vitesse  acoustique d‘une particule"@fr,
        "velocità di spostamento"@it,
        "粒子速度"@ja,
        "prędkość akustyczna"@pl,
        "velocidade acústica de uma partícula"@pt ;
    dcterms:description "Sound Particle velocity is the velocity v of a particle (real or imagined) in a medium as it transmits a wave. In many cases this is a longitudinal wave of pressure as with sound, but it can also be a transverse wave as with the vibration of a taut string. When applied to a sound wave through a medium of a fluid like air, particle velocity would be the physical speed of a parcel of fluid as it moves back and forth in the direction the sound wave is travelling as it passes."^^qudt:LatexString ;
    qudt:applicableUnit unit:GigaHZ-M,
        unit:KiloHZ-M ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T-1D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Particle_velocity"^^xsd:anyURI ;
    qudt:latexDefinition "$v = \\frac{\\partial\\delta }{\\partial t}$, where $\\delta$ is sound particle displacement and $t$ is time."^^qudt:LatexString ;
    qudt:plainTextDescription "Sound Particle velocity is the velocity v of a particle (real or imagined) in a medium as it transmits a wave. In many cases this is a longitudinal wave of pressure as with sound, but it can also be a transverse wave as with the vibration of a taut string. When applied to a sound wave through a medium of a fluid like air, particle velocity would be the physical speed of a parcel of fluid as it moves back and forth in the direction the sound wave is travelling as it passes."^^xsd:string ;
    qudt:symbol "v"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q336894> ;
    ns1:todo "belongs to SOQ-ISO"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:SoundParticleVelocity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:altLabel "prędkość cząstki"@pl ;
    skos:broader quantitykind:Velocity .

quantitykind:SpecificAcousticImpedance a qudt:QuantityKind ;
    rdfs:label "Specific Acoustic Impedance"@en ;
    qudt:applicableUnit unit:N-SEC-PER-M3,
        unit:RAYL,
        unit:RAYL_MKS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M1H0T-1D0> ;
    rdfs:comment "Applicable units are those of quantitykind:SpecificAcousticImpedance"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:SpecificHeatPressure a qudt:QuantityKind ;
    rdfs:label "Specific Heat Pressure"@en ;
    dcterms:description "Specific heat at a constant pressure."^^qudt:LatexString ;
    qudt:applicableUnit unit:J-PER-KiloGM-K-PA ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M-1H-1T0D0> ;
    qudt:plainTextDescription "Specific heat at a constant pressure."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:SpecificHeatPressure"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:SpecificHeatVolume a qudt:QuantityKind ;
    rdfs:label "Specific Heat Volume"@en ;
    dcterms:description "Specific heat per constant volume."^^qudt:LatexString ;
    qudt:applicableUnit unit:J-PER-KiloGM-K-M3 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H-1T-2D0> ;
    qudt:plainTextDescription "Specific heat per constant volume."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:SpecificHeatVolume"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:SpecificModulus a qudt:QuantityKind ;
    rdfs:label "Specific Modulus"@en ;
    dcterms:description "<p><b>Specific modulus</b> is a <a href=\"/wiki/Materials_property\" class=\"mw-redirect\" title=\"Materials property\">materials property</a> consisting of the <a href=\"/wiki/Elastic_modulus\" title=\"Elastic modulus\">elastic modulus</a> per mass <a href=\"/wiki/Density\" title=\"Density\">density</a> of a material. It is also known as the <b>stiffness to weight ratio</b> or <b>specific stiffness</b>. High specific modulus materials find wide application in <a href=\"/wiki/Aerospace\" title=\"Aerospace\">aerospace</a> applications where minimum structural <a href=\"/wiki/Weight\" title=\"Weight\">weight</a> is required. The <a href=\"/wiki/Dimensional_analysis\" title=\"Dimensional analysis\">dimensional analysis</a> yields units of distance squared per time squared.</p>"^^qudt:LatexString ;
    qudt:applicableUnit unit:GigaPA-CentiM3-PER-GM,
        unit:KiloM2-PER-SEC2,
        unit:M2-PER-SEC2 ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Specific_modulus"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T-2D0> ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Specific_modulus"^^xsd:anyURI ;
    qudt:latexDefinition "$specific modulus = E/\\rho$, where $E$ is elastic modulus and $\\rho$ is density."^^qudt:LatexString ;
    rdfs:comment "Applicable units are those of quantitykind:SpecificModulus"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:altLabel "Specific Stiffness"@en,
        "Stiffness to Weight Ratio"@en .

quantitykind:SpecificSurfaceArea a qudt:QuantityKind ;
    rdfs:label "Specific Surface Area"@en ;
    dcterms:description "<strong>Specific surface area</strong> (<strong>SSA</strong>) is a property of solids defined as the total surface area (SA) of a material per unit mass, (with units of m<sup>2</sup>/kg or m<sup>2</sup>/g). It is a physical value that can be used to determine the type and properties of a material (e.g. soil or snow). It has a particular importance for adsorption, heterogeneous catalysis, and reactions on surfaces."^^qudt:LatexString ;
    qudt:applicableUnit unit:CentiM2-PER-GM,
        unit:M2-PER-GM,
        unit:M2-PER-KiloGM ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M-1H0T0D0> ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Specific_surface_area"^^xsd:anyURI ;
    qudt:latexDefinition "$SSA = \\frac{SA}{\\m}$, where $SA$ is the surface area of an object and $\\m$ is the mass density of the object."^^qudt:LatexString ;
    qudt:latexSymbol "$SSA$"^^qudt:LatexString ;
    qudt:plainTextDescription "Specific surface area (SSA) is a property of solids defined as the total surface area (SA) of a material per unit mass, (with units of m²/kg or m²/g). It is a physical value that can be used to determine the type and properties of a material (e.g. soil or snow). It has a particular importance for adsorption, heterogeneous catalysis, and reactions on surfaces."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:SpecificSurfaceArea"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:SpeedOfSound a qudt:QuantityKind ;
    rdfs:label "سرعة الصوت"@ar,
        "rychlost zvuku"@cs,
        "Schallgeschwindigkeit"@de,
        "speed of sound"@en,
        "velocidad del sonido"@es,
        "سرعت صوت"@fa,
        "vitesse du son"@fr,
        "ध्वनि का वेग"@hi,
        "velocità del suono"@it,
        "音速"@ja,
        "Kelajuan bunyi"@ms,
        "prędkość dźwięku"@pl,
        "velocidade do som"@pt,
        "viteza sunetului"@ro,
        "скорость звука"@ru,
        "Hitrost zvoka"@sl,
        "Ses hızı"@tr,
        "音速"@zh ;
    dcterms:description "The speed of sound is the distance travelled during a unit of time by a sound wave propagating through an elastic medium."^^qudt:LatexString ;
    qudt:applicableUnit unit:BFT,
        unit:FT3-PER-MIN-FT2,
        unit:GigaHZ-M,
        unit:HZ-M,
        unit:IN-PER-YR,
        unit:M-PER-SEC,
        unit:MegaHZ-M,
        unit:MicroM-PER-MIN,
        unit:MicroM-PER-SEC,
        unit:YD-PER-HR,
        unit:YD-PER-MIN,
        unit:YD-PER-SEC ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Speed_of_sound"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T-1D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Speed_of_sound"^^xsd:anyURI ;
    qudt:latexDefinition "$c = \\sqrt{\\frac{K}{\\rho}}$, where $K$ is the coefficient of stiffness, the bulk modulus (or the modulus of bulk elasticity for gases), and $\\rho$ is the density. Also, $c^2 = \\frac{\\partial p}{\\partial \\rho}$, where $p$ is the pressure and $\\rho$ is the density."^^qudt:LatexString ;
    qudt:plainTextDescription "The speed of sound is the distance travelled during a unit of time by a sound wave propagating through an elastic medium."^^xsd:string ;
    qudt:symbol "c"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q124003> ;
    ns1:todo "belongs to SOQ-ISO"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Speed"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:altLabel "Schallausbreitungsgeschwindigkeit"@de,
        "célérité du son"@fr ;
    skos:broader quantitykind:Speed .

quantitykind:Strain a qudt:QuantityKind ;
    rdfs:label "Strain"@en ;
    dcterms:description "In any branch of science dealing with materials and their behaviour, strain is the geometrical expression of deformation caused by the action of stress on a physical body. Strain is calculated by first assuming a change between two body states: the beginning state and the final state. Then the difference in placement of two points in this body in those two states expresses the numerical value of strain. Strain therefore expresses itself as a change in size and/or shape. [Wikipedia]"^^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/Strain"^^xsd:anyURI ;
    qudt:exactMatch quantitykind:LinearStrain ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://www.freestudy.co.uk/mech%20prin%20h2/stress.pdf"^^xsd:anyURI ;
    qudt:latexSymbol "$\\epsilon$"^^qudt:LatexString ;
    qudt:plainTextDescription "In any branch of science dealing with materials and their behaviour, strain is the geometrical expression of deformation caused by the action of stress on a physical body. Strain is calculated by first assuming a change between two body states: the beginning state and the final state. Then the difference in placement of two points in this body in those two states expresses the numerical value of strain. Strain therefore expresses itself as a change in size and/or shape. [Wikipedia]"^^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 quantitykind:DimensionlessRatio .

quantitykind:StressIntensityFactor a qudt:QuantityKind ;
    rdfs:label "Stress Intensity Factor"@en ;
    dcterms:description "In fracture mechanics, the stress intensity factor (K) is used to predict the stress state (\"stress intensity\") near the tip of a crack or notch caused by a remote load or residual stresses. It is a theoretical construct usually applied to a homogeneous, linear elastic material and is useful for providing a failure criterion for brittle materials, and is a critical technique in the discipline of damage tolerance. The concept can also be applied to materials that exhibit small-scale yielding at a crack tip."^^qudt:LatexString ;
    qudt:applicableUnit unit:MegaPA-M0dot5,
        unit:PA-M0dot5 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-0dot5I0M1H0T-2D0> ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Stress_intensity_factor"^^xsd:anyURI ;
    qudt:latexSymbol "$\\K$"^^qudt:LatexString ;
    qudt:plainTextDescription "In fracture mechanics, the stress intensity factor (K) is used to predict the stress state (\"stress intensity\") near the tip of a crack or notch caused by a remote load or residual stresses. It is a theoretical construct usually applied to a homogeneous, linear elastic material and is useful for providing a failure criterion for brittle materials, and is a critical technique in the discipline of damage tolerance. The concept can also be applied to materials that exhibit small-scale yielding at a crack tip."^^xsd:string ;
    qudt:symbol "K"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:StressIntensityFactor"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:ThermodynamicEnergy a qudt:QuantityKind ;
    rdfs:label "Thermodynamic Energy"@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:exactMatch quantitykind:EnergyInternal,
        quantitykind:InternalEnergy ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ;
    qudt:latexDefinition "For a closed thermodynamic system, $\\Delta U = Q + W$, where $Q$ is amount of heat transferred to the system and $W$ is work done on the system provided that no chemical reactions occur."^^qudt:LatexString ;
    qudt:symbol "U"^^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 quantitykind:Energy .

quantitykind:ThrusterPowerToThrustEfficiency a qudt:QuantityKind ;
    rdfs:label "Thruster Power To Thrust Efficiency"@en ;
    qudt:applicableUnit unit:LB-PER-HR-PSI,
        unit:LB-PER-MIN-PSI,
        unit:LB-PER-SEC-PSI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T1D0> ;
    qudt:latexSymbol "$\\eta$"^^qudt:LatexString ;
    rdfs:comment "Applicable units are those of quantitykind:ThrusterPowerToThrustEfficiency"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:TotalMassStoppingPower a qudt:QuantityKind ;
    rdfs:label "Total Mass Stopping Power"@en ;
    dcterms:description "If a substance is compared in gaseous and solid form, then the linear stopping powers of the two states are very different just because of the different density. One therefore often divides S(E) by the density of the material to obtain the \"Mass Stopping Power\". The mass stopping power then depends only very little on the density of the material."^^qudt:LatexString ;
    qudt:applicableUnit unit:ERG-CentiM2-PER-GM,
        unit:EV-M2-PER-KiloGM,
        unit:J-M2-PER-KiloGM ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L4I0M0H0T-2D0> ;
    qudt:iec61360Code "0112/2///62720#UAD204"^^xsd:string ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Stopping_power_(particle_radiation)"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD204"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:latexDefinition "$S_m = \\frac{S}{\\rho}$, where $S$ is the total linear stopping power and $\\rho$ is the mass density of the sample."^^qudt:LatexString ;
    qudt:plainTextDescription "If a substance is compared in gaseous and solid form, then the linear stopping powers of the two states are very different just because of the different density. One therefore often divides S(E) by the density of the material to obtain the \"Mass Stopping Power\". The mass stopping power then depends only very little on the density of the material."^^xsd:string ;
    qudt:symbol "S_m"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q98642795> ;
    rdfs:comment "Applicable units are those of quantitykind:TotalMassStoppingPower"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:VehicleVelocity a qudt:QuantityKind ;
    rdfs:label "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"^^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 quantitykind:Velocity .

quantitykind:VibrationalDensityOfStates a qudt:QuantityKind ;
    rdfs:label "Vibrational density of states"@en ;
    dcterms:description "\"Vibrational 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 ;
    qudt:applicableUnit unit:SEC-PER-RAD-M3 ;
    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:comment "Applicable units are those of quantitykind:VibrationalDensityOfStates"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    rdfs:seeAlso quantitykind:EnergyDensityOfStates .

quantitykind:VoltagePhasor a qudt:QuantityKind ;
    rdfs:label "Voltage Phasor"@en ;
    dcterms:description "\"Voltage Phasor\" is a representation of voltage as a sinusoidal integral quantity using a complex quantity whose argument is equal to the initial phase and whose modulus is equal to the root-mean-square value. A phasor is a constant complex number, usually expressed in exponential form, representing the complex amplitude (magnitude and phase) of a sinusoidal function of time. Phasors are used by electrical engineers to simplify computations involving sinusoids, where they can often reduce a differential equation problem to an algebraic one."^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-1L2I0M1H0T-3D0> ;
    qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=131-11-26"^^xsd:anyURI,
        "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ;
    qudt:latexDefinition "When $u = \\hat{U} \\cos{(\\omega t + \\alpha)}$, where $u$ is the voltage, $\\omega$ is angular frequency, $t$ is time, and $\\alpha$ is initial phase, then $\\underline{U} = Ue^{ja}$."^^qudt:LatexString ;
    qudt:latexSymbol "$\\underline{U}$"^^qudt:LatexString ;
    qudt:plainTextDescription "\"Voltage Phasor\" is a representation of voltage as a sinusoidal integral quantity using a complex quantity whose argument is equal to the initial phase and whose modulus is equal to the root-mean-square value. A phasor is a constant complex number, usually expressed in exponential form, representing the complex amplitude (magnitude and phase) of a sinusoidal function of time. Phasors are used by electrical engineers to simplify computations involving sinusoids, where they can often reduce a differential equation problem to an algebraic one."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q78514605> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

quantitykind:VolumicElectromagneticEnergy a qudt:QuantityKind ;
    rdfs:label "Volumic Electromagnetic Energy"@en ;
    dcterms:description "$\\textit{Volumic Electromagnetic Energy}$, also known as the $\\textit{Electromagnetic Energy Density}$, is the energy associated with an electromagnetic field, per unit volume of the field."^^qudt:LatexString ;
    qudt:applicableUnit unit:J-PER-M3 ;
    qudt:exactMatch quantitykind:ElectromagneticEnergyDensity ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-2D0> ;
    qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=121-11-64"^^xsd:anyURI,
        "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ;
    qudt:latexDefinition "$w = (1/2) ( \\mathbf{E} \\cdot \\mathbf{D} + \\mathbf{B} \\cdot \\mathbf{H})$, where $\\mathbf{E}$ is electric field strength, $\\mathbf{D}$ is electric flux density, $\\mathbf{M}$ is magnetic flux density, and $\\mathbf{H}$ is magnetic field strength."^^qudt:LatexString ;
    qudt:latexSymbol "$w$"^^qudt:LatexString ;
    rdfs:comment "Applicable units are those of quantitykind:VolumicElectromagneticEnergy"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    rdfs:seeAlso quantitykind:ElectricFieldStrength,
        quantitykind:ElectricFluxDensity,
        quantitykind:MagneticFieldStrength,
        quantitykind:MagneticFluxDensity .

quantitykind:Work a qudt:QuantityKind ;
    rdfs:label "práce"@cs,
        "Arbeit"@de,
        "work"@en,
        "trabajo"@es,
        "کار"@fa,
        "travail"@fr,
        "कार्य"@hi,
        "lavoro"@it,
        "仕事量"@ja,
        "kerja"@ms,
        "praca"@pl,
        "trabalho"@pt,
        "lucru mecanic"@ro,
        "delo"@sl,
        "iş"@tr,
        "功"@zh ;
    dcterms:description """
  $\\textit{Work}$ or $net\\ work$ is equal to the change in kinetic energy. 
  This relationship is called the work-energy theorem: 
  $$Wnet = K. E._f  K. E._o $$
   where $K. E._f$ is the final kinetic energy and $K. E._o$ is the original kinetic energy. 
  Potential energy, also referred to as stored energy, is the ability of a system to do work due to its position or internal structure. 
  Change in potential energy is equal to work. 
  The potential energy equations can also be derived from the integral form of work:
  $$\\Delta P. E. = W = \\int  F \\cdot dx$$.
  """^^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_(physics)"^^xsd:anyURI,
        "http://www.cliffsnotes.com/study_guide/Work-and-Energy.topicArticleId-10453,articleId-10418.html"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ;
    qudt:latexDefinition "$A = \\int Pdt$, where $P$ is power and $t$ is time."^^qudt:LatexString ;
    qudt:plainTextDescription "A force is said to do Work when it acts on a body so that there is a displacement of the point of application, however small, in the direction of the force.  The concepts of work and energy are closely tied to the concept of force because an applied force can do work on an object and cause a change in energy. Energy is defined as the ability to do work. Work is done on an object when an applied force moves it through a distance. Kinetic energy is the energy of an object in motion. The net work is equal to the change in kinetic energy."^^xsd:string ;
    qudt:symbol "A"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q42213> ;
    rdfs:comment "Applicable units are those of quantitykind:Energy"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader quantitykind:Energy .

unit:A-M2-PER-J-SEC a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Ampere Square Metre per Joule Second"^^xsd:string,
        "Ампер Квадратен Метър на Джаул Секунда"@bg,
        "Ampér Čtvereční Metr na Joule Sekunda"@cs,
        "Ampere Quadratmeter pro Joule Sekunde"@de,
        "Αμπέρ Τετραγωνικό Μέτρο ανά Τζάουλ Δευτερόλεπτο"@el,
        "Ampere Square Metre per Joule Second"@en,
        "Ampere Square Meter per Joule Second"@en-us,
        "Amperio Metro Cuadrado por Julio Segundo"@es,
        "Ampère Mètre Carré par Joule Seconde"@fr,
        "Ampere Metro Quadrato per Joule Secondo"@it,
        "Amperium Metrum Quadratum per Joulium Secundum"@la,
        "Ampere Meter Persegi per Joule Saat"@ms,
        "Amper Metr Kwadratowy na Dżul Sekunda"@pl,
        "Ampere Metro Quadrado por Joule Segundo"@pt,
        "Amper Metru Pătrat pe Joule Secundă"@ro,
        "Ампер Квадратный Метр на Джоуль Секунда"@ru,
        "Amper Kvadratni Meter na Joule Sekunda"@sl,
        "Amper Metrekare per Joule Saniye"@tr ;
    dcterms:description "The SI unit of gyromagnetic ratio."^^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 "$A-m^2/J-s$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L0I0M-1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:J ],
        [ 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:A ] ;
    qudt:hasQuantityKind quantitykind:ElectricChargePerMass ;
    qudt:informativeReference "http://encyclopedia2.thefreedictionary.com/ampere+square+meter+per+joule+second"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:symbol "A·m²/(J·s)"^^xsd:string ;
    qudt:ucumCode "A.m2.J-1.s-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "A10"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q97540991> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:A-PER-J a qudt:Unit ;
    rdfs:label "Ampere per Joule"^^xsd:string,
        "Ампер на Джаул"@bg,
        "Ampér na Joule"@cs,
        "Ampere pro Joule"@de,
        "Αμπέρ ανά Τζάουλ"@el,
        "Ampere per Joule"@en,
        "Amperio por Julio"@es,
        "Ampère par Joule"@fr,
        "Ampere per Joule"@it,
        "Amperium per Joulium"@la,
        "Ampere per Joule"@ms,
        "Amper na Dżul"@pl,
        "Ampere por Joule"@pt,
        "Amper pe Joule"@ro,
        "Ампер на Джоуль"@ru,
        "Amper na Joule"@sl,
        "Amper per Joule"@tr ;
    dcterms:description """$\\textit{Ampere per Joule}$ is the inverse measure of $joule-per-ampere$ or $weber$. 
  The measure for the reciprical of magnetic flux.
  """^^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:derivedCoherentUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:expression "$A/J$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L-2I0M-1H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:J ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:A ] ;
    qudt:hasQuantityKind quantitykind:ElectricCurrentPerEnergy ;
    qudt:hasReciprocalUnit unit:WB ;
    qudt:symbol "A/J"^^xsd:string ;
    qudt:ucumCode "A.J-1"^^qudt:UCUMcs ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q30064159> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:ANGSTROM3 a qudt:Unit ;
    rdfs:label "Cubic Angstrom"^^xsd:string,
        "Cubic Angstrom"@en,
        "Cubic Angstrom"@en-us ;
    dcterms:description "A unit that is a non-SI unit, specifically a CGS unit,  of polarizability known informally as polarizability volume.  The SI defined units for polarizability are C*m^2/V and can be converted to $Angstr\\ddot{o}m$^3 by multiplying the SI value by 4 times pi times the vacuum permittivity and then converting the resulting m^3 to $Angstr\\ddot{o}m$^3 through the SI base 10 conversion (multiplying by 10^-30)."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS-GAUSS> ;
    qudt:conversionMultiplier 0.000000000000000000000000000001 ;
    qudt:conversionMultiplierSN 1e-30 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:ANGSTROM ] ;
    qudt:hasQuantityKind quantitykind:Volume ;
    qudt:symbol "Å³"^^xsd:string ;
    qudt:ucumCode "Ao3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:AT a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Ampere Turn"^^xsd:string,
        "Ampere Turn"@en ;
    dcterms:description "The $\\textit{ampere-turn}$ was the MKS unit of magnetomotive force (MMF), represented by a direct current of one ampere flowing in a single-turn loop in a vacuum. \"Turns\" refers to the winding number of an electrical conductor comprising an inductor. The ampere-turn was replaced by the SI unit, $ampere$."^^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/A0E1L0I0M0H0T0D0> ;
    qudt:hasQuantityKind quantitykind:MagnetomotiveForce ;
    qudt:scalingOf unit:A ;
    qudt:symbol "AT"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q474533> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:A_Stat a qudt:Unit ;
    rdfs:label "Statampere"^^xsd:string,
        "Statampere"@en ;
    dcterms:description """
  The unit $\\textit{Statampere}$, symbol $statA$ is a unit in the category of Electric current. 
  It is also known as statamperes. 
  This unit is commonly used in the cgs unit system. 
  $\\textit{Statampere (statA)}$ has a dimension of $I$ where $I$ is electric current. 
  It can be converted to the corresponding standard SI unit $A$ by multiplying its value by a factor of 3.355641E-010.
  """^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-ESU> ;
    qudt:conversionMultiplier 0.0000000003335641 ;
    qudt:conversionMultiplierSN 3.335641e-10 ;
    qudt:derivedUnitOfSystem <http://qudt.org/vocab/sou/CGS-ESU> ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L0I0M0H0T0D0> ;
    qudt:hasQuantityKind quantitykind:ElectricCurrent ;
    qudt:informativeReference "http://www.efunda.com/glossary/units/units--electric_current--statampere.cfm"^^xsd:anyURI ;
    qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/statampere> ;
    qudt:scalingOf unit:A ;
    qudt:symbol "statA"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q25559952> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:AttoC a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Attocoulomb"^^xsd:string,
        "Attocoulomb"@cs,
        "Attocoulomb"@de,
        "Attocoulomb"@en,
        "Attoculombio"@es,
        "Attocoulomb"@fr,
        "Attocoulomb"@hu,
        "Attocoulomb"@it,
        "Attocoulomb"@ms,
        "Attokulomb"@pl,
        "Attocoulomb"@ro,
        "Attocoulomb"@sl,
        "Attocoulomb"@tr ;
    dcterms:description """
  An $\\textit{AttoColomb}$ is $10^{-18} C$, where $C$ is the unit for $Colomb$.
  """^^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:derivedUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L0I0M0H0T1D0> ;
    qudt:hasQuantityKind quantitykind:ElectricCharge ;
    qudt:prefix <http://qudt.org/vocab/prefix/Atto> ;
    qudt:scalingOf unit:C ;
    qudt:symbol "aC"^^xsd:string ;
    qudt:ucumCode "aC"^^qudt:UCUMcs ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q30001813> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> ;
    prov:wasDerivedFrom unit:C .

unit:BAUD a qudt:Unit ;
    rdfs:label "Baud"^^xsd:string,
        "Baud"@en ;
    dcterms:description "unit for the symbol rate in communications engineering and telecommunication, at which 1 baud corresponds to the speed, at which 1 symbol (defined measurable signal change in the physical exchange medium) will be exchanged per second"^^xsd:string ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:DigitRate ;
    qudt:iec61360Code "0112/2///62720#UAA109"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA109"^^xsd:anyURI ;
    qudt:symbol "Bd"^^xsd:string ;
    qudt:uneceCommonCode "J38"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q192027> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BBL_UK_PET-PER-DAY a qudt:Unit ;
    rdfs:label "Barrel (UK Petroleum) per Day"^^xsd:string,
        "Barrel (UK Petroleum) per Day"@en ;
    dcterms:description "unit of the volume barrel (UK petroleum) for crude oil 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.000001841587962962962962962962962962962 ;
    qudt:conversionMultiplierSN 1.841588e-06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DAY ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:BBL_UK_PET ] ;
    qudt:hasQuantityKind quantitykind:VolumeFlowRate,
        quantitykind:VolumePerTime ;
    qudt:iec61360Code "0112/2///62720#UAA331"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA331"^^xsd:anyURI ;
    qudt:plainTextDescription "unit of the volume barrel (UK petroleum) for crude oil according to the Imperial system of units divided by the unit day"^^xsd:string ;
    qudt:symbol "bbl{UK petroleum}/d"^^xsd:string ;
    qudt:uneceCommonCode "J59"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BBL_UK_PET-PER-HR a qudt:Unit ;
    rdfs:label "Barrel (UK Petroleum) per Hour"^^xsd:string,
        "Barrel (UK Petroleum) per Hour"@en ;
    dcterms:description "unit of the volume barrel (UK petroleum) for crude oil 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.00004419811111111111111111111111111111 ;
    qudt:conversionMultiplierSN 4.419811e-05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:BBL_UK_PET ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ] ;
    qudt:hasQuantityKind quantitykind:VolumeFlowRate,
        quantitykind:VolumePerTime ;
    qudt:iec61360Code "0112/2///62720#UAA332"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA332"^^xsd:anyURI ;
    qudt:plainTextDescription "unit of the volume barrel (UK petroleum) for crude oil according to the Imperial system of units divided by the unit hour"^^xsd:string ;
    qudt:symbol "bbl{UK petroleum}/h"^^xsd:string ;
    qudt:uneceCommonCode "J60"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BBL_UK_PET-PER-MIN a qudt:Unit ;
    rdfs:label "Barrel (UK Petroleum) per Minute"^^xsd:string,
        "Barrel (UK Petroleum) per Minute"@en ;
    dcterms:description "unit of the volume barrel (UK petroleum) for crude oil according to the Imperial system of units divided by the unit minute"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL> ;
    qudt:conversionMultiplier 0.002651886666666666666666666666666667 ;
    qudt:conversionMultiplierSN 2.651887e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MIN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:BBL_UK_PET ] ;
    qudt:hasQuantityKind quantitykind:VolumeFlowRate,
        quantitykind:VolumePerTime ;
    qudt:iec61360Code "0112/2///62720#UAA330"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA330"^^xsd:anyURI ;
    qudt:plainTextDescription "unit of the volume barrel (UK petroleum) for crude oil according to the Imperial system of units divided by the unit minute"^^xsd:string ;
    qudt:symbol "bbl{UK petroleum}/min"^^xsd:string ;
    qudt:uneceCommonCode "J58"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BBL_UK_PET-PER-SEC a qudt:Unit ;
    rdfs:label "Barrel (UK Petroleum) per Second"^^xsd:string,
        "Barrel (UK Petroleum) per Second"@en ;
    dcterms:description "unit of the volume barrel (UK petroleum) for crude oil according to the Imperial system of units divided by the SI base unit second"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL> ;
    qudt:conversionMultiplier 0.1591132 ;
    qudt:conversionMultiplierSN 1.591132e-01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:BBL_UK_PET ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind quantitykind:VolumeFlowRate,
        quantitykind:VolumePerTime ;
    qudt:iec61360Code "0112/2///62720#UAA333"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA333"^^xsd:anyURI ;
    qudt:plainTextDescription "unit of the volume barrel (UK petroleum) for crude oil according to the Imperial system of units divided by the SI base unit second"^^xsd:string ;
    qudt:symbol "bbl{UK petroleum}/s"^^xsd:string ;
    qudt:uneceCommonCode "J61"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BBL_US-PER-DAY a qudt:Unit ;
    rdfs:label "Barrel (US) per Day"^^xsd:string,
        "Barrel (US) per Day"@en ;
    dcterms:description "unit of the volume barrel (US petroleum) for crude oil 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.000001840130787037037037037037037037036 ;
    qudt:conversionMultiplierSN 1.840131e-06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:BBL_US ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DAY ] ;
    qudt:hasQuantityKind quantitykind:VolumeFlowRate,
        quantitykind:VolumePerTime ;
    qudt:iec61360Code "0112/2///62720#UAA335"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA335"^^xsd:anyURI ;
    qudt:plainTextDescription "unit of the volume barrel (US petroleum) for crude oil according to the Anglo-American system of units divided by the unit day"^^xsd:string ;
    qudt:symbol "bbl{US petroleum}/d"^^xsd:string ;
    qudt:ucumCode "[bbl_us].d-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "B1"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q21178489> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BBL_US-PER-MIN a qudt:Unit ;
    rdfs:label "Barrel (US) per Minute"^^xsd:string,
        "Barrel (US) per Minute"@en ;
    dcterms:description "unit of the volume barrel (US petroleum) for crude oil according to the Anglo-American system of units divided by the unit minute"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 0.002649788333333333333333333333333334 ;
    qudt:conversionMultiplierSN 2.649788e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:BBL_US ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MIN ] ;
    qudt:hasQuantityKind quantitykind:VolumeFlowRate,
        quantitykind:VolumePerTime ;
    qudt:iec61360Code "0112/2///62720#UAA337"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA337"^^xsd:anyURI ;
    qudt:plainTextDescription "unit of the volume barrel (US petroleum) for crude oil according to the Anglo-American system of units divided by the unit minute"^^xsd:string ;
    qudt:symbol "bbl{US petroleum}/min"^^xsd:string ;
    qudt:ucumCode "[bbl_us].min-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "5A"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BBL_US_PET a qudt:ContextualUnit,
        qudt:Unit ;
    rdfs:label "Barrel (us Petroleum)"^^xsd:string,
        "Barrel (us Petroleum)"@en ;
    dcterms:description "unit of the volume barrel (US petroleum) for crude oil according to the Anglo-American system of units"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 0.1589873 ;
    qudt:conversionMultiplierSN 1.589873e-01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T0D0> ;
    qudt:hasQuantityKind quantitykind:LiquidVolume ;
    qudt:plainTextDescription "unit of the volume barrel (US petroleum) for crude oil according to the Anglo-American system of units"^^xsd:string ;
    qudt:scalingOf unit:M3 ;
    qudt:symbol "bbl{US petroleum}"^^xsd:string ;
    qudt:ucumCode "[bbl_us]"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> ;
    skos:broader unit:BBL_US .

unit:BBL_US_PET-PER-HR a qudt:ContextualUnit,
        qudt:Unit ;
    rdfs:label "Barrel (us Petroleum) per Hour"^^xsd:string,
        "Barrel (us Petroleum) per Hour"@en ;
    dcterms:description "unit of the volume barrel (US petroleum) for crude oil according to the Anglo-American system of units divided by the unit hour"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 0.00004416313888888888888888888888888889 ;
    qudt:conversionMultiplierSN 4.416314e-05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:BBL_US_PET ] ;
    qudt:hasQuantityKind quantitykind:VolumeFlowRate,
        quantitykind:VolumePerTime ;
    qudt:iec61360Code "0112/2///62720#UAA336"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA336"^^xsd:anyURI ;
    qudt:plainTextDescription "unit of the volume barrel (US petroleum) for crude oil according to the Anglo-American system of units divided by the unit hour"^^xsd:string ;
    qudt:symbol "bbl{US petroleum}/h"^^xsd:string ;
    qudt:ucumCode "[bbl_us].h-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "J62"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BBL_US_PET-PER-SEC a qudt:ContextualUnit,
        qudt:Unit ;
    rdfs:label "Barrel (us Petroleum) per Second"^^xsd:string,
        "Barrel (us Petroleum) per Second"@en ;
    dcterms:description "unit of the volume barrel (US petroleum) for crude oil according to the Anglo-American system of units divided by the SI base unit second"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 0.1589873 ;
    qudt:conversionMultiplierSN 1.589873e-01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:BBL_US_PET ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind quantitykind:VolumeFlowRate,
        quantitykind:VolumePerTime ;
    qudt:iec61360Code "0112/2///62720#UAA338"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA338"^^xsd:anyURI ;
    qudt:plainTextDescription "unit of the volume barrel (US petroleum) for crude oil according to the Anglo-American system of units divided by the SI base unit second"^^xsd:string ;
    qudt:symbol "bbl{US petroleum}/s"^^xsd:string ;
    qudt:ucumCode "[bbl_us].s-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "J62"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BILLION_Long a qudt:CountingUnit,
        qudt:Unit ;
    rdfs:label "Billion (Long Scale)"^^xsd:string,
        "Billion (Long Scale)"@en ;
    dcterms:description "Counting unit for a count of one billion according to the long scale, defined as one million million on the long scale"^^xsd:string ;
    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 1000000000000.0 ;
    qudt:conversionMultiplierSN 1e+12 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Count ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Billion"^^xsd:anyURI ;
    qudt:scalingOf unit:ONE ;
    qudt:symbol "1000000000000"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BILLION_Short a qudt:CountingUnit,
        qudt:Unit ;
    rdfs:label "Billion (Short Scale)"^^xsd:string,
        "Billion (Short Scale)"@en ;
    dcterms:description "Counting unit for a count of one billion according to the short scale, defined as one thousand million on the short scale. This is now the most common sense of the word in all varieties of English."^^xsd:string ;
    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 1000000000.0 ;
    qudt:conversionMultiplierSN 1e+09 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Count ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Billion"^^xsd:anyURI ;
    qudt:scalingOf unit:ONE ;
    qudt:symbol "1000000000"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BQ-PER-KiloGM a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Becquerel per Kilogram"^^xsd:string,
        "Бекерел на Килограм"@bg,
        "Becquerel na Kilogram"@cs,
        "Becquerel pro Kilogramm"@de,
        "Μπεκερέλ ανά Χιλιόγραμμο"@el,
        "Becquerel per Kilogram"@en,
        "Becquerel por Kilogramo"@es,
        "Becquerel par Kilogramme"@fr,
        "Becquerel per Chilogrammo"@it,
        "Becquerelium per Chiliogramma"@la,
        "Becquerel per Kilogram"@ms,
        "Bekerel na Kilogram"@pl,
        "Becquerel por Quilograma"@pt,
        "Becquerel pe Kilogram"@ro,
        "Беккерель на Килограмм"@ru,
        "Becquerel na Kilogram"@sl,
        "Bekerel per Kilogram"@tr ;
    dcterms:description "The only unit in the category of Specific radioactivity. It is also known as becquerels per kilogram, becquerel/kilogram. This unit is commonly used in the SI unit system. Becquerel Per Kilogram (Bq/kg) has a dimension of $M{-1}T{-1}$ where $M$ is mass, and $T$ is time. It essentially the same as the corresponding standard SI unit $/kg/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 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:expression "$Bq/kg$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M-1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:BQ ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:KiloGM ] ;
    qudt:hasQuantityKind quantitykind:MassicActivity,
        quantitykind:SpecificActivity ;
    qudt:iec61360Code "0112/2///62720#UAA112"^^xsd:string ;
    qudt:informativeReference "http://www.efunda.com/glossary/units/units--specific_radioactivity--becquerel_per_kilogram.cfm"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA112"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Becquerel per Kilogram\" is used to describe radioactivity, which is often expressed in becquerels per unit of volume or weight, to express how much radioactive material is contained in a sample."^^xsd:string ;
    qudt:symbol "Bq/kg"^^xsd:string ;
    qudt:ucumCode "Bq.kg-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "A18"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q88768297> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BTU_IT-IN-PER-FT2-HR-DEG_F a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "British Thermal Unit (international Definition) Inch per Square Foot Hour Degree Fahrenheit"^^xsd:string,
        "British Thermal Unit (international Definition) Inch per Square Foot Hour Degree Fahrenheit"@en ;
    dcterms:description """
  $BTU_{th}$ Inch per Square Foot Hour Degree Fahrenheit is an Imperial unit for 'Thermal Conductivity' expressed as $Btu_{it}-in/(h-ft^{2}-degF)$.
  An International British thermal unit inch per second per square foot per degree Fahrenheit is a unit of thermal conductivity in the US Customary Units and British Imperial Units. 
  $1\\,Btu_{it} \\cdot in/(h \\cdot ft^{2} \\cdot degF)$ shows that one thermochemical BTU of heat per one hour moves through one square foot of material, which is one foot thick due to a temperature difference of one degree Fahrenheit.
  """^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 0.1442278888642825896762904636920385 ;
    qudt:conversionMultiplierSN 1.442279e-01 ;
    qudt:exactMatch unit:BTU_IT-IN-PER-HR-FT2-DEG_F ;
    qudt:expression "$Btu(it)-in-per-h-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:DEG_F ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:BTU_IT ],
        [ 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:HR ] ;
    qudt:hasQuantityKind quantitykind:ThermalConductivity ;
    qudt:hasReciprocalUnit unit:DEG_F-HR-FT2-PER-BTU_IT-IN ;
    qudt:iec61360Code "0112/2///62720#UAA117"^^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%23UAA117"^^xsd:anyURI ;
    qudt:latexSymbol "$Btu_{it} \\cdot in/(h \\cdot ft^{2}  \\cdot degF)$"^^qudt:LatexString ;
    qudt:plainTextDescription "BTU (th) Inch per Square Foot Hour Degree Fahrenheit is an Imperial unit for 'Thermal Conductivity', an International British thermal unit inch per second per square foot per degree Fahrenheit is a unit of thermal conductivity in the US Customary Units and British Imperial Units."^^xsd:string ;
    qudt:symbol "Btu{IT}·in/(ft²·h·°F)"^^xsd:string ;
    qudt:ucumCode "[Btu_IT].[in_i].[ft_i]-2.h-1.[degF]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "J41"^^xsd:string ;
    ns1:comment "qudt:exactMatch: unit:BTU_IT-IN-PER-HR-FT2-DEG_F"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BTU_IT-IN-PER-HR-FT2-DEG_F a qudt:Unit ;
    rdfs:label "British Thermal Unit (international Definition) Inch per Hour Square Foot Degree Fahrenheit"^^xsd:string,
        "British Thermal Unit (international Definition) Inch per Hour Square Foot Degree Fahrenheit"@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 0.1442278888642825896762904636920385 ;
    qudt:conversionMultiplierSN 1.442279e-01 ;
    qudt:exactMatch unit:BTU_IT-IN-PER-FT2-HR-DEG_F ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H-1T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:BTU_IT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DEG_F ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:IN ] ;
    qudt:hasQuantityKind quantitykind:ThermalConductivity ;
    qudt:hasReciprocalUnit unit:DEG_F-HR-FT2-PER-BTU_IT-IN ;
    qudt:iec61360Code "0112/2///62720#UAA117"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA117"^^xsd:anyURI ;
    qudt:plainTextDescription "unit of the thermal conductivity according to the Imperial system of units"^^xsd:string ;
    qudt:symbol "Btu{IT}·in/(h·ft²·°F)"^^xsd:string ;
    qudt:ucumCode "[Btu_IT].[in_i].h-1.[ft_i]-2.[degF]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "J41"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BTU_IT-PER-FT2 a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "British Thermal Unit (international Definition) per Square Foot"^^xsd:string,
        "British Thermal Unit (international Definition) per Square Foot"@en ;
    dcterms:description """$\\textit{BTU per Square Foot}$ is an Imperial unit for 'Energy Per Area' expressed as $Btu/ft^2$.
  """^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 11356.52668222697556506224123559358 ;
    qudt:conversionMultiplierSN 1.135653e+04 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:expression "$Btu/ft^{2}$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:BTU_IT ] ;
    qudt:hasQuantityKind quantitykind:EnergyPerArea ;
    qudt:iec61360Code "0112/2///62720#UAB283"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB283"^^xsd:anyURI ;
    qudt:symbol "Btu{IT}/ft²"^^xsd:string ;
    qudt:ucumCode "[Btu_IT].[ft_i]-2"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "P37"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BTU_IT-PER-FT2-SEC-DEG_F a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "British Thermal Unit (international Definition) per Square Foot Second Degree Fahrenheit"^^xsd:string,
        "British Thermal Unit (international Definition) per Square Foot Second Degree Fahrenheit"@en ;
    dcterms:description """$\\textit{BTU per Square Foot Second Degree Fahrenheit}$ is an Imperial unit for 'Coefficient Of Heat Transfer' expressed as $Btu/(ft^{2}-s-degF)$.
  """^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 20441.74802800855601711203422406845 ;
    qudt:conversionMultiplierSN 2.044175e+04 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:expression "$Btu/(ft^{2}-s-degF)$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H-1T-3D0> ;
    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:BTU_IT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind quantitykind:CoefficientOfHeatTransfer ;
    qudt:symbol "Btu{IT}/(ft²·s·°F)"^^xsd:string ;
    qudt:ucumCode "[Btu_IT].[ft_i]-2.s-1.[degF]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "N76"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BTU_IT-PER-FT3 a qudt:Unit ;
    rdfs:label "British Thermal Unit (international Definition) per Cubic Foot"^^xsd:string,
        "British Thermal Unit (international Definition) per Cubic Foot"@en ;
    dcterms:description """$\\textit{British Thermal Unit (IT) Per Cubic Foot}$ ($Btu (IT)/ft^3$) is a unit in the category of Energy density. 
  It is also known as Btu per cubic foot, Btu/cubic foot. 
  This unit is commonly used in the UK, US unit systems. 
  It has a dimension of $ML^{-1}T^{-2}$ where $M$ is mass, $L$ is length, and $T$ is time. 
  It can be converted to the corresponding standard SI unit $J/m^3$ by multiplying its value by a factor of 37258.94579.
  """^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 37258.94580783128466227769434249863 ;
    qudt:conversionMultiplierSN 3.725895e+04 ;
    qudt:expression "$Btu(IT)-per-ft3$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:BTU_IT ] ;
    qudt:hasQuantityKind quantitykind:EnergyDensity ;
    qudt:iec61360Code "0112/2///62720#UAB280"^^xsd:string ;
    qudt:informativeReference "http://physics.nist.gov/Pubs/SP811/appenB9.html"^^xsd:anyURI,
        "http://www.efunda.com/glossary/units/units--energy_density--british_thermal_unit_it_per_cubic_foot.cfm"^^xsd:anyURI,
        "http://www.translatorscafe.com/cafe/EN/units-converter/fuel-efficiency--volume/c/"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB280"^^xsd:anyURI ;
    qudt:symbol "Btu{IT}/ft³"^^xsd:string ;
    qudt:ucumCode "[Btu_IT].[ft_i]-3"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "N58"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BTU_IT-PER-HR-FT2-DEG_R a qudt:Unit ;
    rdfs:label "British Thermal Unit (international Definition) per Hour Square Foot Degree Rankine"^^xsd:string,
        "British Thermal Unit (international Definition) per Hour Square Foot Degree Rankine"@en ;
    dcterms:description "unit of the heat transfer coefficient 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 5.678263341113487328270053328717806 ;
    qudt:conversionMultiplierSN 5.678263e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H-1T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DEG_R ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:BTU_IT ] ;
    qudt:hasQuantityKind quantitykind:CoefficientOfHeatTransfer ;
    qudt:iec61360Code "0112/2///62720#UAB099"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB099"^^xsd:anyURI ;
    qudt:plainTextDescription "unit of the heat transfer coefficient according to the Imperial system of units"^^xsd:string ;
    qudt:symbol "Btu{IT}/(h·ft²·°R)"^^xsd:string ;
    qudt:ucumCode "[Btu_IT].h-1.[ft_i]-2.[degR]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "A23"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BTU_IT-PER-SEC-FT2-DEG_F a qudt:Unit ;
    rdfs:label "British Thermal Unit (international Definition) per Second Square Foot Degree Fahrenheit"^^xsd:string,
        "British Thermal Unit (international Definition) per Second Square Foot Degree Fahrenheit"@en ;
    dcterms:description "unit of the heat transition coefficient according to the imperial system of units"^^xsd:string ;
    qudt:conversionMultiplier 20441.74802800855601711203422406845 ;
    qudt:conversionMultiplierSN 2.044175e+04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H-1T-3D0> ;
    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 -2 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DEG_F ] ;
    qudt:hasQuantityKind quantitykind:CoefficientOfHeatTransfer ;
    qudt:iec61360Code "0112/2///62720#UAB278"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB278"^^xsd:anyURI ;
    qudt:symbol "Btu{IT}/(s·ft²·°F)"^^xsd:string ;
    qudt:ucumCode "[Btu_IT].s-1.[ft_i]-2.[degF]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "N76"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BTU_IT-PER-SEC-FT2-DEG_R a qudt:Unit ;
    rdfs:label "British Thermal Unit (international Definition) per Second Square Foot Degree Rankine"^^xsd:string,
        "British Thermal Unit (international Definition) per Second Square Foot Degree Rankine"@en ;
    dcterms:description "unit of the heat transfer coefficient 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 20441.7480280085543817721919833841 ;
    qudt:conversionMultiplierSN 2.044175e+04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H-1T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DEG_R ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:BTU_IT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind quantitykind:CoefficientOfHeatTransfer ;
    qudt:iec61360Code "0112/2///62720#UAB098"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB098"^^xsd:anyURI ;
    qudt:plainTextDescription "unit of the heat transfer coefficient 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]-2.[degR]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "A20"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BTU_TH-PER-FT2 a qudt:Unit ;
    rdfs:label "British Thermal Unit (thermochemical Definition) per Square Foot"^^xsd:string,
        "British Thermal Unit (thermochemical Definition) per Square Foot"@en ;
    dcterms:description "unit of the areal-related energy transmisson according to the Imperial system of units"^^xsd:string ;
    qudt:conversionMultiplier 11348.93179491220093551298213707538 ;
    qudt:conversionMultiplierSN 1.134893e+04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:BTU_TH ] ;
    qudt:hasQuantityKind quantitykind:EnergyPerArea ;
    qudt:iec61360Code "0112/2///62720#UAB284"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB284"^^xsd:anyURI ;
    qudt:symbol "Btu{th}/ft²"^^xsd:string ;
    qudt:ucumCode "[Btu_th].[ft_i]-2"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "P38"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BTU_TH-PER-FT3 a qudt:Unit ;
    rdfs:label "British Thermal Unit (thermochemical Definition) per Cubic Foot"^^xsd:string,
        "British Thermal Unit (thermochemical Definition) per Cubic Foot"@en ;
    dcterms:description "British Thermal Unit (TH) Per Cubic Foot ($Btu (TH)/ft^3$) is a unit in the category of Energy density. It is also known as Btu per cubic foot, Btu/cubic foot. This unit is commonly used in the UK, US unit systems. It has a dimension of $ML^{-1}T^{-2}$ where $M$ is mass, $L$ is length, and $T$ is time. It can be converted to the corresponding standard SI unit $J/m^3$ by multiplying its value by a factor of 37234.03."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 37234.02819853084296428143745759641 ;
    qudt:conversionMultiplierSN 3.723403e+04 ;
    qudt:expression "$Btu(th)-per-ft3$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:BTU_TH ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:FT ] ;
    qudt:hasQuantityKind quantitykind:EnergyDensity ;
    qudt:iec61360Code "0112/2///62720#UAB281"^^xsd:string ;
    qudt:informativeReference "http://physics.nist.gov/Pubs/SP811/appenB9.html"^^xsd:anyURI,
        "http://www.efunda.com/glossary/units/units--energy_density--british_thermal_unit_it_per_cubic_foot.cfm"^^xsd:anyURI,
        "http://www.translatorscafe.com/cafe/EN/units-converter/fuel-efficiency--volume/c/"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB281"^^xsd:anyURI ;
    qudt:symbol "Btu{th}/ft³"^^xsd:string ;
    qudt:ucumCode "[Btu_th].[ft_i]-3"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "N59"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BTU_TH-PER-SEC-FT2-DEG_F a qudt:Unit ;
    rdfs:label "British Thermal Unit (thermochemical Definition) per Second Square Foot Degree Fahrenheit"^^xsd:string,
        "British Thermal Unit (thermochemical Definition) per Second Square Foot Degree Fahrenheit"@en ;
    dcterms:description "unit of the heat transition coefficient according to the imperial system of units"^^xsd:string ;
    qudt:conversionMultiplier 20428.07723084196168392336784673569 ;
    qudt:conversionMultiplierSN 2.042808e+04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H-1T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:BTU_TH ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DEG_F ] ;
    qudt:hasQuantityKind quantitykind:CoefficientOfHeatTransfer ;
    qudt:iec61360Code "0112/2///62720#UAB279"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB279"^^xsd:anyURI ;
    qudt:symbol "Btu{th}/(s·ft²·°F)"^^xsd:string ;
    qudt:ucumCode "[Btu_th].s-1.[ft_i]-2.[degF]-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BU_UK-PER-DAY a qudt:Unit ;
    rdfs:label "Bushel (UK) per Day"^^xsd:string,
        "Bushel (UK) per Day"@en ;
    dcterms:description "unit of the volume bushel (UK) (for fluids and for dry measures) according to the Imperial 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.0000004209342592592592592592592592592591 ;
    qudt:conversionMultiplierSN 4.209343e-07 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:BU_UK ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DAY ] ;
    qudt:hasQuantityKind quantitykind:VolumeFlowRate,
        quantitykind:VolumePerTime ;
    qudt:iec61360Code "0112/2///62720#UAA345"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA345"^^xsd:anyURI ;
    qudt:plainTextDescription "unit of the volume bushel (UK) (for fluids and for dry measures) according to the Imperial system of units divided by the unit for time day"^^xsd:string ;
    qudt:symbol "bsh{UK}/d"^^xsd:string ;
    qudt:ucumCode "[bu_br].d-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "J64"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BU_UK-PER-HR a qudt:Unit ;
    rdfs:label "Bushel (UK) per Hour"^^xsd:string,
        "Bushel (UK) per Hour"@en ;
    dcterms:description "unit of the volume bushel (UK) (for fluids and for dry measures) according to the Imperial 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.00001010242222222222222222222222222222 ;
    qudt:conversionMultiplierSN 1.010242e-05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:BU_UK ] ;
    qudt:hasQuantityKind quantitykind:VolumeFlowRate,
        quantitykind:VolumePerTime ;
    qudt:iec61360Code "0112/2///62720#UAA346"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA346"^^xsd:anyURI ;
    qudt:plainTextDescription "unit of the volume bushel (UK) (for fluids and for dry measures) according to the Imperial system of units divided by the unit for time hour"^^xsd:string ;
    qudt:symbol "bsh{UK}/h"^^xsd:string ;
    qudt:ucumCode "[bu_br].h-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "J65"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BU_UK-PER-MIN a qudt:Unit ;
    rdfs:label "Bushel (UK) per Minute"^^xsd:string,
        "Bushel (UK) per Minute"@en ;
    dcterms:description "unit of the volume bushel (UK) (for fluids and for dry measures) according to the Imperial 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.0006061453333333333333333333333333335 ;
    qudt:conversionMultiplierSN 6.061453e-04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:BU_UK ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MIN ] ;
    qudt:hasQuantityKind quantitykind:VolumeFlowRate,
        quantitykind:VolumePerTime ;
    qudt:iec61360Code "0112/2///62720#UAA347"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA347"^^xsd:anyURI ;
    qudt:plainTextDescription "unit of the volume bushel (UK) (for fluids and for dry measures) according to the Imperial system of units divided by the unit for time minute"^^xsd:string ;
    qudt:symbol "bsh{UK}/min"^^xsd:string ;
    qudt:ucumCode "[bu_br].min-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "J66"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BU_UK-PER-SEC a qudt:Unit ;
    rdfs:label "Bushel (UK) per Second"^^xsd:string,
        "Bushel (UK) per Second"@en ;
    dcterms:description "unit of the volume bushel (UK) (for fluids and for dry measures) according to the Imperial 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.03636872 ;
    qudt:conversionMultiplierSN 3.636872e-02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:BU_UK ] ;
    qudt:hasQuantityKind quantitykind:VolumeFlowRate,
        quantitykind:VolumePerTime ;
    qudt:iec61360Code "0112/2///62720#UAA348"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA348"^^xsd:anyURI ;
    qudt:plainTextDescription "unit of the volume bushel (UK) (for fluids and for dry measures) according to the Imperial system of units divided by the SI base unit second"^^xsd:string ;
    qudt:symbol "bsh{UK}/s"^^xsd:string ;
    qudt:ucumCode "[bu_br].s-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "J67"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BU_US a qudt:Unit ;
    rdfs:label "Bushel (US)"^^xsd:string,
        "Bushel (US)"@en ;
    dcterms:description "A bushel is an imperial and U.S. customary unit of dry volume, equivalent in each of these systems to 4 pecks or 8 gallons. It is used for volumes of dry commodities (not liquids), most often in agriculture. It is abbreviated as bsh. or bu. In modern usage, the dry volume is usually only nominal, with bushels referring to standard weights instead."^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 0.03523907016688 ;
    qudt:conversionMultiplierSN 3.523907e-02 ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Bushel"^^xsd:anyURI ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/USCS> ;
    qudt:factorUnitScalar 2150.42 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:IN ] ;
    qudt:hasQuantityKind quantitykind:DryVolume ;
    qudt:iec61360Code "0112/2///62720#UAA353"^^xsd:string ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Bushel?oldid=476704875"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA353"^^xsd:anyURI ;
    qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/bushel-US> ;
    qudt:symbol "bu{US}"^^xsd:string ;
    qudt:ucumCode "[bu_us]"^^qudt:UCUMcs ;
    qudt:udunitsCode "bu"^^xsd:string ;
    qudt:uneceCommonCode "BUA"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q32750816> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BU_US_DRY-PER-DAY a qudt:ContextualUnit,
        qudt:Unit ;
    rdfs:label "Bushel (US Dry) per Day"^^xsd:string,
        "Bushel (US Dry) per Day"@en ;
    dcterms:description "unit of the volume bushel (US dry) for dry measure according to the Anglo-American system of units divided by the unit for time day"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 0.0000004078596064814814814814814814814813 ;
    qudt:conversionMultiplierSN 4.078596e-07 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:BU_US_DRY ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DAY ] ;
    qudt:hasQuantityKind quantitykind:VolumeFlowRate,
        quantitykind:VolumePerTime ;
    qudt:iec61360Code "0112/2///62720#UAA349"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA349"^^xsd:anyURI ;
    qudt:plainTextDescription "unit of the volume bushel (US dry) for dry measure according to the Anglo-American system of units divided by the unit for time day"^^xsd:string ;
    qudt:symbol "bsh{US}/d"^^xsd:string ;
    qudt:ucumCode "[bu_us].d-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "J68"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BU_US_DRY-PER-HR a qudt:ContextualUnit,
        qudt:Unit ;
    rdfs:label "Bushel (US Dry) per Hour"^^xsd:string,
        "Bushel (US Dry) per Hour"@en ;
    dcterms:description "unit of the volume bushel (US dry) for dry measure according to the Anglo-American system of units divided by the unit for time hour"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 0.000009788630555555555555555555555555556 ;
    qudt:conversionMultiplierSN 9.788631e-06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:BU_US_DRY ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ] ;
    qudt:hasQuantityKind quantitykind:VolumeFlowRate,
        quantitykind:VolumePerTime ;
    qudt:iec61360Code "0112/2///62720#UAA350"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA350"^^xsd:anyURI ;
    qudt:plainTextDescription "unit of the volume bushel (US dry) for dry measure according to the Anglo-American system of units divided by the unit for time hour"^^xsd:string ;
    qudt:symbol "bsh{US}/h"^^xsd:string ;
    qudt:ucumCode "[bu_us].h-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "J69"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BU_US_DRY-PER-MIN a qudt:ContextualUnit,
        qudt:Unit ;
    rdfs:label "Bushel (US Dry) per Minute"^^xsd:string,
        "Bushel (US Dry) per Minute"@en ;
    dcterms:description "unit of the volume bushel (US dry) for dry measure according to the Anglo-American system of units divided by the unit for time minute"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 0.0005873178333333333333333333333333335 ;
    qudt:conversionMultiplierSN 5.873178e-04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:BU_US_DRY ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MIN ] ;
    qudt:hasQuantityKind quantitykind:VolumeFlowRate,
        quantitykind:VolumePerTime ;
    qudt:iec61360Code "0112/2///62720#UAA351"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA351"^^xsd:anyURI ;
    qudt:plainTextDescription "unit of the volume bushel (US dry) for dry measure according to the Anglo-American system of units divided by the unit for time minute"^^xsd:string ;
    qudt:symbol "bsh{US}/min"^^xsd:string ;
    qudt:ucumCode "[bu_us].min-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "J70"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BU_US_DRY-PER-SEC a qudt:ContextualUnit,
        qudt:Unit ;
    rdfs:label "Bushel (US Dry) per Second"^^xsd:string,
        "Bushel (US Dry) per Second"@en ;
    dcterms:description "unit of the volume bushel (US dry) for dry measure according to the Anglo-American system of units divided by the SI base unit second"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 0.03523907 ;
    qudt:conversionMultiplierSN 3.523907e-02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:BU_US_DRY ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind quantitykind:VolumeFlowRate,
        quantitykind:VolumePerTime ;
    qudt:iec61360Code "0112/2///62720#UAA352"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA352"^^xsd:anyURI ;
    qudt:plainTextDescription "unit of the volume bushel (US dry) for dry measure according to the Anglo-American system of units divided by the SI base unit second"^^xsd:string ;
    qudt:symbol "bsh{US}/s"^^xsd:string ;
    qudt:ucumCode "[bu_us].s-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "J71"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CAL_15DEG_C a qudt:ContextualUnit,
        qudt:Unit ;
    rdfs:label "Calorie (15 Degrees C)"^^xsd:string,
        "Calorie (15 Degrees C)"@en ;
    dcterms:description "unit for the quantity of heat which is required to warm up 1 g  of water, which is free of air, at a constant pressure of 101.325 kPa (the pressure of the standard atmosphere on sea level) from 14.5 degrees Celsius to 15.5 degrees Celsius"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 4.1858 ;
    qudt:conversionMultiplierSN 4.1858e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:hasQuantityKind quantitykind:ThermalEnergy ;
    qudt:iec61360Code "0112/2///62720#UAB139"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB139"^^xsd:anyURI,
        "https://physics.nist.gov/cuu/pdf/sp811.pdf"^^xsd:anyURI ;
    qudt:plainTextDescription "unit for the quantity of heat which is required to warm up 1 g  of water, which is free of air, at a constant pressure of 101.325 kPa (the pressure of the standard atmosphere on sea level) from 14.5 degrees Celsius to 15.5 degrees Celsius"^^xsd:string ;
    qudt:scalingOf unit:J ;
    qudt:symbol "cal{15 °C}"^^xsd:string ;
    qudt:ucumCode "cal_[15]"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "A1"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CAL_IT-PER-SEC-CentiM2-K a qudt:Unit ;
    rdfs:label "International Table Calorie per Second Square Centimetre Kelvin"^^xsd:string,
        "International Table Calorie per Second Square Centimetre Kelvin"@en,
        "International Table Calorie per Second Square Centimeter Kelvin"@en-us ;
    dcterms:description "unit of the heat transfer coefficient 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 41868.0 ;
    qudt:conversionMultiplierSN 4.1868e+04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H-1T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:CAL_IT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:CentiM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind quantitykind:CoefficientOfHeatTransfer ;
    qudt:iec61360Code "0112/2///62720#UAB096"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB096"^^xsd:anyURI ;
    qudt:plainTextDescription "unit of the heat transfer coefficient 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-2.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "D72"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CAL_TH-PER-CentiM2 a qudt:Unit ;
    rdfs:label "Thermochemical Calorie per Square Centimetre"^^xsd:string,
        "Thermochemical Calorie per Square Centimetre"@en,
        "Thermochemical Calorie per Square Centimeter"@en-us ;
    dcterms:description "unit of the areal-related energy transmisson according to the Imperial system of units"^^xsd:string ;
    qudt:conversionMultiplier 41840.0 ;
    qudt:conversionMultiplierSN 4.184e+04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:CentiM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:CAL_TH ] ;
    qudt:hasQuantityKind quantitykind:EnergyPerArea ;
    qudt:iec61360Code "0112/2///62720#UAB285"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB285"^^xsd:anyURI ;
    qudt:symbol "cal/cm²"^^xsd:string ;
    qudt:ucumCode "cal_th.cm-2"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "P39"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CAL_TH-PER-SEC-CentiM2-K a qudt:Unit ;
    rdfs:label "Thermochemical Calorie per Second Square Centimetre Kelvin"^^xsd:string,
        "Thermochemical Calorie per Second Square Centimetre Kelvin"@en,
        "Thermochemical Calorie per Second Square Centimeter Kelvin"@en-us ;
    dcterms:description "unit of the heat transfer coefficient 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 41840.0 ;
    qudt:conversionMultiplierSN 4.184e+04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H-1T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:CAL_TH ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:CentiM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ] ;
    qudt:hasQuantityKind quantitykind:CoefficientOfHeatTransfer ;
    qudt:iec61360Code "0112/2///62720#UAB097"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB097"^^xsd:anyURI ;
    qudt:plainTextDescription "unit of the heat transfer coefficient according to the Imperial system of units"^^xsd:string ;
    qudt:symbol "cal/(s·cm²·K)"^^xsd:string ;
    qudt:ucumCode "cal_th.s-1.cm-2.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "D39"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_BGN a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Bulgarian Lev"^^xsd:string,
        "Bulgarian Lev"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "BGN"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "975"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Bulgarian_lev"^^xsd:anyURI ;
    qudt:expression "$BGN$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Bulgarian_lev?oldid=494947467"^^xsd:anyURI ;
    qudt:symbol "лв."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q172540> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_CZK a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Czech Koruna"^^xsd:string,
        "Czech Koruna"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "CZK"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "203"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Czech_koruna"^^xsd:anyURI ;
    qudt:expression "$CZK$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Czech_koruna?oldid=493991393"^^xsd:anyURI ;
    qudt:symbol "Kč"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q131016> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_DKK a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Danish Krone"^^xsd:string,
        "Danish Krone"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "DKK"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "208"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Danish_krone"^^xsd:anyURI ;
    qudt:expression "$DKK$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Danish_krone?oldid=491168880"^^xsd:anyURI ;
    qudt:symbol "kr"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q25417> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_GBP a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Pound Sterling"^^xsd:string,
        "Pound Sterling"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "GBP"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "826"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Pound_sterling"^^xsd:anyURI ;
    qudt:expression "$GBP$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind: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 ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q25224> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_HUF a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Forint"^^xsd:string,
        "Forint"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "HUF"^^xsd:string ;
    qudt:currencyExponent 0 ;
    qudt:currencyNumber "348"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Hungarian_forint"^^xsd:anyURI ;
    qudt:expression "$HUF$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Hungarian_forint?oldid=492818607"^^xsd:anyURI ;
    qudt:symbol "Ft"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q47190> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_NOK a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Norwegian Krone"^^xsd:string,
        "Norwegian Krone"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "NOK"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "578"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Norwegian_krone"^^xsd:anyURI ;
    qudt:expression "$NOK$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind: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 ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q132643> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_PLN a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Zloty"^^xsd:string,
        "Zloty"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    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:expression "$PLN$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Polish_złoty?oldid=492697733"^^xsd:anyURI ;
    qudt:symbol "zł"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q123213> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_RON a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Romanian New Leu"^^xsd:string,
        "Romanian New Leu"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "RON"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "946"^^xsd:string ;
    qudt:expression "$RON$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:symbol "L"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_SEK a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Swedish Krona"^^xsd:string,
        "Swedish Krona"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "SEK"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "752"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Swedish_krona"^^xsd:anyURI ;
    qudt:expression "$SEK$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind: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 ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q122922> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_USD a qudt:CurrencyUnit,
        qudt:Unit ;
    rdfs:label "Us Dollar"^^xsd:string,
        "Us Dollar"@en ;
    qudt:altSymbol "US$"^^xsd:string ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "USD"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "840"^^xsd:string ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:Currency ;
    qudt:symbol "$"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q4917> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CI-PER-KiloGM a qudt:Unit ;
    rdfs:label "Curie per Kilogram"^^xsd:string,
        "Curie per Kilogram"@en ;
    dcterms:description "1,000-fold of the unit curie divided by the SI base unit kilogram"^^xsd:string ;
    qudt:conversionMultiplier 37000000000.0 ;
    qudt:conversionMultiplierSN 3.7e+10 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M-1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:CI ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:KiloGM ] ;
    qudt:hasQuantityKind quantitykind:MassicActivity,
        quantitykind:SpecificActivity ;
    qudt:iec61360Code "0112/2///62720#UAB091"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB091"^^xsd:anyURI ;
    qudt:symbol "Ci/kg"^^xsd:string ;
    qudt:ucumCode "Ci.kg-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "A42"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CYC-PER-SEC a qudt:ContextualUnit,
        qudt:Unit ;
    rdfs:label "Cycle per Second"^^xsd:string,
        "Cycle per Second"@en ;
    dcterms:description "The \"cycle per second\" is a once-common English name for the unit of frequency now known as the hertz (Hz)."^^xsd:string ;
    qudt:altSymbol "c.p.s"^^xsd:string,
        "cycles/s"^^xsd:string ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/SI>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:exactMatch unit:HZ ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:CYC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind quantitykind:RotationalFrequency,
        quantitykind:RotationalVelocity ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Cycle_per_second"^^xsd:anyURI ;
    qudt:symbol "c/s"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CentiC a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Centicoulomb"^^xsd:string,
        "Centicoulomb"@cs,
        "Centicoulomb"@de,
        "Centicoulomb"@en,
        "Centiculombio"@es,
        "Centicoulomb"@fr,
        "Centicoulomb"@hu,
        "Centicoulomb"@it,
        "Centicoulomb"@ms,
        "Centikulomb"@pl,
        "Centicoulomb"@ro,
        "Centicoulomb"@sl,
        "Centicoulomb"@tr ;
    dcterms:description "A CentiCoulomb is $10^{-2} C$."^^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.01 ;
    qudt:conversionMultiplierSN 1e-02 ;
    qudt:derivedUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L0I0M0H0T1D0> ;
    qudt:hasQuantityKind quantitykind:ElectricCharge ;
    qudt:prefix <http://qudt.org/vocab/prefix/Centi> ;
    qudt:scalingOf unit:C ;
    qudt:symbol "cC"^^xsd:string ;
    qudt:ucumCode "cC"^^qudt:UCUMcs ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q94634634> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> ;
    prov:wasDerivedFrom unit:C .

unit:CentiM2-PER-GM a qudt:Unit ;
    rdfs:label "Square Centimetre per Gram"^^xsd:string,
        "Čtvereční Centimetr na Gram"@cs,
        "Quadratcentimeter pro Gramm"@de,
        "Square Centimetre per Gram"@en,
        "Square Centimeter per Gram"@en-us,
        "Centimetro Cuadrado por Gramo"@es,
        "Centimètre Carré par Gramme"@fr,
        "Centimetro Quadrato per Grammo"@it,
        "Centimeter Persegi per Gram"@ms,
        "Centimetr Kwadratowy na Gram"@pl,
        "Centimetru Pătrat pe Gram"@ro,
        "Kvadratni Centimeter na Gram"@sl,
        "Centimetrekare per Gram"@tr ;
    dcterms:description "0.0001-fold of the power of the SI base unit metre by exponent 2 divided by the 0.001-fold SI base unit kilogram"^^xsd:string ;
    qudt:conversionMultiplier 0.1 ;
    qudt:conversionMultiplierSN 1e-01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M-1H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:CentiM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GM ] ;
    qudt:hasQuantityKind quantitykind:MassAttenuationCoefficient,
        quantitykind:SpecificSurfaceArea ;
    qudt:hasReciprocalUnit unit:GM-PER-CentiM2 ;
    qudt:iec61360Code "0112/2///62720#UAB193"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB193"^^xsd:anyURI ;
    qudt:symbol "cm²/g"^^xsd:string ;
    qudt:ucumCode "cm2.g-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "H15"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CentiM2-PER-SEC a qudt:Unit ;
    rdfs:label "Square Centimetre per Second"^^xsd:string,
        "Čtvereční Centimetr na Sekunda"@cs,
        "Quadratcentimeter pro Sekunde"@de,
        "Square Centimetre per Second"@en,
        "Square Centimeter per Second"@en-us,
        "Centimetro Cuadrado por Segundo"@es,
        "Centimètre Carré par Seconde"@fr,
        "Centimetro Quadrato per Secondo"@it,
        "Centimeter Persegi per Saat"@ms,
        "Centimetr Kwadratowy na Sekunda"@pl,
        "Centimetru Pătrat pe Secundă"@ro,
        "Kvadratni Centimeter na Sekunda"@sl,
        "Centimetrekare per Saniye"@tr ;
    dcterms:description "0.0001-fold of the power of the SI base unit metre by exponent 2 divided by the SI base unit second"^^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.0001 ;
    qudt:conversionMultiplierSN 1e-04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:CentiM ] ;
    qudt:hasQuantityKind quantitykind:AreaPerTime ;
    qudt:iec61360Code "0112/2///62720#UAB408"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB408"^^xsd:anyURI ;
    qudt:symbol "cm²/s"^^xsd:string ;
    qudt:ucumCode "cm2.s-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "M81"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q26162545> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CentiM3-PER-DAY a qudt:Unit ;
    rdfs:label "Cubic Centimetre per Day"^^xsd:string,
        "Cubic Centimetre per Day"@en,
        "Cubic Centimeter per Day"@en-us ;
    dcterms:description "0,000 001-fold of the power of the SI base unit metre with the exponent 3 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/A0E0L3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DAY ],
        [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:CentiM ] ;
    qudt:hasQuantityKind quantitykind:VolumeFlowRate,
        quantitykind:VolumePerTime ;
    qudt:iec61360Code "0112/2///62720#UAA388"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA388"^^xsd:anyURI ;
    qudt:plainTextDescription "0.000001-fold of the power of the SI base unit metre with the exponent 3 divided by the unit day"^^xsd:string ;
    qudt:symbol "cm³/d"^^xsd:string ;
    qudt:ucumCode "cm3.d-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G47"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q107313819> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CentiM3-PER-HR a qudt:Unit ;
    rdfs:label "Cubic Centimetre per Hour"^^xsd:string,
        "Cubic Centimetre per Hour"@en,
        "Cubic Centimeter per Hour"@en-us ;
    dcterms:description "0,000 001-fold of the power of the SI base unit metre with the exponent 3 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/A0E0L3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:CentiM ] ;
    qudt:hasQuantityKind quantitykind:VolumeFlowRate,
        quantitykind:VolumePerTime ;
    qudt:iec61360Code "0112/2///62720#UAA391"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA391"^^xsd:anyURI ;
    qudt:plainTextDescription "0.000001-fold of the power of the SI base unit metre with the exponent 3 divided by the unit hour"^^xsd:string ;
    qudt:symbol "cm³/h"^^xsd:string ;
    qudt:ucumCode "cm3.h-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G48"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q107028457> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CentiM3-PER-MIN a qudt:Unit ;
    rdfs:label "Cubic Centimetre per Minute"^^xsd:string,
        "Cubic Centimetre per Minute"@en,
        "Cubic Centimeter per Minute"@en-us ;
    dcterms:description "0.000001-fold of the power of the SI base unit metre with the exponent 3 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/A0E0L3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:CentiM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MIN ] ;
    qudt:hasQuantityKind quantitykind:VolumeFlowRate,
        quantitykind:VolumePerTime ;
    qudt:iec61360Code "0112/2///62720#UAA395"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA395"^^xsd:anyURI ;
    qudt:plainTextDescription "0,000 001-fold of the power of the SI base unit metre with the exponent 3 divided by the unit minute"^^xsd:string ;
    qudt:symbol "cm³/min"^^xsd:string ;
    qudt:ucumCode "cm3.min-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G49"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q107028485> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CentiM3-PER-SEC a qudt:Unit ;
    rdfs:label "Cubic Centimetre per Second"^^xsd:string,
        "Centimetr Krychlový na Sekunda"@cs,
        "Kubikcentimeter pro Sekunde"@de,
        "Cubic Centimetre per Second"@en,
        "Cubic Centimeter per Second"@en-us,
        "Centimetro Cúbico por Segundo"@es,
        "Centimètre Cube par Seconde"@fr,
        "Centimetro Cubo per Secondo"@it,
        "Centimeter Kubik per Saat"@ms,
        "Centimetr Sześcienny na Sekunda"@pl,
        "Centimetru Cub pe Secundă"@ro,
        "Kubični Centimeter na Sekunda"@sl,
        "Centimetreküp per Saniye"@tr ;
    dcterms:description "0.000001-fold of the power of the SI base unit metre with the exponent 3 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/A0E0L3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:CentiM ] ;
    qudt:hasQuantityKind quantitykind:VolumeFlowRate,
        quantitykind:VolumePerTime ;
    qudt:iec61360Code "0112/2///62720#UAA399"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA399"^^xsd:anyURI ;
    qudt:plainTextDescription "0,000 001-fold of the power of the SI base unit metre with the exponent 3 divided by the SI base unit second"^^xsd:string ;
    qudt:symbol "cm³/s"^^xsd:string ;
    qudt:ucumCode "cm3.s-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "2J"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q107313800> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CentiM4 a qudt:Unit ;
    rdfs:label "Quartic Centimetre"^^xsd:string,
        "Centimeter hoch vier"@de,
        "Quartic Centimetre"@en,
        "Quartic Centimeter"@en-us ;
    dcterms:description "0.01-fold of SI base unit metre to the power four"^^xsd:string ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.00000001 ;
    qudt:conversionMultiplierSN 1e-08 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L4I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 4 ;
            qudt:hasUnit unit:CentiM ] ;
    qudt:hasQuantityKind quantitykind:SecondAxialMomentOfArea,
        quantitykind:SecondMomentOfArea,
        quantitykind:SecondPolarMomentOfArea ;
    qudt:iec61360Code "0112/2///62720#UAC000"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC000"^^xsd:anyURI ;
    qudt:plainTextDescription "0.01-fold of the SI base unit metre with the exponent 4"^^xsd:string ;
    qudt:symbol "cm⁴"^^xsd:string ;
    qudt:ucumCode "cm4"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CentiMOL-PER-KiloGM a qudt:Unit ;
    rdfs:label "Centimole per Kilogram"^^xsd:string,
        "Centimol na Kilogram"@cs,
        "Centimol pro Kilogramm"@de,
        "Centimole per Kilogram"@en,
        "Centimol por Kilogramo"@es,
        "Centimole par Kilogramme"@fr,
        "Centimole per Chilogrammo"@it,
        "Centimole per Kilogram"@ms,
        "Centimol na Kilogram"@pl,
        "Centimol pe Kilogram"@ro,
        "Centimol na Kilogram"@sl,
        "Centimol per Kilogram"@tr ;
    dcterms:description "1/100 of SI unit of amount of substance per kilogram"^^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/A1E0L0I0M-1H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:KiloGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:CentiMOL ] ;
    qudt:hasQuantityKind quantitykind:AmountOfSubstancePerMass,
        quantitykind:IonicStrength,
        quantitykind:MolalityOfSolute ;
    qudt:plainTextDescription "1/100 of SI unit of amount of substance per kilogram"^^xsd:string ;
    qudt:symbol "cmol/kg"^^xsd:string ;
    qudt:ucumCode "cmol.kg-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CentiN-M a qudt:Unit ;
    rdfs:label "Centinewton Metre"^^xsd:string,
        "Centinewton Metr"@cs,
        "Centinewton Meter"@de,
        "Centinewton Metre"@en,
        "Centinewton Meter"@en-us,
        "Centinewton Metro"@es,
        "Centinewton Mètre"@fr,
        "Centinewton Metro"@it,
        "Centinewton Meter"@ms,
        "Centiniuton Metr"@pl,
        "Centinewton Metru"@ro,
        "Centinewton Meter"@sl,
        "Centinewton Metre"@tr ;
    dcterms:description "0.01-fold of the product of the SI derived unit newton and 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.01 ;
    qudt:conversionMultiplierSN 1e-02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:CentiN ] ;
    qudt:hasQuantityKind quantitykind:MomentOfForce,
        quantitykind:Torque ;
    qudt:iec61360Code "0112/2///62720#UAA355"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA355"^^xsd:anyURI ;
    qudt:plainTextDescription "0.01-fold of the product of the SI derived unit newton and SI base unit metre"^^xsd:string ;
    qudt:symbol "cN·m"^^xsd:string ;
    qudt:ucumCode "cN.m"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "J72"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q107410680> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DEG-PER-M a qudt:Unit ;
    rdfs:label "Degree per Metre"^^xsd:string,
        "Degree per Metre"@en,
        "Degree per Meter"@en-us ;
    dcterms:description "A change of angle in one SI unit of length."@en ;
    qudt:conversionMultiplier 0.0174532925 ;
    qudt:conversionMultiplierSN 1.745329e-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:DEG ] ;
    qudt:hasQuantityKind quantitykind:AngularWavenumber,
        quantitykind:DebyeAngularWavenumber,
        quantitykind:FermiAngularWavenumber ;
    qudt:iec61360Code "0112/2///62720#UAA025"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA025"^^xsd:anyURI ;
    qudt:symbol "°/m"^^xsd:string ;
    qudt:ucumCode "deg.m-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "H27"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q106610962> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DEG_F-HR-FT2-PER-BTU_IT a qudt:Unit ;
    rdfs:label "Degree Fahrenheit Hour Square Foot per British Thermal Unit (international Definition)"^^xsd:string,
        "Degree Fahrenheit Hour Square Foot per British Thermal Unit (international Definition)"@en ;
    dcterms:description "unit of the thermal resistor 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 0.1761101836823058407309515389966389 ;
    qudt:conversionMultiplierSN 1.761102e-01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M-1H1T3D0> ;
    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:BTU_IT ],
        [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:FT ] ;
    qudt:hasQuantityKind quantitykind:ThermalInsulance ;
    qudt:hasReciprocalUnit unit:BTU_IT-PER-FT2-HR-DEG_F,
        unit:BTU_IT-PER-HR-FT2-DEG_F ;
    qudt:iec61360Code "0112/2///62720#UAA043"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA043"^^xsd:anyURI ;
    qudt:plainTextDescription "unit of the thermal resistor according to the Imperial system of units"^^xsd:string ;
    qudt:symbol "°F·h·ft²/Btu{IT}"^^xsd:string ;
    qudt:ucumCode "[degF].h.[ft_i]2.[Btu_IT]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "J22"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DEG_F-HR-FT2-PER-BTU_IT-IN a qudt:Unit ;
    rdfs:label "Degree Fahrenheit Hour Square Foot per British Thermal Unit (international Definition) Inch"^^xsd:string,
        "Degree Fahrenheit Hour Square Foot per British Thermal Unit (international Definition) Inch"@en ;
    dcterms:description "unit of specific thermal resistance according to the Imperial system of units"^^xsd:string ;
    qudt:conversionMultiplier 6.933471798515977981533525157347987 ;
    qudt:conversionMultiplierSN 6.933472e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M-1H1T3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:IN ],
        [ 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:BTU_IT ],
        [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:FT ] ;
    qudt:hasQuantityKind quantitykind:ThermalResistivity ;
    qudt:hasReciprocalUnit unit:BTU_IT-IN-PER-FT2-HR-DEG_F,
        unit:BTU_IT-IN-PER-HR-FT2-DEG_F ;
    qudt:iec61360Code "0112/2///62720#UAB252"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB252"^^xsd:anyURI ;
    qudt:symbol "°F·h·ft²/(Btu{IT}·in)"^^xsd:string ;
    qudt:ucumCode "[degF].h.[ft_i]2.[Btu_IT]-1.[in_i]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "N88"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DYN-CentiM a qudt:Unit ;
    rdfs:label "Dyne Centimetre"^^xsd:string,
        "Dyne Centimetre"@en,
        "Dyne Centimeter"@en-us ;
    dcterms:description "\"Dyne Centimeter\" is a C.G.S System unit for  'Torque' expressed as $dyn-cm$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-GAUSS> ;
    qudt:conversionMultiplier 0.0000001 ;
    qudt:conversionMultiplierSN 1e-07 ;
    qudt:derivedUnitOfSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-GAUSS> ;
    qudt:expression "$dyn-cm$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:DYN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:CentiM ] ;
    qudt:hasQuantityKind quantitykind:MomentOfForce,
        quantitykind:Torque ;
    qudt:iec61360Code "0112/2///62720#UAA423"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA423"^^xsd:anyURI ;
    qudt:symbol "dyn·cm"^^xsd:string ;
    qudt:ucumCode "dyn.cm"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "J94"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DYN-M a qudt:Unit ;
    rdfs:label "Dyne Metre"^^xsd:string,
        "Dyne Metre"@en,
        "Dyne Meter"@en-us ;
    dcterms:description "[CGS] unit of the rotational moment"^^xsd:string ;
    qudt:conversionMultiplier 0.00001 ;
    qudt:conversionMultiplierSN 1e-05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:DYN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind quantitykind:MomentOfForce,
        quantitykind:Torque ;
    qudt:iec61360Code "0112/2///62720#UAB419"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB419"^^xsd:anyURI ;
    qudt:symbol "dyn·m"^^xsd:string ;
    qudt:ucumCode "dyn.m"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "M97"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DYN-PER-CentiM a qudt:Unit ;
    rdfs:label "Dyne per Centimetre"^^xsd:string,
        "Dyne per Centimetre"@en,
        "Dyne per Centimeter"@en-us ;
    dcterms:description "CGS unit of the surface tension"^^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-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:CentiM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:DYN ] ;
    qudt:hasQuantityKind quantitykind:ForcePerLength ;
    qudt:iec61360Code "0112/2///62720#UAB106"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB106"^^xsd:anyURI ;
    qudt:plainTextDescription "CGS unit of the surface tension"^^xsd:string ;
    qudt:symbol "dyn/cm"^^xsd:string ;
    qudt:ucumCode "dyn.cm-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "DX"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q106455582> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DecaC a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Decacoulomb"^^xsd:string,
        "Decacoulomb"@cs,
        "Dekacoulomb"@de,
        "Decacoulomb"@en,
        "Decaculombio"@es,
        "Decacoulomb"@fr,
        "Decacoulomb"@hu,
        "Decacoulomb"@it,
        "Decacoulomb"@ms,
        "Decakulomb"@pl,
        "Decacoulomb"@ro,
        "Decacoulomb"@sl,
        "Decacoulomb"@tr ;
    dcterms:description "A DecaCoulomb is $10 C$."^^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 10.0 ;
    qudt:conversionMultiplierSN 1e+01 ;
    qudt:derivedUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L0I0M0H0T1D0> ;
    qudt:hasQuantityKind quantitykind:ElectricCharge ;
    qudt:prefix <http://qudt.org/vocab/prefix/Deca> ;
    qudt:scalingOf unit:C ;
    qudt:symbol "daC"^^xsd:string ;
    qudt:ucumCode "daC"^^qudt:UCUMcs ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q95379491> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> ;
    prov:wasDerivedFrom unit:C .

unit:DecaL a qudt:Unit ;
    rdfs:label "Decalitre"^^xsd:string,
        "Decalitre"@en,
        "Decaliter"@en-us ;
    dcterms:description "10-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.01 ;
    qudt:conversionMultiplierSN 1e-02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T0D0> ;
    qudt:hasQuantityKind quantitykind:Volume ;
    qudt:iec61360Code "0112/2///62720#UAB115"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB115"^^xsd:anyURI ;
    qudt:plainTextDescription "10-fold of the unit litre"^^xsd:string ;
    qudt:prefix <http://qudt.org/vocab/prefix/Deca> ;
    qudt:scalingOf unit:L ;
    qudt:symbol "daL"^^xsd:string ;
    qudt:ucumCode "daL"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "A44"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q2637946> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DecaM3 a qudt:Unit ;
    rdfs:label "Cubic Decametre"^^xsd:string,
        "Decametr Krychlový"@cs,
        "Kubikdekameter"@de,
        "Cubic Decametre"@en,
        "Cubic Decameter"@en-us,
        "Decametro Cúbico"@es,
        "Decamètre Cube"@fr,
        "Decametro Cubo"@it,
        "Decameter Kubik"@ms,
        "Decametr Sześcienny"@pl,
        "Decametru Cub"@ro,
        "Kubični Decameter"@sl,
        "Decametreküp"@tr ;
    dcterms:description "1 000-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 1000.0 ;
    qudt:conversionMultiplierSN 1e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:DecaM ] ;
    qudt:hasQuantityKind quantitykind:Volume ;
    qudt:iec61360Code "0112/2///62720#UAB179"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB179"^^xsd:anyURI ;
    qudt:plainTextDescription "1 000-fold of the power of the SI base unit metre by exponent 3"^^xsd:string ;
    qudt:symbol "dam³"^^xsd:string ;
    qudt:ucumCode "dam3"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "DMA"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q5198770> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DeciC a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Decicoulomb"^^xsd:string,
        "Decicoulomb"@cs,
        "Decicoulomb"@de,
        "Decicoulomb"@en,
        "Deciculombio"@es,
        "Decicoulomb"@fr,
        "Decicoulomb"@hu,
        "Decicoulomb"@it,
        "Decicoulomb"@ms,
        "Decikulomb"@pl,
        "Decicoulomb"@ro,
        "Decicoulomb"@sl,
        "Decicoulomb"@tr ;
    dcterms:description "A DeciCoulomb is $10^{-1} C$."^^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.1 ;
    qudt:conversionMultiplierSN 1e-01 ;
    qudt:derivedUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L0I0M0H0T1D0> ;
    qudt:hasQuantityKind quantitykind:ElectricCharge ;
    qudt:prefix <http://qudt.org/vocab/prefix/Deci> ;
    qudt:scalingOf unit:C ;
    qudt:symbol "dC"^^xsd:string ;
    qudt:ucumCode "dC"^^qudt:UCUMcs ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q95379588> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> ;
    prov:wasDerivedFrom unit:C .

unit:DeciM3-PER-DAY a qudt:Unit ;
    rdfs:label "Cubic Decimetre per Day"^^xsd:string,
        "Cubic Decimetre per Day"@en,
        "Cubic Decimeter per Day"@en-us ;
    dcterms:description "0,001-fold of the power of the SI base unit metre with the exponent 3 divided by the unit for time 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/A0E0L3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:DeciM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DAY ] ;
    qudt:hasQuantityKind quantitykind:VolumeFlowRate,
        quantitykind:VolumePerTime ;
    qudt:iec61360Code "0112/2///62720#UAA415"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA415"^^xsd:anyURI ;
    qudt:plainTextDescription "0,001-fold of the power of the SI base unit metre with the exponent 3 divided by the unit for time day"^^xsd:string ;
    qudt:symbol "dm³/d"^^xsd:string ;
    qudt:ucumCode "dm3.d-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "J90"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DeciM3-PER-HR a qudt:Unit ;
    rdfs:label "Cubic Decimetre per Hour"^^xsd:string,
        "Cubic Decimetre per Hour"@en,
        "Cubic Decimeter per Hour"@en-us ;
    dcterms:description "0.001-fold of the power of the SI base unit metre with the exponent 3 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/A0E0L3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:DeciM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ] ;
    qudt:hasQuantityKind quantitykind:VolumeFlowRate,
        quantitykind:VolumePerTime ;
    qudt:iec61360Code "0112/2///62720#UAA416"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA416"^^xsd:anyURI ;
    qudt:plainTextDescription "0,001-fold of the power of the SI base unit metre with the exponent 3 divided by the unit hour"^^xsd:string ;
    qudt:symbol "dm³/h"^^xsd:string ;
    qudt:ucumCode "dm3.h-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "E92"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q102178883> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DeciM3-PER-MIN a qudt:Unit ;
    rdfs:label "Cubic Decimetre per Minute"^^xsd:string,
        "Cubic Decimetre per Minute"@en,
        "Cubic Decimeter per Minute"@en-us ;
    dcterms:description "0.001-fold of the power of the SI base unit metre with the exponent 3 divided by the unit for time 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/A0E0L3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MIN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:DeciM ] ;
    qudt:hasQuantityKind quantitykind:VolumeFlowRate,
        quantitykind:VolumePerTime ;
    qudt:iec61360Code "0112/2///62720#UAA418"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA418"^^xsd:anyURI ;
    qudt:plainTextDescription "0,001-fold of the power of the SI base unit metre with the exponent 3 divided by the unit for time minute"^^xsd:string ;
    qudt:symbol "dm³/min"^^xsd:string ;
    qudt:ucumCode "dm3.min-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "J92"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DeciM3-PER-MOL a qudt:Unit ;
    rdfs:label "Cubic Decimetre per Mole"^^xsd:string,
        "Decimetr Krychlový na Mol"@cs,
        "Kubikdecimeter pro Mol"@de,
        "Cubic Decimetre per Mole"@en,
        "Cubic Decimeter per Mole"@en-us,
        "Decimetro Cúbico por Mol"@es,
        "Decimètre Cube par Mole"@fr,
        "Decimetro Cubo per Mole"@it,
        "Decimeter Kubik per Mole"@ms,
        "Decimetr Sześcienny na Mol"@pl,
        "Decimetru Cub pe Mol"@ro,
        "Kubični Decimeter na Mol"@sl,
        "Decimetreküp per Mol"@tr ;
    dcterms:description "0,001-fold of the power of the SI base unit metre with the exponent 3 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-1E0L3I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MOL ],
        [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:DeciM ] ;
    qudt:hasQuantityKind quantitykind:MolarRefractivity,
        quantitykind:MolarVolume ;
    qudt:hasReciprocalUnit unit:MOL-PER-DeciM3 ;
    qudt:iec61360Code "0112/2///62720#UAA419"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA419"^^xsd:anyURI ;
    qudt:plainTextDescription "0,001-fold of the power of the SI base unit metre with the exponent 3 divided by the SI base unit mol"^^xsd:string ;
    qudt:symbol "dm³/mol"^^xsd:string ;
    qudt:ucumCode "dm3.mol-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "A37"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q24008536> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DeciM3-PER-SEC a qudt:Unit ;
    rdfs:label "Cubic Decimetre per Second"^^xsd:string,
        "Decimetr Krychlový na Sekunda"@cs,
        "Kubikdecimeter pro Sekunde"@de,
        "Cubic Decimetre per Second"@en,
        "Cubic Decimeter per Second"@en-us,
        "Decimetro Cúbico por Segundo"@es,
        "Decimètre Cube par Seconde"@fr,
        "Decimetro Cubo per Secondo"@it,
        "Decimeter Kubik per Saat"@ms,
        "Decimetr Sześcienny na Sekunda"@pl,
        "Decimetru Cub pe Secundă"@ro,
        "Kubični Decimeter na Sekunda"@sl,
        "Decimetreküp per Saniye"@tr ;
    dcterms:description "0,001-fold of the power of the SI base unit metre with the exponent 3 divided by the unit for time 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/A0E0L3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:DeciM ] ;
    qudt:hasQuantityKind quantitykind:VolumeFlowRate,
        quantitykind:VolumePerTime ;
    qudt:iec61360Code "0112/2///62720#UAA420"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA420"^^xsd:anyURI ;
    qudt:plainTextDescription "0,001-fold of the power of the SI base unit metre with the exponent 3 divided by the unit for time second"^^xsd:string ;
    qudt:symbol "dm³/s"^^xsd:string ;
    qudt:ucumCode "dm3.s-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "J93"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DeciN-M a qudt:Unit ;
    rdfs:label "Decinewton Metre"^^xsd:string,
        "Decinewton Metr"@cs,
        "Decinewton Meter"@de,
        "Decinewton Metre"@en,
        "Decinewton Meter"@en-us,
        "Decinewton Metro"@es,
        "Decinewton Mètre"@fr,
        "Decinewton Metro"@it,
        "Decinewton Meter"@ms,
        "Deciniuton Metr"@pl,
        "Decinewton Metru"@ro,
        "Decinewton Meter"@sl,
        "Decinewton Metre"@tr ;
    dcterms:description "0.1-fold of the product of the derived SI unit joule and 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.1 ;
    qudt:conversionMultiplierSN 1e-01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:DeciN ] ;
    qudt:hasQuantityKind quantitykind:MomentOfForce,
        quantitykind:Torque ;
    qudt:iec61360Code "0112/2///62720#UAB084"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB084"^^xsd:anyURI ;
    qudt:plainTextDescription "0.1-fold of the product of the derived SI unit joule and the SI base unit metre"^^xsd:string ;
    qudt:symbol "dN·m"^^xsd:string ;
    qudt:ucumCode "dN.m"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "DN"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q106645290> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DeciS a qudt:Unit ;
    rdfs:label "Decisiemens"^^xsd:string,
        "Decisiemens"@cs,
        "Decisiemens"@de,
        "Decisiemens"@en,
        "Decisiemens"@es,
        "Decisiemens"@fr,
        "Decisiemens"@hu,
        "Decisiemens"@it,
        "Decisiemens"@ms,
        "Decisimens"@pl,
        "Decisiemens"@ro,
        "Decisiemens"@sl,
        "Decisiemens"@tr ;
    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 0.1 ;
    qudt:conversionMultiplierSN 1e-01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E2L-2I0M-1H0T3D0> ;
    qudt:hasQuantityKind quantitykind:Admittance,
        quantitykind:Conductance ;
    qudt:prefix <http://qudt.org/vocab/prefix/Deci> ;
    qudt:scalingOf unit:S ;
    qudt:symbol "dS"^^xsd:string ;
    qudt:ucumCode "dS"^^qudt:UCUMcs ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q95676297> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:ERG-PER-CentiM3 a qudt:Unit ;
    rdfs:label "Erg per Cubic Centimetre"^^xsd:string,
        "Erg per Cubic Centimetre"@en,
        "Erg per Cubic Centimeter"@en-us ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-GAUSS> ;
    qudt:conversionMultiplier 0.1 ;
    qudt:conversionMultiplierSN 1e-01 ;
    qudt:derivedUnitOfSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-GAUSS> ;
    qudt:expression "$erg-per-cm3$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:CentiM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:ERG ] ;
    qudt:hasQuantityKind quantitykind:EnergyDensity ;
    qudt:iec61360Code "0112/2///62720#UAB146"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB146"^^xsd:anyURI ;
    qudt:symbol "erg/cm³"^^xsd:string ;
    qudt:ucumCode "erg.cm-3"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "A60"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q107361161> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:ExaBIT a qudt:Unit ;
    rdfs:label "Exabit"^^xsd:string,
        "Exabit"@en ;
    qudt:conversionMultiplier 693147180559945309.41723212145818 ;
    qudt:conversionMultiplierSN 6.931472e+17 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:InformationEntropy ;
    qudt:prefix <http://qudt.org/vocab/prefix/Exa> ;
    qudt:scalingOf unit:BIT ;
    qudt:symbol "Eb"^^xsd:string ;
    qudt:ucumCode "Ebit"^^qudt:UCUMcs ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q1195111> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:ExaC a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Exacoulomb"^^xsd:string,
        "Exacoulomb"@cs,
        "Exacoulomb"@de,
        "Exacoulomb"@en,
        "Exaculombio"@es,
        "Exacoulomb"@fr,
        "Exacoulomb"@hu,
        "Exacoulomb"@it,
        "Exacoulomb"@ms,
        "Exakulomb"@pl,
        "Exacoulomb"@ro,
        "Exacoulomb"@sl,
        "Exacoulomb"@tr ;
    dcterms:description "An ExaCoulomb is $10^{18} C$."^^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 1000000000000000000.0 ;
    qudt:conversionMultiplierSN 1e+18 ;
    qudt:derivedUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L0I0M0H0T1D0> ;
    qudt:hasQuantityKind quantitykind:ElectricCharge ;
    qudt:prefix <http://qudt.org/vocab/prefix/Exa> ;
    qudt:scalingOf unit:C ;
    qudt:symbol "EC"^^xsd:string ;
    qudt:ucumCode "EC"^^qudt:UCUMcs ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q95379596> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> ;
    prov:wasDerivedFrom unit:C .

unit:F a qudt:Unit ;
    rdfs:label "Faraday"^^xsd:string,
        "Faraday"@en ;
    dcterms:description "\"Faraday\" is a unit for  'Electric Charge' expressed as $F$."^^qudt:LatexString ;
    qudt:conversionMultiplier 96485.3399 ;
    qudt:conversionMultiplierSN 9.648534e+04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L0I0M0H0T1D0> ;
    qudt:hasQuantityKind quantitykind:ElectricCharge ;
    qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/faraday> ;
    qudt:scalingOf unit:C ;
    qudt:symbol "F"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q1396128> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:FBM a qudt:Unit ;
    rdfs:label "Board Foot"^^xsd:string,
        "Board Foot"@en ;
    dcterms:description "The board-foot is a specialized unit of measure for the volume of lumber in the United States and Canada. It is the volume of a one-foot length of a board one foot wide and one inch thick. Board-foot can be abbreviated FBM (for 'foot, board measure'), BDFT, or BF. Thousand board-feet can be abbreviated as MFBM, MBFT or MBF. "^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 0.00236 ;
    qudt:conversionMultiplierSN 2.36e-03 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T0D0> ;
    qudt:hasQuantityKind quantitykind:Volume ;
    qudt:scalingOf unit:M3 ;
    qudt:symbol "BDFT"^^xsd:string ;
    qudt:ucumCode "[bf_i]"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "BFT"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q974493> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:FT-LB_F-PER-FT2 a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Foot Pound Force per Square Foot"^^xsd:string,
        "Foot Pound Force per Square Foot"@en ;
    dcterms:description "\"Foot Pound per Square Foot\" is an Imperial unit for  'Energy Per Area' expressed as $ft-lbf/ft^{2}$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 14.5939035919985 ;
    qudt:conversionMultiplierSN 1.45939e+01 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:expression "$ft-lbf/ft^{2}$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-2D0> ;
    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:FT ] ;
    qudt:hasQuantityKind quantitykind:EnergyPerArea ;
    qudt:symbol "ft·lbf/ft²"^^xsd:string ;
    qudt:ucumCode "[ft_i].[lbf_av].[ft_i]-2"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:FT-LB_F-PER-M2 a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Foot Pound Force per Square Metre"^^xsd:string,
        "Foot Pound Force per Square Metre"@en,
        "Foot Pound Force per Square Meter"@en-us ;
    dcterms:description "\"Foot Pound Force per Square Meter\" is a unit for  'Energy Per Area' expressed as $ft-lbf/m^{2}$."^^qudt:LatexString ;
    qudt:conversionMultiplier 1.35581800916358032544 ;
    qudt:conversionMultiplierSN 1.355818e+00 ;
    qudt:expression "$ft-lbf/m^{2}$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB_F ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:FT ] ;
    qudt:hasQuantityKind quantitykind:EnergyPerArea ;
    qudt:symbol "ft·lbf/m²"^^xsd:string ;
    qudt:ucumCode "[ft_i].[lbf_av].m-2"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:FT2-HR-DEG_F-PER-BTU_IT a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Square Foot Hour Degree Fahrenheit per British Thermal Unit (international Definition)"^^xsd:string,
        "Square Foot Hour Degree Fahrenheit per British Thermal Unit (international Definition)"@en ;
    dcterms:description "$\\textit{Square Foot Hour Degree Fahrenheit per BTU}$ is an Imperial unit for 'Thermal Insulance' expressed as $(degF-h-ft^{2})/Btu$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 0.1761101836823058407309515389966389 ;
    qudt:conversionMultiplierSN 1.761102e-01 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:expression "$sqft-h-degF/btu$"^^qudt:LatexString ;
    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:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:DEG_F ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BTU_IT ] ;
    qudt:hasQuantityKind quantitykind:ThermalInsulance ;
    qudt:hasReciprocalUnit unit:BTU_IT-PER-FT2-HR-DEG_F,
        unit:BTU_IT-PER-HR-FT2-DEG_F ;
    qudt:symbol "ft²·h·°F/Btu{IT}"^^xsd:string ;
    qudt:ucumCode "[ft_i]2.h.[degF].[Btu_IT]-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:FT3-PER-DAY a qudt:Unit ;
    rdfs:label "Cubic Foot per Day"^^xsd:string,
        "Cubic Foot per Day"@en ;
    dcterms:description "power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 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.0000003277412799999999999999999999999999 ;
    qudt:conversionMultiplierSN 3.277413e-07 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DAY ] ;
    qudt:hasQuantityKind quantitykind:VolumeFlowRate,
        quantitykind:VolumePerTime ;
    qudt:iec61360Code "0112/2///62720#UAA458"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA458"^^xsd:anyURI ;
    qudt:plainTextDescription "power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 divided by the unit for time day"^^xsd:string ;
    qudt:symbol "ft³/d"^^xsd:string ;
    qudt:ucumCode "[ft_i]3.d-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "K22"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:FT3-PER-HR a qudt:Unit ;
    rdfs:label "Cubic Foot per Hour"^^xsd:string,
        "Cubic Foot per Hour"@en ;
    dcterms:description "power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 divided by the unit hour"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 0.000007865790720000000000000000000000001 ;
    qudt:conversionMultiplierSN 7.865791e-06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:FT ] ;
    qudt:hasQuantityKind quantitykind:VolumeFlowRate,
        quantitykind:VolumePerTime ;
    qudt:iec61360Code "0112/2///62720#UAA459"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA459"^^xsd:anyURI ;
    qudt:plainTextDescription "power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 divided by the unit hour"^^xsd:string ;
    qudt:symbol "ft³/h"^^xsd:string ;
    qudt:ucumCode "[ft_i]3.h-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "2K"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:FT3-PER-SEC a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Cubic Foot per Second"^^xsd:string,
        "Cubic Foot per Second"@en ;
    dcterms:description "\"Cubic Foot per Second\" is an Imperial unit for $ \\textit{Volume Per Unit Time}$ expressed as $ft^3/s$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 0.028316846592 ;
    qudt:conversionMultiplierSN 2.831685e-02 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:expression "$ft^{3}/s$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind quantitykind:VolumeFlowRate,
        quantitykind:VolumePerTime ;
    qudt:iec61360Code "0112/2///62720#UAA462"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA462"^^xsd:anyURI ;
    qudt:symbol "ft³/s"^^xsd:string ;
    qudt:ucumCode "[ft_i]3.s-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "E17"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q5196162> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:FT4 a qudt:Unit ;
    rdfs:label "Quartic Foot"^^xsd:string,
        "Quartic Foot"@en ;
    dcterms:description "power of the unit foot according to the Anglo-American and Imperial system of units by exponent 4"^^xsd:string ;
    qudt:conversionMultiplier 0.0086309748412416 ;
    qudt:conversionMultiplierSN 8.630975e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L4I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 4 ;
            qudt:hasUnit unit:FT ] ;
    qudt:hasQuantityKind quantitykind:SecondAxialMomentOfArea,
        quantitykind:SecondMomentOfArea,
        quantitykind:SecondPolarMomentOfArea ;
    qudt:iec61360Code "0112/2///62720#UAB209"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB209"^^xsd:anyURI ;
    qudt:symbol "ft⁴"^^xsd:string ;
    qudt:ucumCode "[ft_i]4"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "N27"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:FemtoC a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Femtocoulomb"^^xsd:string,
        "Femtocoulomb"@cs,
        "Femtocoulomb"@de,
        "Femtocoulomb"@en,
        "Femtoculombio"@es,
        "Femtocoulomb"@fr,
        "Femtocoulomb"@hu,
        "Femtocoulomb"@it,
        "Femtocoulomb"@ms,
        "Femtokulomb"@pl,
        "Femtocoulomb"@ro,
        "Femtocoulomb"@sl,
        "Femtocoulomb"@tr ;
    dcterms:description "A FemtoCoulomb is $10^{-15} C$."^^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.000000000000001 ;
    qudt:conversionMultiplierSN 1e-15 ;
    qudt:derivedUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L0I0M0H0T1D0> ;
    qudt:hasQuantityKind quantitykind:ElectricCharge ;
    qudt:prefix <http://qudt.org/vocab/prefix/Femto> ;
    qudt:scalingOf unit:C ;
    qudt:symbol "fC"^^xsd:string ;
    qudt:ucumCode "fC"^^qudt:UCUMcs ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q95446670> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> ;
    prov:wasDerivedFrom unit:C .

unit:FemtoL a qudt:Unit ;
    rdfs:label "Femtolitre"^^xsd:string,
        "Femtolitre"@en,
        "Femtoliter"@en-us ;
    dcterms:description "0.000000000000001-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.000000000000000001 ;
    qudt:conversionMultiplierSN 1e-18 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T0D0> ;
    qudt:hasQuantityKind quantitykind:Volume ;
    qudt:plainTextDescription "0.000000000000001-fold of the unit litre"^^xsd:string ;
    qudt:prefix <http://qudt.org/vocab/prefix/Femto> ;
    qudt:scalingOf unit:L ;
    qudt:symbol "fL"^^xsd:string ;
    qudt:ucumCode "fL"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "Q32"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q3312063> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GAL_UK-PER-DAY a qudt:Unit ;
    rdfs:label "Gallon (UK) per Day"^^xsd:string,
        "Gallon (UK) per Day"@en ;
    dcterms:description "unit gallon (UK dry or liq.) according to the Imperial system of units divided by the SI unit day"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL> ;
    qudt:conversionMultiplier 0.00000005261678240740740740740740740740739 ;
    qudt:conversionMultiplierSN 5.261678e-08 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GAL_UK ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DAY ] ;
    qudt:hasQuantityKind quantitykind:VolumeFlowRate,
        quantitykind:VolumePerTime ;
    qudt:iec61360Code "0112/2///62720#UAA501"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA501"^^xsd:anyURI ;
    qudt:plainTextDescription "unit gallon (UK dry or liq.) according to the Imperial system of units divided by the SI unit day"^^xsd:string ;
    qudt:symbol "gal{UK}/d"^^xsd:string ;
    qudt:ucumCode "[gal_br].d-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "K26"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GAL_UK-PER-HR a qudt:Unit ;
    rdfs:label "Gallon (UK) per Hour"^^xsd:string,
        "Gallon (UK) per Hour"@en ;
    dcterms:description "unit gallon (UK dry or Liq.) according to the Imperial system of units divided by the SI unit hour"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL> ;
    qudt:conversionMultiplier 0.000001262802777777777777777777777777778 ;
    qudt:conversionMultiplierSN 1.262803e-06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GAL_UK ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ] ;
    qudt:hasQuantityKind quantitykind:VolumeFlowRate,
        quantitykind:VolumePerTime ;
    qudt:iec61360Code "0112/2///62720#UAA502"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA502"^^xsd:anyURI ;
    qudt:plainTextDescription "unit gallon (UK dry or Liq.) according to the Imperial system of units divided by the SI unit hour"^^xsd:string ;
    qudt:symbol "gal{UK}/h"^^xsd:string ;
    qudt:ucumCode "[gal_br].h-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "K27"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GAL_UK-PER-MIN a qudt:Unit ;
    rdfs:label "Gallon (UK) per Minute"^^xsd:string,
        "Gallon (UK) per Minute"@en ;
    dcterms:description "unit gallon (UK dry or liq.) according to the Imperial system of units divided by the SI unit minute"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL> ;
    qudt:conversionMultiplier 0.00007576816666666666666666666666666668 ;
    qudt:conversionMultiplierSN 7.576817e-05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GAL_UK ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MIN ] ;
    qudt:hasQuantityKind quantitykind:VolumeFlowRate,
        quantitykind:VolumePerTime ;
    qudt:iec61360Code "0112/2///62720#UAA503"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA503"^^xsd:anyURI ;
    qudt:plainTextDescription "unit gallon (UK dry or liq.) according to the Imperial system of units divided by the SI unit minute"^^xsd:string ;
    qudt:symbol "gal{UK}/min"^^xsd:string ;
    qudt:ucumCode "[gal_br].min-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G3"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GAL_UK-PER-SEC a qudt:Unit ;
    rdfs:label "Gallon (UK) per Second"^^xsd:string,
        "Gallon (UK) per Second"@en ;
    dcterms:description "unit gallon (UK dry or liq.) according to the Imperial system of units divided by the SI base unit second"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL> ;
    qudt:conversionMultiplier 0.00454609 ;
    qudt:conversionMultiplierSN 4.54609e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GAL_UK ] ;
    qudt:hasQuantityKind quantitykind:VolumeFlowRate,
        quantitykind:VolumePerTime ;
    qudt:iec61360Code "0112/2///62720#UAA504"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA504"^^xsd:anyURI ;
    qudt:plainTextDescription "unit gallon (UK dry or liq.) according to the Imperial system of units divided by the SI base unit second"^^xsd:string ;
    qudt:symbol "gal{UK}/s"^^xsd:string ;
    qudt:ucumCode "[gal_br].s-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "K28"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GAL_US-PER-DAY a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Us Gallon per Day"^^xsd:string,
        "Us Gallon per Day"@en ;
    dcterms:description "\"US Gallon per Day\" is a unit for  'Volume Per Unit Time' expressed as $gal/d$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 0.00000004381263638888888888888888888888887 ;
    qudt:conversionMultiplierSN 4.381264e-08 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/USCS> ;
    qudt:expression "$gal/d$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DAY ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GAL_US ] ;
    qudt:hasQuantityKind quantitykind:VolumeFlowRate,
        quantitykind:VolumePerTime ;
    qudt:iec61360Code "0112/2///62720#UAA506"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA506"^^xsd:anyURI ;
    qudt:symbol "gal{US}/d"^^xsd:string ;
    qudt:ucumCode "[gal_us].d-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "GB"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GAL_US-PER-HR a qudt:Unit ;
    rdfs:label "Us Gallon per Hour"^^xsd:string,
        "Us Gallon per Hour"@en ;
    dcterms:description "unit gallon (US, liq.) according to the Anglo-American system of units divided by the SI unit hour"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 0.000001051503273333333333333333333333333 ;
    qudt:conversionMultiplierSN 1.051503e-06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GAL_US ] ;
    qudt:hasQuantityKind quantitykind:VolumeFlowRate,
        quantitykind:VolumePerTime ;
    qudt:iec61360Code "0112/2///62720#UAA507"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA507"^^xsd:anyURI ;
    qudt:plainTextDescription "unit gallon (US, liq.) according to the Anglo-American system of units divided by the SI unit hour"^^xsd:string ;
    qudt:symbol "gal{US}/h"^^xsd:string ;
    qudt:ucumCode "[gal_us].h-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G50"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GAL_US-PER-MIN a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Us Gallon per Minute"^^xsd:string,
        "Us Gallon per Minute"@en ;
    dcterms:description "\"US Gallon per Minute\" is a C.G.S System unit for  'Volume Per Unit Time' expressed as $gal/min$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 0.00006309019640000000000000000000000001 ;
    qudt:conversionMultiplierSN 6.30902e-05 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/USCS> ;
    qudt:expression "$gal/min$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GAL_US ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MIN ] ;
    qudt:hasQuantityKind quantitykind:VolumeFlowRate,
        quantitykind:VolumePerTime ;
    qudt:iec61360Code "0112/2///62720#UAA508"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA508"^^xsd:anyURI ;
    qudt:symbol "gal{US}/min"^^xsd:string ;
    qudt:ucumCode "[gal_us].min-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G2"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q64996135> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GAL_US-PER-SEC a qudt:Unit ;
    rdfs:label "Us Gallon per Second"^^xsd:string,
        "Us Gallon per Second"@en ;
    dcterms:description "unit gallon (US, liq.) according to the Anglo-American system of units divided by the SI base unit second"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 0.003785411784 ;
    qudt:conversionMultiplierSN 3.785412e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GAL_US ] ;
    qudt:hasQuantityKind quantitykind:VolumeFlowRate,
        quantitykind:VolumePerTime ;
    qudt:iec61360Code "0112/2///62720#UAA509"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA509"^^xsd:anyURI ;
    qudt:plainTextDescription "unit gallon (US, liq.) according to the Anglo-American system of units divided by the SI base unit second"^^xsd:string ;
    qudt:symbol "gal{US}/s"^^xsd:string ;
    qudt:ucumCode "[gal_us].s-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "K30"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GI_UK-PER-DAY a qudt:Unit ;
    rdfs:label "Gill (UK) per Day"^^xsd:string,
        "Gill (UK) per Day"@en ;
    dcterms:description "unit of the volume gill (UK) for fluids according to the Imperial system of units divided by the unit for time day"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL> ;
    qudt:conversionMultiplier 0.000000001644274305555555555555555555555555 ;
    qudt:conversionMultiplierSN 1.644274e-09 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DAY ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GI_UK ] ;
    qudt:hasQuantityKind quantitykind:VolumeFlowRate,
        quantitykind:VolumePerTime ;
    qudt:iec61360Code "0112/2///62720#UAA512"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA512"^^xsd:anyURI ;
    qudt:plainTextDescription "unit of the volume gill (UK) for fluids according to the Imperial system of units divided by the unit for time day"^^xsd:string ;
    qudt:symbol "gill{UK}/d"^^xsd:string ;
    qudt:ucumCode "[gil_br].d-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "K32"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GI_UK-PER-HR a qudt:Unit ;
    rdfs:label "Gill (UK) per Hour"^^xsd:string,
        "Gill (UK) per Hour"@en ;
    dcterms:description "unit of the volume gill (UK) for fluids according to the Imperial system of units divided by the unit for time hour"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL> ;
    qudt:conversionMultiplier 0.00000003946258333333333333333333333333334 ;
    qudt:conversionMultiplierSN 3.946258e-08 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GI_UK ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ] ;
    qudt:hasQuantityKind quantitykind:VolumeFlowRate,
        quantitykind:VolumePerTime ;
    qudt:iec61360Code "0112/2///62720#UAA513"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA513"^^xsd:anyURI ;
    qudt:plainTextDescription "unit of the volume gill (UK) for fluids according to the Imperial system of units divided by the unit for time hour"^^xsd:string ;
    qudt:symbol "gill{UK}/h"^^xsd:string ;
    qudt:ucumCode "[gil_br].h-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "K33"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GI_UK-PER-MIN a qudt:Unit ;
    rdfs:label "Gill (UK) per Minute"^^xsd:string,
        "Gill (UK) per Minute"@en ;
    dcterms:description "unit of the volume gill (UK) for fluids according to the Imperial system of units divided by the unit for time minute"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL> ;
    qudt:conversionMultiplier 0.000002367755 ;
    qudt:conversionMultiplierSN 2.367755e-06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GI_UK ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MIN ] ;
    qudt:hasQuantityKind quantitykind:VolumeFlowRate,
        quantitykind:VolumePerTime ;
    qudt:iec61360Code "0112/2///62720#UAA514"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA514"^^xsd:anyURI ;
    qudt:plainTextDescription "unit of the volume gill (UK) for fluids according to the Imperial system of units divided by the unit for time minute"^^xsd:string ;
    qudt:symbol "gill{UK}/min"^^xsd:string ;
    qudt:ucumCode "[gil_br].min-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "K34"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GI_UK-PER-SEC a qudt:Unit ;
    rdfs:label "Gill (UK) per Second"^^xsd:string,
        "Gill (UK) per Second"@en ;
    dcterms:description "unit of the volume gill (UK) for fluids according to the Imperial system of units divided by the SI base unit second"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL> ;
    qudt:conversionMultiplier 0.0001420653 ;
    qudt:conversionMultiplierSN 1.420653e-04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GI_UK ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind quantitykind:VolumeFlowRate,
        quantitykind:VolumePerTime ;
    qudt:iec61360Code "0112/2///62720#UAA515"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA515"^^xsd:anyURI ;
    qudt:plainTextDescription "unit of the volume gill (UK) for fluids according to the Imperial system of units divided by the SI base unit second"^^xsd:string ;
    qudt:symbol "gill{UK}/s"^^xsd:string ;
    qudt:ucumCode "[gil_br].s-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "K35"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GI_US-PER-DAY a qudt:Unit ;
    rdfs:label "Gill (US) per Day"^^xsd:string,
        "Gill (US) per Day"@en ;
    dcterms:description "unit of the volume gill (US) for fluids according to the Anglo-American system of units divided by the unit for time day"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 0.000000001369144965277777777777777777777777 ;
    qudt:conversionMultiplierSN 1.369145e-09 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DAY ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GI_US ] ;
    qudt:hasQuantityKind quantitykind:VolumeFlowRate,
        quantitykind:VolumePerTime ;
    qudt:iec61360Code "0112/2///62720#UAA517"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA517"^^xsd:anyURI ;
    qudt:plainTextDescription "unit of the volume gill (US) for fluids according to the Anglo-American system of units divided by the unit for time day"^^xsd:string ;
    qudt:symbol "gill{US}/d"^^xsd:string ;
    qudt:ucumCode "[gil_us].d-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "K36"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GI_US-PER-HR a qudt:Unit ;
    rdfs:label "Gill (US) per Hour"^^xsd:string,
        "Gill (US) per Hour"@en ;
    dcterms:description "unit of the volume gill (US) for fluids according to the Anglo-American system of units divided by the unit for time hour"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 0.00000003285947916666666666666666666666667 ;
    qudt:conversionMultiplierSN 3.285948e-08 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GI_US ] ;
    qudt:hasQuantityKind quantitykind:VolumeFlowRate,
        quantitykind:VolumePerTime ;
    qudt:iec61360Code "0112/2///62720#UAA518"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA518"^^xsd:anyURI ;
    qudt:plainTextDescription "unit of the volume gill (US) for fluids according to the Anglo-American system of units divided by the unit for time hour"^^xsd:string ;
    qudt:symbol "gill{US}/h"^^xsd:string ;
    qudt:ucumCode "[gil_us].h-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "K37"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GI_US-PER-MIN a qudt:Unit ;
    rdfs:label "Gill (US) per Minute"^^xsd:string,
        "Gill (US) per Minute"@en ;
    dcterms:description "unit of the volume gill (US) for fluids according to the Anglo-American system of units divided by the unit for time minute"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 0.00000197156875 ;
    qudt:conversionMultiplierSN 1.971569e-06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GI_US ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MIN ] ;
    qudt:hasQuantityKind quantitykind:VolumeFlowRate,
        quantitykind:VolumePerTime ;
    qudt:iec61360Code "0112/2///62720#UAA519"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA519"^^xsd:anyURI ;
    qudt:plainTextDescription "unit of the volume gill (US) for fluids according to the Anglo-American system of units divided by the unit for time minute"^^xsd:string ;
    qudt:symbol "gill{US}/min"^^xsd:string ;
    qudt:ucumCode "[gil_us].min-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "K38"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GI_US-PER-SEC a qudt:Unit ;
    rdfs:label "Gill (US) per Second"^^xsd:string,
        "Gill (US) per Second"@en ;
    dcterms:description "unit of the volume gill (US) for fluids according to the Anglo-American system of units divided by the SI base unit second"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 0.000118294125 ;
    qudt:conversionMultiplierSN 1.182941e-04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GI_US ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind quantitykind:VolumeFlowRate,
        quantitykind:VolumePerTime ;
    qudt:iec61360Code "0112/2///62720#UAA520"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA520"^^xsd:anyURI ;
    qudt:plainTextDescription "unit of the volume gill (US) for fluids according to the Anglo-American system of units divided by the SI base unit second"^^xsd:string ;
    qudt:symbol "gill{US}/s"^^xsd:string ;
    qudt:ucumCode "[gil_us].s-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "K39"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GM-PER-HA a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Gram per Hectare"^^xsd:string,
        "Gram per Hectare"@en ;
    dcterms:description "Gram Per Hectare is a unit of mass per area. Gram Per Hectare (mg/ha) has a dimension of ML-3 where M is mass, and L is length. It can be converted to the corresponding standard SI unit kg/m2 by multiplying its value by a factor of 0.0000001."^^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.0000001 ;
    qudt:conversionMultiplierSN 1e-07 ;
    qudt:expression "\\(g/hare\\)"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M1H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HA ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GM ] ;
    qudt:hasQuantityKind quantitykind:MassPerArea ;
    qudt:symbol "g/ha"^^xsd:string ;
    qudt:ucumCode "g.har-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GT a qudt:Unit ;
    rdfs:label "Gross Tonnage"^^xsd:string,
        "Gross Tonnage"@en ;
    dcterms:description "The formula for calculating GT is given by ${ GT=V\\times (0.2+0.02\\times \\log _{10}(V))}$"^^qudt:LatexString ;
    qudt:conversionMultiplier 0.0 ;
    qudt:conversionMultiplierSN 0e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T0D0> ;
    qudt:hasQuantityKind quantitykind:Volume ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Gross_tonnage"^^xsd:anyURI ;
    qudt:latexDefinition "${ GT=V\\times (0.2+0.02\\times \\log _{10}(V))}$ where V is measured in cubic meters."^^qudt:LatexString ;
    qudt:plainTextDescription "Gross tonnage (GT, G.T. or gt) is a nonlinear measure of a ship's overall internal volume. Gross tonnage is different from gross register tonnage. Gross tonnage is used to determine things such as a ship's manning regulations, safety rules, registration fees, and port dues, whereas the older gross register tonnage is a measure of the volume of only certain enclosed spaces."^^xsd:string ;
    qudt:scalingOf unit:M3 ;
    qudt:symbol "G.T."^^xsd:string ;
    qudt:ucumCode "t{gross}"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "GT"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> ;
    rdfs:seeAlso unit:TON_Register .

unit:GigaBIT a qudt:Unit ;
    rdfs:label "Gigabit"^^xsd:string,
        "Gigabit"@en ;
    dcterms:description "1,000,000,000-fold of the unit bit"^^xsd:string ;
    qudt:conversionMultiplier 693147180.55994530941723212145818 ;
    qudt:conversionMultiplierSN 6.931472e+08 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:DatasetOfBits ;
    qudt:iec61360Code "0112/2///62720#UAB156"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB156"^^xsd:anyURI ;
    qudt:prefix <http://qudt.org/vocab/prefix/Giga> ;
    qudt:scalingOf unit:BIT ;
    qudt:symbol "Gb"^^xsd:string ;
    qudt:ucumCode "Gbit"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "B68"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q3105497> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GigaBYTE a qudt:CountingUnit,
        qudt:Unit ;
    rdfs:label "Gigabyte"^^xsd:string,
        "Gigabyte"@en ;
    dcterms:description "The gigabyte is a multiple of the unit byte for digital information storage. The prefix giga means $10^9$ in the International System of Units (SI), therefore 1 gigabyte is $1,000,000,000 \\; bytes$. The unit symbol for the gigabyte is $GB$ or $Gbyte$, but not $Gb$ (lower case b) which is typically used for the gigabit. Historically, the term has also been used in some fields of computer science and information technology to denote the $gibibyte$, or $1073741824 \\; bytes$."^^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 5545177444.47956247533785697166544 ;
    qudt:conversionMultiplierSN 5.545177e+09 ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Gigabyte"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:InformationEntropy ;
    qudt:iec61360Code "0112/2///62720#UAB185"^^xsd:string ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Gigabyte?oldid=493019145"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB185"^^xsd:anyURI ;
    qudt:prefix <http://qudt.org/vocab/prefix/Giga> ;
    qudt:scalingOf unit:BYTE ;
    qudt:symbol "GB"^^xsd:string ;
    qudt:ucumCode "GBy"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "E34"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q79738> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> ;
    skos:altLabel "gbyte"^^xsd:string .

unit:GigaOHM a qudt:Unit ;
    rdfs:label "Gigaohm"^^xsd:string,
        "Gigaohm"@cs,
        "Gigaohm"@de,
        "Gigaohm"@en,
        "Gigaohmio"@es,
        "Gigaohm"@fr,
        "Gigaohm"@hu,
        "Gigaohm"@it,
        "Gigaohm"@ms,
        "Gigaom"@pl,
        "Gigaohm"@ro,
        "Gigaohm"@sl,
        "Gigaohm"@tr ;
    dcterms:description "1,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 1000000000.0 ;
    qudt:conversionMultiplierSN 1e+09 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-2L2I0M1H0T-3D0> ;
    qudt:hasQuantityKind quantitykind:Resistance ;
    qudt:iec61360Code "0112/2///62720#UAA147"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA147"^^xsd:anyURI ;
    qudt:plainTextDescription "1 000 000 000-fold of the SI derived unit ohm"^^xsd:string ;
    qudt:prefix <http://qudt.org/vocab/prefix/Giga> ;
    qudt:scalingOf unit:OHM ;
    qudt:symbol "GΩ"^^xsd:string ;
    qudt:ucumCode "GOhm"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "A87"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q94479580> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:HART a qudt:Unit ;
    rdfs:label "Hartley"^^xsd:string,
        "Hartley"@en ;
    dcterms:description "The \"Hartley\" is a unit of information."^^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 2.3025850929940456840179914546844 ;
    qudt:conversionMultiplierSN 2.302585e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:InformationEntropy ;
    qudt:iec61360Code "0112/2///62720#UAB344"^^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%23UAB344"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31898"^^xsd:anyURI ;
    qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/hartley> ;
    qudt:scalingOf unit:NUM ;
    qudt:symbol "Hart"^^xsd:string ;
    qudt:uneceCommonCode "Q15"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q324923> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:HZ-PER-K a qudt:Unit ;
    rdfs:label "Hertz per Kelvin"^^xsd:string,
        "هرتز لكل كلفن"@ar,
        "Херц на Келвин"@bg,
        "Hertz na Kelvin"@cs,
        "Hertz pro Kelvin"@de,
        "Χερτζ ανά Κέλβιν"@el,
        "Hertz per Kelvin"@en,
        "Hercio por Kelvin"@es,
        "هرتز بر کلوین"@fa,
        "Hertz par Kelvin"@fr,
        "हर्ट्ज प्रति कैल्विन"@hi,
        "Hertz per Kelvin"@it,
        "ヘルツ毎立方メートル"@ja,
        "Hertzium per Kelvin"@la,
        "Hertz per Kelvin"@ms,
        "Herc na Kelwin"@pl,
        "Hertz por Kelvin"@pt,
        "Hertz pe Kelvin"@ro,
        "Герц на Кельвин"@ru,
        "Hertz na Kelvin"@sl,
        "Hertz per Kelvin"@tr ;
    dcterms:description """
  $\\textit{Hertz per Kelvin}$ is a unit for 'Inverse Time Temperature' expressed as $Hz K^{-1}$.
  """^^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 "$Hz 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:HZ ] ;
    qudt:hasQuantityKind quantitykind:InverseTimeTemperature ;
    qudt:symbol "Hz/K"^^xsd:string ;
    qudt:ucumCode "Hz.K-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:HZ-PER-T a qudt:Unit ;
    rdfs:label "Hertz per Tesla"^^xsd:string,
        "Херц на Тесла"@bg,
        "Hertz na Tesla"@cs,
        "Hertz pro Tesla"@de,
        "Χερτζ ανά Τέσλα"@el,
        "Hertz per Tesla"@en,
        "Hercio por Tesla"@es,
        "Hertz par Tesla"@fr,
        "Hertz per Tesla"@it,
        "Hertzium per Tesla"@la,
        "Hertz per Tesla"@ms,
        "Herc na Tesla"@pl,
        "Hertz por Tesla"@pt,
        "Hertz pe Tesla"@ro,
        "Герц на Тесла"@ru,
        "Hertz na Tesla"@sl,
        "Hertz per Tesla"@tr ;
    dcterms:description "\"Hertz per Tesla\" is a unit for  'Electric Charge Per Mass' expressed as $Hz T^{-1}$."^^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:derivedCoherentUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:expression "$Hz T^{-1}$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L0I0M-1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HZ ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:T ] ;
    qudt:hasQuantityKind quantitykind:ElectricChargePerMass ;
    qudt:symbol "Hz/T"^^xsd:string ;
    qudt:ucumCode "Hz.T-1"^^qudt:UCUMcs ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q21095810> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:HZ-PER-V a qudt:Unit ;
    rdfs:label "Hertz per Volt"^^xsd:string,
        "Херц на Волт"@bg,
        "Hertz na Volt"@cs,
        "Hertz pro Volt"@de,
        "Χερτζ ανά Βολτ"@el,
        "Hertz per Volt"@en,
        "Hercio por Voltio"@es,
        "Hertz par Volt"@fr,
        "Hertz per Volt"@it,
        "Hertzium per Voltium"@la,
        "Hertz per Volt"@ms,
        "Herc na Wolt"@pl,
        "Hertz por Volt"@pt,
        "Hertz pe Volt"@ro,
        "Герц на Вольт"@ru,
        "Hertz na Volt"@sl,
        "Hertz per Volt"@tr ;
    dcterms:description "In the Hertz per Volt standard the frequency of the note is directly related to the voltage. A pitch of a note goes up one octave when its frequency doubles, meaning that the voltage will have to double for every octave rise. Depending on the footage (octave) selected, nominally one volt gives 1000Hz, two volts 2000Hz and so on. In terms of notes, bottom C would be 0.25 volts, the next C up would be 0.5 volts, then 1V, 2V, 4V, 8V for the following octaves. This system was used mainly by Yamaha and Korg."^^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 "$Hz V^{-1}$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L-2I0M-1H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:V ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HZ ] ;
    qudt:hasQuantityKind quantitykind:InverseMagneticFlux ;
    qudt:symbol "Hz/V"^^xsd:string ;
    qudt:ucumCode "Hz.V-1"^^qudt:UCUMcs ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q101195156> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:H_Ab a qudt:Unit ;
    rdfs:label "Abhenry"^^xsd:string,
        "Abhenry"@en ;
    dcterms:description "Abhenry is the centimeter-gram-second electromagnetic unit of inductance, equal to one billionth of a henry."^^rdf:HTML ;
    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/Abhenry"^^xsd:anyURI ;
    qudt:derivedUnitOfSystem <http://qudt.org/vocab/sou/CGS-EMU> ;
    qudt:exactMatch unit:NanoH ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-2L2I0M1H0T-2D0> ;
    qudt:hasQuantityKind quantitykind:Inductance ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Abhenry?oldid=477198643"^^xsd:anyURI ;
    qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/abhenry> ;
    qudt:scalingOf unit:H ;
    qudt:symbol "abH"^^xsd:string ;
    qudt:ucumCode "nH"^^qudt:UCUMcs ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q4667368> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:H_Stat a qudt:Unit ;
    rdfs:label "Stathenry"^^xsd:string,
        "Stathenry"@en ;
    dcterms:description """
  The $\\text{Stathenry (statH)}$ is a unit in the category of Electric inductance. 
  It is also known as $tathenries$. 
  This unit is commonly used in the cgs unit system. 
  $Stathenry$ has a dimension of $ML^2T^{-2}I^{-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 H by multiplying its value by a factor of $8.987552 \\times 10^{11}$.
  """^^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-2D0> ;
    qudt:hasQuantityKind quantitykind:Inductance ;
    qudt:informativeReference "http://www.efunda.com/glossary/units/units--electric_inductance--stathenry.cfm"^^xsd:anyURI ;
    qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/stathenry> ;
    qudt:scalingOf unit:H ;
    qudt:symbol "statH"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q12955440> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:HectoC a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Hectocoulomb"^^xsd:string,
        "Hectocoulomb"@cs,
        "Hectocoulomb"@de,
        "Hectocoulomb"@en,
        "Hectoculombio"@es,
        "Hectocoulomb"@fr,
        "Hectocoulomb"@hu,
        "Ettocoulomb"@it,
        "Hectocoulomb"@ms,
        "Hectokulomb"@pl,
        "Hectocoulomb"@ro,
        "Hectocoulomb"@sl,
        "Hectocoulomb"@tr ;
    dcterms:description "\"HectoCoulomb\" is a unit for  'Electric Charge' expressed as $hC$."^^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 100.0 ;
    qudt:conversionMultiplierSN 1e+02 ;
    qudt:derivedUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L0I0M0H0T1D0> ;
    qudt:hasQuantityKind quantitykind:ElectricCharge ;
    qudt:prefix <http://qudt.org/vocab/prefix/Hecto> ;
    qudt:scalingOf unit:C ;
    qudt:symbol "hC"^^xsd:string ;
    qudt:ucumCode "hC"^^qudt:UCUMcs ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q95379580> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> ;
    prov:wasDerivedFrom unit:C .

unit:HectoL a qudt:Unit ;
    rdfs:label "Hectolitre"^^xsd:string,
        "Hectolitre"@en,
        "Hectoliter"@en-us ;
    dcterms:description "100-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.1 ;
    qudt:conversionMultiplierSN 1e-01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T0D0> ;
    qudt:hasQuantityKind quantitykind:Volume ;
    qudt:iec61360Code "0112/2///62720#UAA533"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA533"^^xsd:anyURI ;
    qudt:plainTextDescription "100-fold of the unit litre"^^xsd:string ;
    qudt:prefix <http://qudt.org/vocab/prefix/Hecto> ;
    qudt:scalingOf unit:L ;
    qudt:symbol "hL"^^xsd:string ;
    qudt:ucumCode "hL"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "HLT"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q2029519> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:IN-PDL a qudt:Unit ;
    rdfs:label "Inch Poundal"^^xsd:string,
        "Inch Poundal"@en ;
    dcterms:description "Unit of work (force multiplied by path) according to the Imperial system of units as a product unit inch multiplied by poundal. Product of the non SI-conform unit of the force poundal and the unit inch according to the Anglo-American and Imperial system of units."^^qudt:LatexString ;
    qudt:conversionMultiplier 0.0035116758411504 ;
    qudt:conversionMultiplierSN 3.511676e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PDL ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:IN ] ;
    qudt:hasQuantityKind quantitykind:MomentOfForce,
        quantitykind:Torque ;
    qudt:iec61360Code "0112/2///62720#UAB437"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB437"^^xsd:anyURI ;
    qudt:symbol "in·pdl"^^xsd:string ;
    qudt:ucumCode "[in_i].[lb_av].[ft_i].s-2"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "N47"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:IN2-PER-SEC a qudt:Unit ;
    rdfs:label "Square Inch per Second"^^xsd:string,
        "Square Inch per Second"@en ;
    dcterms:description "power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 2 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.00064516 ;
    qudt:conversionMultiplierSN 6.4516e-04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:IN ] ;
    qudt:hasQuantityKind quantitykind:AreaPerTime ;
    qudt:iec61360Code "0112/2///62720#UAA548"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA548"^^xsd:anyURI ;
    qudt:plainTextDescription "power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 2 divided by the SI base unit second"^^xsd:string ;
    qudt:symbol "in²/s"^^xsd:string ;
    qudt:ucumCode "[in_i]2.s-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G08"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q107410833> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:IN3-PER-HR a qudt:Unit ;
    rdfs:label "Cubic Inch per Hour"^^xsd:string,
        "Cubic Inch per Hour"@en ;
    dcterms:description "power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 divided by the unit hour"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 0.000000004551962222222222222222222222222223 ;
    qudt:conversionMultiplierSN 4.551962e-09 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:IN ] ;
    qudt:hasQuantityKind quantitykind:VolumeFlowRate,
        quantitykind:VolumePerTime ;
    qudt:iec61360Code "0112/2///62720#UAA550"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA550"^^xsd:anyURI ;
    qudt:plainTextDescription "power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 divided by the unit hour"^^xsd:string ;
    qudt:symbol "in³/h"^^xsd:string ;
    qudt:ucumCode "[in_i]3.h-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G56"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:IN3-PER-MIN a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Cubic Inch per Minute"^^xsd:string,
        "Cubic Inch per Minute"@en ;
    dcterms:description "\"Cubic Inch per Minute\" is an Imperial unit for  'Volume Per Unit Time' expressed as $in^{3}/min$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 0.0000002731177333333333333333333333333334 ;
    qudt:conversionMultiplierSN 2.731177e-07 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:expression "$in^{3}/min$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:IN ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MIN ] ;
    qudt:hasQuantityKind quantitykind:VolumeFlowRate,
        quantitykind:VolumePerTime ;
    qudt:iec61360Code "0112/2///62720#UAA551"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA551"^^xsd:anyURI ;
    qudt:symbol "in³/min"^^xsd:string ;
    qudt:ucumCode "[in_i]3.min-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G57"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:IN3-PER-SEC a qudt:Unit ;
    rdfs:label "Cubic Inch per Second"^^xsd:string,
        "Cubic Inch per Second"@en ;
    dcterms:description "power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 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.000016387064 ;
    qudt:conversionMultiplierSN 1.638706e-05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:IN ] ;
    qudt:hasQuantityKind quantitykind:VolumeFlowRate,
        quantitykind:VolumePerTime ;
    qudt:iec61360Code "0112/2///62720#UAA552"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA552"^^xsd:anyURI ;
    qudt:plainTextDescription "power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 divided by the SI base unit second"^^xsd:string ;
    qudt:symbol "in³/s"^^xsd:string ;
    qudt:ucumCode "[in_i]3.s-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G58"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:IN4 a qudt:Unit ;
    rdfs:label "Quartic Inch"^^xsd:string,
        "Quartic Inch"@en ;
    dcterms:description "power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 4"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 0.0000004162314256 ;
    qudt:conversionMultiplierSN 4.162314e-07 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L4I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 4 ;
            qudt:hasUnit unit:IN ] ;
    qudt:hasQuantityKind quantitykind:SecondAxialMomentOfArea,
        quantitykind:SecondMomentOfArea,
        quantitykind:SecondPolarMomentOfArea ;
    qudt:iec61360Code "0112/2///62720#UAA545"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA545"^^xsd:anyURI ;
    qudt:plainTextDescription "power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 4"^^xsd:string ;
    qudt:symbol "in⁴"^^xsd:string ;
    qudt:ucumCode "[in_i]4"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "D69"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:K-PER-T a qudt:Unit ;
    rdfs:label "Kelvin per Tesla"^^xsd:string,
        "Келвин на Тесла"@bg,
        "Kelvin na Tesla"@cs,
        "Kelvin pro Tesla"@de,
        "Κέλβιν ανά Τέσλα"@el,
        "Kelvin per Tesla"@en,
        "Kelvin por Tesla"@es,
        "Kelvin par Tesla"@fr,
        "Kelvin per Tesla"@it,
        "Kelvin per Tesla"@la,
        "Kelvin per Tesla"@ms,
        "Kelwin na Tesla"@pl,
        "Kelvin por Tesla"@pt,
        "Kelvin pe Tesla"@ro,
        "Кельвин на Тесла"@ru,
        "Kelvin na Tesla"@sl,
        "Kelvin per Tesla"@tr ;
    dcterms:description "$\\textit{Kelvin per Tesla}$ is a unit for 'Temperature Per Magnetic Flux Density' expressed as $K T^{-1}$."^^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 T^{-1}$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L0I0M-1H1T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:T ] ;
    qudt:hasQuantityKind quantitykind:TemperaturePerMagneticFluxDensity ;
    qudt:symbol "K/T"^^xsd:string ;
    qudt:ucumCode "K.T-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloBQ-PER-KiloGM a qudt:Unit ;
    rdfs:label "Kilobecquerel per Kilogram"^^xsd:string,
        "Kilobecquerel na Kilogram"@cs,
        "Kilobecquerel pro Kilogramm"@de,
        "Kilobecquerel per Kilogram"@en,
        "Kilobecquerel por Kilogramo"@es,
        "Kilobecquerel par Kilogramme"@fr,
        "Chilobecquerel per Chilogrammo"@it,
        "Kilobecquerel per Kilogram"@ms,
        "Kilobekerel na Kilogram"@pl,
        "Kilobecquerel pe Kilogram"@ro,
        "Kilobecquerel na Kilogram"@sl,
        "Kilobekerel per Kilogram"@tr ;
    dcterms:description "1,000-fold of the SI derived unit becquerel divided by the SI base unit kilogram"^^xsd:string ;
    qudt:conversionMultiplier 1000.0 ;
    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:KiloBQ ] ;
    qudt:hasQuantityKind quantitykind:MassicActivity,
        quantitykind:SpecificActivity ;
    qudt:iec61360Code "0112/2///62720#UAA562"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA562"^^xsd:anyURI ;
    qudt:symbol "kBq/kg"^^xsd:string ;
    qudt:ucumCode "kBq.kg-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "B25"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloBTU_IT-PER-FT2 a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Kilo British Thermal Unit (international Definition) per Square Foot"^^xsd:string,
        "Kilo British Thermal Unit (international Definition) per Square Foot"@en ;
    dcterms:description """$\\textit{kBTU per Square Foot}$ is an Imperial unit for 'Energy Per Area' expressed as $kBtu/ft^2$.
  """^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 11356526.68222697556506224123559358 ;
    qudt:conversionMultiplierSN 1.135653e+07 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:expression "$kBtu/ft^{2}$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloBTU_IT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:FT ] ;
    qudt:hasQuantityKind quantitykind:EnergyPerArea ;
    qudt:plainTextDescription "kBTU per Square Foot is an Imperial unit for 'Energy Per Area."^^xsd:string ;
    qudt:symbol "kBtu{IT}/ft²"^^xsd:string ;
    qudt:ucumCode "k[Btu_IT].[ft_i]-2"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloBYTE a qudt:CountingUnit,
        qudt:Unit ;
    rdfs:label "Kilobyte"^^xsd:string,
        "Kilobyte"@en ;
    dcterms:description "The kilobyte is a multiple of the unit byte for digital information equivalent to 1000 bytes. Although the prefix kilo- means 1000, the term kilobyte and symbol kB have historically been used to refer to either 1024 (210) bytes or 1000 (103) bytes, dependent upon context, in the fields of computer science and information technology. This ambiguity is removed in QUDT, with KibiBYTE used to refer to 1024 bytes."^^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 5545.17744447956247533785697166544 ;
    qudt:conversionMultiplierSN 5.545177e+03 ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Byte"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind quantitykind:InformationEntropy ;
    qudt:iec61360Code "0112/2///62720#UAB129"^^xsd:string ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Byte?oldid=493588918"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB129"^^xsd:anyURI ;
    qudt:prefix <http://qudt.org/vocab/prefix/Kilo> ;
    qudt:scalingOf unit:BYTE ;
    qudt:symbol "kB"^^xsd:string ;
    qudt:ucumCode "kBy"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "2P"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q79726> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloCAL-PER-CentiM2 a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Kilocalorie per Square Centimetre"^^xsd:string,
        "Kilocalorie per Square Centimetre"@en,
        "Kilocalorie per Square Centimeter"@en-us ;
    dcterms:description "\"Kilocalorie per Square Centimeter\" is a unit for  'Energy Per Area' expressed as $kcal/cm^{2}$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 41840000.0 ;
    qudt:conversionMultiplierSN 4.184e+07 ;
    qudt:expression "$kcal/cm^{2}$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloCAL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:CentiM ] ;
    qudt:hasQuantityKind quantitykind:EnergyPerArea ;
    qudt:symbol "kcal/cm²"^^xsd:string ;
    qudt:ucumCode "kcal.cm-2"^^qudt:UCUMcs ;
    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 ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS> ;
    qudt:conversionMultiplier 37000000000000.0 ;
    qudt:conversionMultiplierSN 3.7e+13 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:hasQuantityKind quantitykind:Activity,
        quantitykind: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 ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloGM-PER-CentiM2 a qudt:Unit ;
    rdfs:label "Kilogram per Square Centimetre"^^xsd:string,
        "Kilogram na Čtvereční Centimetr"@cs,
        "Kilogramm pro Quadratcentimeter"@de,
        "Kilogram per Square Centimetre"@en,
        "Kilogram per Square Centimeter"@en-us,
        "Kilogramo por Centimetro Cuadrado"@es,
        "Kilogramme par Centimètre Carré"@fr,
        "Chilogrammo per Centimetro Quadrato"@it,
        "Kilogram per Centimeter Persegi"@ms,
        "Kilogram na Centimetr Kwadratowy"@pl,
        "Kilogram pe Centimetru Pătrat"@ro,
        "Kilogram na Kvadratni Centimeter"@sl,
        "Kilogram per Centimetrekare"@tr ;
    dcterms:description "SI base unit kilogram 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>,
        <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/A0E0L-2I0M1H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:CentiM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloGM ] ;
    qudt:hasQuantityKind quantitykind:MassPerArea ;
    qudt:iec61360Code "0112/2///62720#UAB174"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB174"^^xsd:anyURI ;
    qudt:plainTextDescription "SI base unit kilogram divided by the 0.0001-fold of the power of the SI base unit metre by exponent 2"^^xsd:string ;
    qudt:symbol "kg/cm²"^^xsd:string ;
    qudt:ucumCode "kg.cm-2"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "D5"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q39978339> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloGM-PER-FT2 a qudt:Unit ;
    rdfs:label "Kilogram per Square Foot"^^xsd:string,
        "Kilogram per Square Foot"@en ;
    dcterms:description "SI base unit kilogram divided by the square of the imperial foot"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/SI>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 10.7639104167097223083335055559 ;
    qudt:conversionMultiplierSN 1.076391e+01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M1H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloGM ] ;
    qudt:hasQuantityKind quantitykind:MassPerArea ;
    qudt:plainTextDescription "SI base unit kilogram divided by the square of the imperial foot"^^xsd:string ;
    qudt:symbol "kg/ft²"^^xsd:string ;
    qudt:ucumCode "kg.[ft_i]-2"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloGM-PER-HA a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Kilogram per Hectare"^^xsd:string,
        "Kilogram per Hectare"@en ;
    dcterms:description "Kilogram Per Hectare is a unit of mass per area. Kilogram Per Hectare (kg/ha) has a dimension of ML-2 where $M$ is mass, and $L$ is length. It can be converted to the corresponding standard SI unit kg/m2 by multiplying its value by a factor of 0.0001."^^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:expression "$kg/hare$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M1H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HA ] ;
    qudt:hasQuantityKind quantitykind:MassPerArea ;
    qudt:symbol "kg/ha"^^xsd:string ;
    qudt:ucumCode "kg.har-1"^^qudt:UCUMcs ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q107460919> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloGM-PER-M-SEC a qudt:Unit ;
    rdfs:label "Kilogram per Metre Second"^^xsd:string,
        "Килограм на Метър Секунда"@bg,
        "Kilogram na Metr Sekunda"@cs,
        "Kilogramm pro Meter Sekunde"@de,
        "Χιλιόγραμμο ανά Μέτρο Δευτερόλεπτο"@el,
        "Kilogram per Metre Second"@en,
        "Kilogram per Meter Second"@en-us,
        "Kilogramo por Metro Segundo"@es,
        "Kilogramme par Mètre Seconde"@fr,
        "Chilogrammo per Metro Secondo"@it,
        "Chiliogramma per Metrum Secundum"@la,
        "Kilogram per Meter Saat"@ms,
        "Kilogram na Metr Sekunda"@pl,
        "Quilograma por Metro Segundo"@pt,
        "Kilogram pe Metru Secundă"@ro,
        "Килограмм на Метр Секунда"@ru,
        "Kilogram na Meter Sekunda"@sl,
        "Kilogram per Metre Saniye"@tr ;
    dcterms:description "unit of the dynamic viscosity as a quotient SI base unit kilogram divided by the SI base unit metre and by the SI base unit second"^^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/A0E0L-1I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind quantitykind:DynamicViscosity,
        quantitykind:Viscosity ;
    qudt:iec61360Code "0112/2///62720#UAB429"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB429"^^xsd:anyURI ;
    qudt:symbol "kg/(m·s)"^^xsd:string ;
    qudt:ucumCode "kg.m-1.s-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "N37"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q106653452> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloGM-PER-SEC a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Kilogram per Second"^^xsd:string,
        "Килограм на Секунда"@bg,
        "Kilogram na Sekunda"@cs,
        "Kilogramm pro Sekunde"@de,
        "Χιλιόγραμμο ανά Δευτερόλεπτο"@el,
        "Kilogram per Second"@en,
        "Kilogramo por Segundo"@es,
        "Kilogramme par Seconde"@fr,
        "Chilogrammo per Secondo"@it,
        "Chiliogramma per Secundum"@la,
        "Kilogram per Saat"@ms,
        "Kilogram na Sekunda"@pl,
        "Quilograma por Segundo"@pt,
        "Kilogram pe Secundă"@ro,
        "Килограмм на Секунда"@ru,
        "Kilogram na Sekunda"@sl,
        "Kilogram per Saniye"@tr ;
    dcterms:description "Kilogram Per Second (kg/s) is a unit in the category of Mass flow rate. It is also known as kilogram/second, kilograms per second. This unit is commonly used in the SI unit system. Kilogram Per Second (kg/s) has a dimension of $MT^{-1}$ where $M$ is mass, 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 "$kg/s$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-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 quantitykind:MassFlowRate,
        quantitykind:MassPerTime ;
    qudt:hasReciprocalUnit unit:SEC-PER-KiloGM ;
    qudt:iec61360Code "0112/2///62720#UAA629"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA629"^^xsd:anyURI ;
    qudt:symbol "kg/s"^^xsd:string ;
    qudt:ucumCode "kg.s-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "KGS"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q25381181> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloGM-PER-SEC-M2 a qudt:Unit ;
    rdfs:label "Kilogram per Second Square Metre"^^xsd:string,
        "Килограм на Секунда Квадратен Метър"@bg,
        "Kilogram na Sekunda Čtvereční Metr"@cs,
        "Kilogramm pro Sekunde Quadratmeter"@de,
        "Χιλιόγραμμο ανά Δευτερόλεπτο Τετραγωνικό Μέτρο"@el,
        "Kilogram per Second Square Metre"@en,
        "Kilogram per Second Square Meter"@en-us,
        "Kilogramo por Segundo Metro Cuadrado"@es,
        "Kilogramme par Seconde Mètre Carré"@fr,
        "Chilogrammo per Secondo Metro Quadrato"@it,
        "Chiliogramma per Secundum Metrum Quadratum"@la,
        "Kilogram per Saat Meter Persegi"@ms,
        "Kilogram na Sekunda Metr Kwadratowy"@pl,
        "Quilograma por Segundo Metro Quadrado"@pt,
        "Kilogram pe Secundă Metru Pătrat"@ro,
        "Килограмм на Секунда Квадратный Метр"@ru,
        "Kilogram na Sekunda Kvadratni Meter"@sl,
        "Kilogram per Saniye Metrekare"@tr ;
    dcterms:description "SI base unit kilogram divided by the product of the power of the SI base unit metre with the exponent 2 and 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 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:exactMatch unit:KiloGM-PER-M2-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M1H0T-1D0> ;
    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 -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind quantitykind:MassPerAreaTime ;
    qudt:iec61360Code "0112/2///62720#UAA618"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA618"^^xsd:anyURI ;
    qudt:plainTextDescription "SI base unit kilogram divided by the product of the power of the SI base unit metre with the exponent 2 and the SI base unit second"^^xsd:string ;
    qudt:symbol "kg/(s·m²)"^^xsd:string ;
    qudt:ucumCode "kg.s-1.m-2"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "H56"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q92011107> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloGM-PER-SEC2 a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Kilogram per Square Second"^^xsd:string,
        "Килограм на Квадратен Секунда"@bg,
        "Kilogram na Čtvereční Sekunda"@cs,
        "Kilogramm pro Quadratsekunde"@de,
        "Χιλιόγραμμο ανά Τετραγωνικό Δευτερόλεπτο"@el,
        "Kilogram per Square Second"@en,
        "Kilogramo por Segundo Cuadrado"@es,
        "Kilogramme par Seconde Carré"@fr,
        "Chilogrammo per Secondo Quadrato"@it,
        "Chiliogramma per Secundum Quadratum"@la,
        "Kilogram per Saat Persegi"@ms,
        "Kilogram na Sekunda Kwadratowy"@pl,
        "Quilograma por Segundo Quadrado"@pt,
        "Kilogram pe Secundă Pătrat"@ro,
        "Килограмм на Квадратный Секунда"@ru,
        "Kilogram na Kvadratni Sekunda"@sl,
        "Kilogram 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:definedUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:derivedCoherentUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:expression "$kg-per-sec2$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind quantitykind:EnergyPerArea ;
    qudt:latexSymbol "$kg \\cdot s^2$"^^qudt:LatexString ;
    qudt:symbol "kg/s²"^^xsd:string ;
    qudt:ucumCode "kg.s-2"^^qudt:UCUMcs ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q106682321> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloGM-PER-SEC3-K a qudt:Unit ;
    rdfs:label "Kilogram per Cubic Second Kelvin"^^xsd:string,
        "Килограм на Кубичен Секунда Келвин"@bg,
        "Kilogram na Sekunda Krychlový Kelvin"@cs,
        "Kilogramm pro Kubiksekunde Kelvin"@de,
        "Χιλιόγραμμο ανά Κυβικό Δευτερόλεπτο Κέλβιν"@el,
        "Kilogram per Cubic Second Kelvin"@en,
        "Kilogramo por Segundo Cúbico Kelvin"@es,
        "Kilogramme par Seconde Cube Kelvin"@fr,
        "Chilogrammo per Secondo Cubo Kelvin"@it,
        "Chiliogramma per Secundum Cubicum Kelvin"@la,
        "Kilogram per Saat Kubik Kelvin"@ms,
        "Kilogram na Sekunda Sześcienny Kelwin"@pl,
        "Quilograma por Segundo Cúbico Kelvin"@pt,
        "Kilogram pe Secundă Cub Kelvin"@ro,
        "Килограмм на Кубический Секунда Кельвин"@ru,
        "Kilogram na Kubični Sekunda Kelvin"@sl,
        "Kilogram per Saniyeküp Kelvin"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H-1T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ] ;
    qudt:hasQuantityKind quantitykind:CoefficientOfHeatTransfer ;
    qudt:plainTextDescription "Unit commonly used for the coefficient of heat transfer"^^xsd:string ;
    qudt:symbol "kg/(s³·K)"^^xsd:string ;
    qudt:ucumCode "kg.s-3.K-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloGM_F-M a qudt:Unit ;
    rdfs:label "Kilo Gram Force Metre"^^xsd:string,
        "Kilo Gram Force Metre"@en,
        "Kilo Gram Force Meter"@en-us ;
    dcterms:description "product of the unit kilogram-force and the SI base unit metre"^^rdf:HTML ;
    qudt:conversionMultiplier 9.80665 ;
    qudt:conversionMultiplierSN 9.80665e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloGM_F ] ;
    qudt:hasQuantityKind quantitykind:MomentOfForce,
        quantitykind:Torque ;
    qudt:iec61360Code "0112/2///62720#UAA634"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA634"^^xsd:anyURI ;
    qudt:plainTextDescription "product of the unit kilogram-force and the SI base unit metre"^^xsd:string ;
    qudt:symbol "kgf·m"^^xsd:string ;
    qudt:ucumCode "kgf.m"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "B38"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q106886424> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloGM_F-M-PER-CentiM2 a qudt:Unit ;
    rdfs:label "Kilo Gram Force Metre per Square Centimetre"^^xsd:string,
        "Kilo Gram Force Metre per Square Centimetre"@en,
        "Kilo Gram Force Meter per Square Centimeter"@en-us ;
    dcterms:description "product of the unit kilogram-force and the SI base unit metre divided by the 0.0001-fold of the power of the SI base unit metre by exponent 2"^^rdf:HTML ;
    qudt:conversionMultiplier 98066.5 ;
    qudt:conversionMultiplierSN 9.80665e+04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:CentiM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloGM_F ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind quantitykind:ForcePerLength ;
    qudt:iec61360Code "0112/2///62720#UAB189"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB189"^^xsd:anyURI ;
    qudt:plainTextDescription "product of the unit kilogram-force and the SI base unit metre divided by the 0.0001-fold of the power of the SI base unit metre by exponent 2"^^xsd:string ;
    qudt:symbol "kgf·m/cm²"^^xsd:string ;
    qudt:ucumCode "kgf.m.cm-2"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "E44"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloJ-PER-KiloV a qudt:Unit ;
    rdfs:label "Kilojoule per Kilovolt"^^xsd:string,
        "Kilojoule na Kilovolt"@cs,
        "Kilojoule pro Kilovolt"@de,
        "Kilojoule per Kilovolt"@en,
        "Kilojulio por Kilovoltio"@es,
        "Kilojoule par Kilovolt"@fr,
        "Chilojoule per Chilovolt"@it,
        "Kilojoule per Kilovolt"@ms,
        "Kilodżul na Kilowolt"@pl,
        "Kilojoule pe Kilovolt"@ro,
        "Kilojoule na Kilovolt"@sl,
        "Kilojoule per Kilovolt"@tr ;
    dcterms:description "Specification of the maximum of the energy absorption capability related to voltage rated value in kJ/kV, which could be emplaced in an arrester or parts of an arrester during a recovery test, without causing a thermal run away"^^xsd:string ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L0I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloJ ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:KiloV ] ;
    qudt:hasQuantityKind quantitykind:ElectricCharge ;
    qudt:iec61360Code "0112/2///62720#UAD920"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD920"^^xsd:anyURI ;
    qudt:symbol "kJ/kV"^^xsd:string ;
    qudt:ucumCode "kJ.kV-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloL-PER-HR a qudt:Unit ;
    rdfs:label "Kilolitre per Hour"^^xsd:string,
        "Kilolitre per Hour"@en,
        "Kiloliter per Hour"@en-us ;
    dcterms:description "unit of the volume kilolitres 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.0002777777777777777777777777777777778 ;
    qudt:conversionMultiplierSN 2.777778e-04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ] ;
    qudt:hasQuantityKind quantitykind:VolumeFlowRate,
        quantitykind:VolumePerTime ;
    qudt:iec61360Code "0112/2///62720#UAB121"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB121"^^xsd:anyURI ;
    qudt:plainTextDescription "unit of the volume kilolitres divided by the unit hour"^^xsd:string ;
    qudt:symbol "kL/h"^^xsd:string ;
    qudt:ucumCode "kL.h-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "4X"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q107313807> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloLB_F-PER-FT a qudt:Unit ;
    rdfs:label "Kilo Pound Force per Foot"^^xsd:string,
        "Kilo Pound Force per Foot"@en ;
    dcterms:description "unit of the length-related force"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 14593.9035919985 ;
    qudt:conversionMultiplierSN 1.45939e+04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloLB_F ] ;
    qudt:hasQuantityKind quantitykind:ForcePerLength ;
    qudt:iec61360Code "0112/2///62720#UAB192"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB192"^^xsd:anyURI ;
    qudt:plainTextDescription "unit of the length-related force"^^xsd:string ;
    qudt:symbol "klbf/ft"^^xsd:string ;
    qudt:ucumCode "k[lbf_av].[ft_i]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F17"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloN-M a qudt:Unit ;
    rdfs:label "Kilonewton Metre"^^xsd:string,
        "Kilonewton Metr"@cs,
        "Kilonewton Meter"@de,
        "Kilonewton Metre"@en,
        "Kilonewton Meter"@en-us,
        "Kilonewton Metro"@es,
        "Kilonewton Mètre"@fr,
        "Chilonewton Metro"@it,
        "Kilonewton Meter"@ms,
        "Kiloniuton Metr"@pl,
        "Kilonewton Metru"@ro,
        "Kilonewton Meter"@sl,
        "Kilonewton Metre"@tr ;
    dcterms:description "1 000-fold of the product of the SI derived unit newton and 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 1000.0 ;
    qudt:conversionMultiplierSN 1e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloN ] ;
    qudt:hasQuantityKind quantitykind:MomentOfForce,
        quantitykind:Torque ;
    qudt:iec61360Code "0112/2///62720#UAA574"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA574"^^xsd:anyURI ;
    qudt:plainTextDescription "1 000-fold of the product of the SI derived unit newton and the SI base unit metre"^^xsd:string ;
    qudt:symbol "kN·m"^^xsd:string ;
    qudt:ucumCode "kN.m"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "B48"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q106645261> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloN-PER-M a qudt:Unit ;
    rdfs:label "Kilonewton per Metre"^^xsd:string,
        "Kilonewton na Metr"@cs,
        "Kilonewton pro Meter"@de,
        "Kilonewton per Metre"@en,
        "Kilonewton per Meter"@en-us,
        "Kilonewton por Metro"@es,
        "Kilonewton par Mètre"@fr,
        "Chilonewton per Metro"@it,
        "Kilonewton per Meter"@ms,
        "Kiloniuton na Metr"@pl,
        "Kilonewton pe Metru"@ro,
        "Kilonewton na Meter"@sl,
        "Kilonewton per Metre"@tr ;
    dcterms:description "1,000-fold of the SI derived unit newton divided by the SI base unit metre"^^xsd:string ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1000.0 ;
    qudt:conversionMultiplierSN 1e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloN ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind quantitykind:ForcePerLength ;
    qudt:iec61360Code "0112/2///62720#UAB364"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB364"^^xsd:anyURI ;
    qudt:symbol "kN/m"^^xsd:string ;
    qudt:ucumCode "kN.m-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "N31"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloS a qudt:Unit ;
    rdfs:label "Kilosiemens"^^xsd:string,
        "Kilosiemens"@cs,
        "Kilosiemens"@de,
        "Kilosiemens"@en,
        "Kilosiemens"@es,
        "Kilosiemens"@fr,
        "Kilosiemens"@hu,
        "Chilosiemens"@it,
        "Kilosiemens"@ms,
        "Kilosimens"@pl,
        "Kilosiemens"@ro,
        "Kilosiemens"@sl,
        "Kilosiemens"@tr ;
    dcterms:description "1 000-fold of the SI derived unit siemens"^^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 1000.0 ;
    qudt:conversionMultiplierSN 1e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E2L-2I0M-1H0T3D0> ;
    qudt:hasQuantityKind quantitykind:Admittance,
        quantitykind:Conductance ;
    qudt:iec61360Code "0112/2///62720#UAA578"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA578"^^xsd:anyURI ;
    qudt:plainTextDescription "1 000-fold of the SI derived unit siemens"^^xsd:string ;
    qudt:prefix <http://qudt.org/vocab/prefix/Kilo> ;
    qudt:scalingOf unit:S ;
    qudt:symbol "kS"^^xsd:string ;
    qudt:ucumCode "kS"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "B53"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q94489520> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloW-HR-PER-M2 a qudt:Unit ;
    rdfs:label "Kilowatt Hour per Square Metre"^^xsd:string,
        "Kilowatt Hour per Square Metre"@en,
        "Kilowatt Hour per Square Meter"@en-us ;
    dcterms:description "A unit of energy per unit area, equivalent to 3 600 000 joules per square 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 3600000.0 ;
    qudt:conversionMultiplierSN 3.6e+06 ;
    qudt:conversionOffset 0.0 ;
    qudt:conversionOffsetSN 0e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-2D0> ;
    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:KiloW ] ;
    qudt:hasQuantityKind quantitykind:EnergyPerArea ;
    qudt:plainTextDescription "A unit of energy per unit area, equivalent to 3 600 000 joules per square metre."^^xsd:string ;
    qudt:symbol "kW·h/m²"^^xsd:string ;
    qudt:ucumCode "kW.h.m-2"^^qudt:UCUMcs ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q64748823> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloWB a qudt:Unit ;
    rdfs:label "Kiloweber"^^xsd:string,
        "Kiloweber"@cs,
        "Kiloweber"@de,
        "Kiloweber"@en,
        "Kiloweber"@es,
        "Kiloweber"@fr,
        "Kiloweber"@hu,
        "Chiloweber"@it,
        "Kiloweber"@ms,
        "Kiloweber"@pl,
        "Kiloweber"@ro,
        "Kiloweber"@sl,
        "Kiloweber"@tr ;
    dcterms:description "1,000-fold of the SI derived unit weber"^^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 1000.0 ;
    qudt:conversionMultiplierSN 1e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-1L2I0M1H0T-2D0> ;
    qudt:hasQuantityKind quantitykind:MagneticFlux ;
    qudt:iec61360Code "0112/2///62720#UAB358"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB358"^^xsd:anyURI ;
    qudt:prefix <http://qudt.org/vocab/prefix/Kilo> ;
    qudt:scalingOf unit:WB ;
    qudt:symbol "kWb"^^xsd:string ;
    qudt:ucumCode "kWb"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "P11"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q94489494> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:L-PER-DAY a qudt:Unit ;
    rdfs:label "Litre per Day"^^xsd:string,
        "Litre per Day"@en,
        "Liter per Day"@en-us ;
    dcterms:description "unit litre 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/A0E0L3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DAY ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:L ] ;
    qudt:hasQuantityKind quantitykind:VolumeFlowRate,
        quantitykind:VolumePerTime ;
    qudt:iec61360Code "0112/2///62720#UAA652"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA652"^^xsd:anyURI ;
    qudt:plainTextDescription "unit litre divided by the unit day"^^xsd:string ;
    qudt:symbol "L/d"^^xsd:string ;
    qudt:ucumCode "L.d-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "LD"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q61992237> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:L-PER-HR a qudt:Unit ;
    rdfs:label "Litre per Hour"^^xsd:string,
        "Litre per Hour"@en,
        "Liter per Hour"@en-us ;
    dcterms:description "Unit litre 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/A0E0L3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:L ] ;
    qudt:hasQuantityKind quantitykind:VolumeFlowRate,
        quantitykind:VolumePerTime ;
    qudt:iec61360Code "0112/2///62720#UAA655"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA655"^^xsd:anyURI ;
    qudt:plainTextDescription "Unit litre divided by the unit hour"^^xsd:string ;
    qudt:symbol "L/h"^^xsd:string ;
    qudt:ucumCode "L.h-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "E32"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q104907522> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:L-PER-MIN a qudt:Unit ;
    rdfs:label "Litre per Minute"^^xsd:string,
        "Litre per Minute"@en,
        "Liter per Minute"@en-us ;
    dcterms:description "unit litre 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/A0E0L3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:L ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MIN ] ;
    qudt:hasQuantityKind quantitykind:VolumeFlowRate,
        quantitykind:VolumePerTime ;
    qudt:iec61360Code "0112/2///62720#UAA659"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA659"^^xsd:anyURI ;
    qudt:plainTextDescription "unit litre divided by the unit minute"^^xsd:string ;
    qudt:symbol "L/min"^^xsd:string ;
    qudt:ucumCode "L.min-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "L2"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q107313814> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:L-PER-MOL a qudt:Unit ;
    rdfs:label "Litre per Mole"^^xsd:string,
        "Litre per Mole"@en,
        "Liter per Mole"@en-us ;
    dcterms:description "unit litre 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-1E0L3I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:L ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MOL ] ;
    qudt:hasQuantityKind quantitykind:MolarRefractivity,
        quantitykind:MolarVolume ;
    qudt:hasReciprocalUnit unit:MOL-PER-L ;
    qudt:iec61360Code "0112/2///62720#UAA662"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA662"^^xsd:anyURI ;
    qudt:plainTextDescription "unit litre divided by the SI base unit mol"^^xsd:string ;
    qudt:symbol "L/mol"^^xsd:string ;
    qudt:ucumCode "L.mol-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "B58"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q107538768> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:L-PER-MicroMOL a qudt:Unit ;
    rdfs:label "Litre per Micromole"^^xsd:string,
        "Litre per Micromole"@en,
        "Liter per Micromole"@en-us ;
    dcterms:description "The inverse of a molar concentration."@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1000.0 ;
    qudt:conversionMultiplierSN 1e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A-1E0L3I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:L ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MicroMOL ] ;
    qudt:hasQuantityKind quantitykind:MolarRefractivity,
        quantitykind:MolarVolume ;
    qudt:hasReciprocalUnit unit:MicroMOL-PER-L ;
    qudt:symbol "L/μmol"^^xsd:string ;
    qudt:ucumCode "L.umol-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:L-PER-SEC a qudt:Unit ;
    rdfs:label "Litre per Second"^^xsd:string,
        "Litre per Second"@en,
        "Liter per Second"@en-us ;
    dcterms:description "unit litre 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/A0E0L3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:L ] ;
    qudt:hasQuantityKind quantitykind:VolumeFlowRate,
        quantitykind:VolumePerTime ;
    qudt:iec61360Code "0112/2///62720#UAA664"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA664"^^xsd:anyURI ;
    qudt:plainTextDescription "unit litre divided by the SI base unit second"^^xsd:string ;
    qudt:symbol "L/s"^^xsd:string ;
    qudt:ucumCode "L.s-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G51"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q61996348> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-PER-AC a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Pound Mass per Acre"^^xsd:string,
        "Pound Mass per Acre"@en ;
    dcterms:description "mass per area as pounds of mass (based on the international standard definition of the pound of mass as exactly 0.45359237 kg) divided by area as acres (a unit of area in a number of different systems, including the imperial and U.S. customary systems. The most commonly used acres today are the international acre and, in the United States, the survey acre. The most common use of the acre is to measure tracts of land. One international acre is equal to 4046.8564224 square metres."^^xsd:string ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 0.0001120851156194456047722420921833988 ;
    qudt:conversionMultiplierSN 1.120851e-04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M1H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:AC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ] ;
    qudt:hasQuantityKind quantitykind:MassPerArea ;
    qudt:plainTextDescription "mass per area as pounds of mass (based on the international standard definition of the pound of mass as exactly 0.45359237 kg) divided by area as acres (a unit of area in a number of different systems, including the imperial and U.S. customary systems. The most commonly used acres today are the international acre and, in the United States, the survey acre. The most common use of the acre is to measure tracts of land. One international acre is equal to 4046.8564224 square metres."^^xsd:string ;
    qudt:symbol "lbm/acre"^^xsd:string ;
    qudt:ucumCode "[lb_av].[acr_br]-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-PER-FT2 a qudt:Unit ;
    rdfs:label "Pound Mass per Square Foot"^^xsd:string,
        "Pound Mass per Square Foot"@en ;
    dcterms:description "unit for areal-related mass as a unit pound according to the avoirdupois system of units divided by the power of the unit foot according to the Anglo-American and Imperial system of units by exponent 2"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 4.882427636383050543878865535508848 ;
    qudt:conversionMultiplierSN 4.882428e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M1H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ] ;
    qudt:hasQuantityKind quantitykind:MassPerArea ;
    qudt:iec61360Code "0112/2///62720#UAB262"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB262"^^xsd:anyURI ;
    qudt:plainTextDescription "unit for areal-related mass as a unit pound according to the avoirdupois system of units divided by the power of the unit foot according to the Anglo-American and Imperial system of units by exponent 2"^^xsd:string ;
    qudt:symbol "lbm/ft²"^^xsd:string ;
    qudt:ucumCode "[lb_av].[ft_i]-2"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "FP"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q50190518> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB_F-FT a qudt:Unit ;
    rdfs:label "Pound Force Foot"^^xsd:string,
        "Pound Force Foot"@en ;
    dcterms:description "\"Pound Force Foot\" is an Imperial unit for  'Torque' expressed as $lbf-ft$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 1.35581800916358032544 ;
    qudt:conversionMultiplierSN 1.355818e+00 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:expression "$lbf-ft$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB_F ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:FT ] ;
    qudt:hasQuantityKind quantitykind:MomentOfForce,
        quantitykind:Torque ;
    qudt:iec61360Code "0112/2///62720#UAA697"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA697"^^xsd:anyURI ;
    qudt:symbol "lbf·ft"^^xsd:string ;
    qudt:ucumCode "[lbf_av].[ft_i]"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "M92"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q16859309> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB_F-IN a qudt:Unit ;
    rdfs:label "Pound Force Inch"^^xsd:string,
        "Pound Force Inch"@en ;
    dcterms:description "\"Pound Force Inch\" is an Imperial unit for  'Torque' expressed as $lbf-in$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 0.11298483409696502712 ;
    qudt:conversionMultiplierSN 1.129848e-01 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:expression "$lbf-in$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:IN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB_F ] ;
    qudt:hasQuantityKind quantitykind:MomentOfForce,
        quantitykind:Torque ;
    qudt:iec61360Code "0112/2///62720#UAA699"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA699"^^xsd:anyURI ;
    qudt:symbol "lbf·in"^^xsd:string ;
    qudt:ucumCode "[lbf_av].[in_i]"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F21"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB_F-PER-FT a qudt:Unit ;
    rdfs:label "Pound Force per Foot"^^xsd:string,
        "Pound Force per Foot"@en ;
    dcterms:description "\"Pound Force per Foot\" is an Imperial unit for  'Force Per Length' expressed as $lbf/ft$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 14.5939035919985 ;
    qudt:conversionMultiplierSN 1.45939e+01 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:expression "$lbf/ft$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB_F ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:FT ] ;
    qudt:hasQuantityKind quantitykind:ForcePerLength ;
    qudt:symbol "lbf/ft"^^xsd:string ;
    qudt:ucumCode "[lbf_av].[ft_i]-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB_F-PER-YD a qudt:Unit ;
    rdfs:label "Pound Force per Yard"^^xsd:string,
        "Pound Force per Yard"@en ;
    dcterms:description "unit of force per unit length based on the Anglo-American system of units"^^xsd:string ;
    qudt:conversionMultiplier 4.864634530666166666666666666666666 ;
    qudt:conversionMultiplierSN 4.864635e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:YD ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB_F ] ;
    qudt:hasQuantityKind quantitykind:ForcePerLength ;
    qudt:iec61360Code "0112/2///62720#UAB454"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB454"^^xsd:anyURI ;
    qudt:symbol "lbf/yd"^^xsd:string ;
    qudt:ucumCode "[lbf_av].[yd_i]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "N33"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M-PER-M2 a qudt:Unit ;
    rdfs:label "Metre per Square Metre"^^xsd:string,
        "Метър на Квадратен Метър"@bg,
        "Metr na Čtvereční Metr"@cs,
        "Meter pro Quadratmeter"@de,
        "Μέτρο ανά Τετραγωνικό Μέτρο"@el,
        "Metre per Square Metre"@en,
        "Meter per Square Meter"@en-us,
        "Metro por Metro Cuadrado"@es,
        "Mètre par Mètre Carré"@fr,
        "Metro per Metro Quadrato"@it,
        "Metrum per Metrum Quadratum"@la,
        "Meter per Meter Persegi"@ms,
        "Metr na Metr Kwadratowy"@pl,
        "Metro por Metro Quadrado"@pt,
        "Metru pe Metru Pătrat"@ro,
        "Метр на Квадратный Метр"@ru,
        "Meter na Kvadratni Meter"@sl,
        "Metre per Metrekare"@tr ;
    dcterms:description "A rate of change of SI standard unit length per squared meter area."@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-1I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind quantitykind:InverseLength ;
    qudt:hasReciprocalUnit unit:M2-PER-M ;
    qudt:symbol "m/m²"^^xsd:string ;
    qudt:ucumCode "m.m-2"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M0dot a qudt:ContextualUnit,
        qudt:Unit ;
    rdfs:label "Placeholder"^^xsd:string,
        "Placeholder"@en ;
    qudt:conversionMultiplier 0.0 ;
    qudt:conversionMultiplierSN 0e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/NotApplicable> ;
    qudt:hasQuantityKind quantitykind:Unknown ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M2-HZ a qudt:Unit ;
    rdfs:label "Square Metre Hertz"^^xsd:string,
        "Квадратен Метър Херц"@bg,
        "Čtvereční Metr Hertz"@cs,
        "Quadratmeter Hertz"@de,
        "Τετραγωνικό Μέτρο Χερτζ"@el,
        "Square Metre Hertz"@en,
        "Square Meter Hertz"@en-us,
        "Metro Cuadrado Hercio"@es,
        "Mètre Carré Hertz"@fr,
        "Metro Quadrato Hertz"@it,
        "Metrum Quadratum Hertzium"@la,
        "Meter Persegi Hertz"@ms,
        "Metr Kwadratowy Herc"@pl,
        "Metro Quadrado Hertz"@pt,
        "Metru Pătrat Hertz"@ro,
        "Квадратный Метр Герц"@ru,
        "Kvadratni Meter Hertz"@sl,
        "Metrekare 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/A0E0L2I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HZ ],
        [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind quantitykind:AreaPerTime ;
    qudt:symbol "m²·Hz"^^xsd:string ;
    qudt:ucumCode "m2.Hz"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M2-K-PER-W a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Square Metre Kelvin per Watt"^^xsd:string,
        "Квадратен Метър Келвин на Ват"@bg,
        "Čtvereční Metr Kelvin na Watt"@cs,
        "Quadratmeter Kelvin pro Watt"@de,
        "Τετραγωνικό Μέτρο Κέλβιν ανά Βατ"@el,
        "Square Metre Kelvin per Watt"@en,
        "Square Meter Kelvin per Watt"@en-us,
        "Metro Cuadrado Kelvin por Vatio"@es,
        "Mètre Carré Kelvin par Watt"@fr,
        "Metro Quadrato Kelvin per Watt"@it,
        "Metrum Quadratum Kelvin per Wattium"@la,
        "Meter Persegi Kelvin per Watt"@ms,
        "Metr Kwadratowy Kelwin na Wat"@pl,
        "Metro Quadrado Kelvin por Watt"@pt,
        "Metru Pătrat Kelvin pe Watt"@ro,
        "Квадратный Метр Кельвин на Ватт"@ru,
        "Kvadratni Meter Kelvin na Watt"@sl,
        "Metrekare Kelvin per Watt"@tr ;
    dcterms:description "$\\textit{Square Meter Kelvin per Watt}$ is a unit for 'Thermal Insulance' expressed as $(K^{2})m/W$."^^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 "$(K^{2})m/W$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M-1H1T3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:W ] ;
    qudt:hasQuantityKind quantitykind:ThermalInsulance ;
    qudt:hasReciprocalUnit unit:W-PER-M2-K ;
    qudt:iec61360Code "0112/2///62720#UAA746"^^xsd:string ;
    qudt:informativeReference "http://physics.nist.gov/Pubs/SP811/appenB9.html"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA746"^^xsd:anyURI ;
    qudt:symbol "m²·K/W"^^xsd:string ;
    qudt:ucumCode "m2.K.W-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "D19"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q3332092> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M2-PER-HR a qudt:Unit ;
    rdfs:label "Square Metre per Hour"^^xsd:string,
        "Square Metre per Hour"@en,
        "Square Meter per Hour"@en-us ;
    dcterms:description "Square metres per 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/A0E0L2I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind quantitykind:AreaPerTime ;
    qudt:plainTextDescription "Square metres per hour."^^xsd:string ;
    qudt:symbol "m²/h"^^xsd:string ;
    qudt:ucumCode "m2.h-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M2-PER-MOL a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Square Metre per Mole"^^xsd:string,
        "Квадратен Метър на Мол"@bg,
        "Čtvereční Metr na Mol"@cs,
        "Quadratmeter pro Mol"@de,
        "Τετραγωνικό Μέτρο ανά Μολ"@el,
        "Square Metre per Mole"@en,
        "Square Meter per Mole"@en-us,
        "Metro Cuadrado por Mol"@es,
        "Mètre Carré par Mole"@fr,
        "Metro Quadrato per Mole"@it,
        "Metrum Quadratum per Moles"@la,
        "Meter Persegi per Mole"@ms,
        "Metr Kwadratowy na Mol"@pl,
        "Metro Quadrado por Mol"@pt,
        "Metru Pătrat pe Mol"@ro,
        "Квадратный Метр на Моль"@ru,
        "Kvadratni Meter na Mol"@sl,
        "Metrekare per Mol"@tr ;
    dcterms:description "Square Meter Per Mole (m2/mol) is a unit in the category of Specific Area. It is also known as square meters per mole, square metre per per, square metres per per, square meter/per, square metre/per. This unit is commonly used in the SI unit system. Square Meter Per Mole (m2/mol) has a dimension of M-1L2 where $M$ is mass, and $L$ is length. This unit is the standard SI unit in this category."^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:expression "$m^2/mol$"^^qudt:LatexString,
        "$m^{2}/mol$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A-1E0L2I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MOL ] ;
    qudt:hasQuantityKind quantitykind:MolarAbsorptionCoefficient,
        quantitykind:MolarAttenuationCoefficient ;
    qudt:hasReciprocalUnit unit:MOL-PER-M2 ;
    qudt:iec61360Code "0112/2///62720#UAA751"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA751"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:symbol "m²/mol"^^xsd:string ;
    qudt:ucumCode "m2.mol-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "D22"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q86203731> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M2-PER-SEC2 a qudt:Unit ;
    rdfs:label "Square Metre per Square Second"^^xsd:string,
        "Квадратен Метър на Квадратен Секунда"@bg,
        "Čtvereční Metr na Čtvereční Sekunda"@cs,
        "Quadratmeter pro Quadratsekunde"@de,
        "Τετραγωνικό Μέτρο ανά Τετραγωνικό Δευτερόλεπτο"@el,
        "Square Metre per Square Second"@en,
        "Square Meter per Square Second"@en-us,
        "Metro Cuadrado por Segundo Cuadrado"@es,
        "Mètre Carré par Seconde Carré"@fr,
        "Metro Quadrato per Secondo Quadrato"@it,
        "Metrum Quadratum per Secundum Quadratum"@la,
        "Meter Persegi per Saat Persegi"@ms,
        "Metr Kwadratowy na Sekunda Kwadratowy"@pl,
        "Metro Quadrado por Segundo Quadrado"@pt,
        "Metru Pătrat pe Secundă Pătrat"@ro,
        "Квадратный Метр на Квадратный Секунда"@ru,
        "Kvadratni Meter na Kvadratni Sekunda"@sl,
        "Metrekare 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/A0E0L2I0M0H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind quantitykind:SpecificModulus ;
    qudt:iec61360Code "0112/2///62720#UAD501"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD501"^^xsd:anyURI ;
    qudt:symbol "m²/s²"^^xsd:string ;
    qudt:ucumCode "m2.s-2"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M3-PER-DAY a qudt:Unit ;
    rdfs:label "Cubic Metre per Day"^^xsd:string,
        "Cubic Metre per Day"@en,
        "Cubic Meter per Day"@en-us ;
    dcterms:description "power of the SI base unit metre with the exponent 3 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/A0E0L3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DAY ] ;
    qudt:hasQuantityKind quantitykind:VolumeFlowRate,
        quantitykind:VolumePerTime ;
    qudt:iec61360Code "0112/2///62720#UAA760"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA760"^^xsd:anyURI ;
    qudt:plainTextDescription "power of the SI base unit metre with the exponent 3 divided by the unit day"^^xsd:string ;
    qudt:symbol "m³/d"^^xsd:string ;
    qudt:ucumCode "m3.d-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G52"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q64448128> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M3-PER-HR a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Cubic Metre per Hour"^^xsd:string,
        "Cubic Metre per Hour"@en,
        "Cubic Meter per Hour"@en-us ;
    dcterms:description "Cubic Meter Per Hour (m3/h) is a unit in the category of Volume flow rate. It is also known as cubic meters per hour, cubic metre per hour, cubic metres per hour, cubic meter/hour, cubic metre/hour, cubic meter/h, cubic metre/h, flowrate. Cubic Meter Per Hour (m3/h) has a dimension of L3T-1 where $L$ is length, and $T$ is time. It can be converted to the corresponding standard SI unit m3/s by multiplying its value by a factor of 0.00027777777."^^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 "$m^{3}/h$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind quantitykind:VolumeFlowRate,
        quantitykind:VolumePerTime ;
    qudt:iec61360Code "0112/2///62720#UAA763"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA763"^^xsd:anyURI ;
    qudt:symbol "m³/h"^^xsd:string ;
    qudt:ucumCode "m3.h-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "MQH"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q107313770> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M3-PER-MIN a qudt:Unit ;
    rdfs:label "Cubic Metre per Minute"^^xsd:string,
        "Cubic Metre per Minute"@en,
        "Cubic Meter per Minute"@en-us ;
    dcterms:description "power of the SI base unit metre with the exponent 3 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/A0E0L3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MIN ] ;
    qudt:hasQuantityKind quantitykind:VolumeFlowRate,
        quantitykind:VolumePerTime ;
    qudt:iec61360Code "0112/2///62720#UAA768"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA768"^^xsd:anyURI ;
    qudt:plainTextDescription "power of the SI base unit metre with the exponent 3 divided by the unit minute"^^xsd:string ;
    qudt:symbol "m³/min"^^xsd:string ;
    qudt:ucumCode "m3.min-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G53"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q27188268> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M3-PER-YR a qudt:Unit ;
    rdfs:label "Cubic Metre per Year"^^xsd:string,
        "Cubic Metre per Year"@en,
        "Cubic Meter per Year"@en-us,
        "Kubieke Meter per Jaar"@nl ;
    dcterms:description "power of the SI base unit metre with the exponent 3 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/A0E0L3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:YR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind quantitykind:VolumeFlowRate,
        quantitykind:VolumePerTime ;
    qudt:plainTextDescription "cubic meter divided by the unit year with 365 days"^^xsd:string ;
    qudt:symbol "m³/a"^^xsd:string ;
    qudt:ucumCode "m3.a-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M4 a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Quartic Metre"^^xsd:string,
        "Meter hoch vier"@de,
        "Quartic Metre"@en,
        "Quartic Meter"@en-us ;
    dcterms:description "A unit associated with area moments of inertia."^^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