﻿@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix unit: <https://w3id.org/uom/> .

unit:SI_code a owl:AnnotationProperty ;
    rdfs:label "SI code" .

unit:UCUM_code a owl:AnnotationProperty ;
    rdfs:label "UCUM code" .

unit:mmol.m-2.MPa-1.s-1 a owl:NamedIndividual ;
    rdfs:label "millimole per square metre megapascal second"@en ;
    skos:altLabel "millimole per square meter megapascal second"@en ;
    skos:definition "A unit which is equal to 10⁻³ mole per 1 square metre by 10⁶ pascal by 1 second."@en ;
    unit:SI_code "mmol m-2 MPa-1 s-1" ;
    unit:UCUM_code "mmol.m-2.MPa-1.s-1",
        "mmol/m2/MPa/s" .

