Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

brine

::{tab-item} Turtle

@prefix P: <urn:___param___#> .
@prefix ns1: <http://data.ashrae.org/standard223#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

P:name a ns1:Class,
        P:name ;
    rdfs:label "Brine-VariablePercent" ;
    ns1:composedOf P:salt-name,
        P:water-name ;
    rdfs:subClassOf ns1:Fluid-Water,
        <urn:nawi-water-ontology#Water-Brine> .

:: ::{tab-item} With Inline Dependencies

@prefix P: <urn:___param___#> .
@prefix ns1: <http://qudt.org/schema/qudt/> .
@prefix ns2: <http://data.ashrae.org/standard223#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

P:name a ns2:Class,
        P:name ;
    rdfs:label "Brine-VariablePercent" ;
    ns2:composedOf P:salt-name,
        P:water-name ;
    rdfs:subClassOf ns2:Fluid-Water,
        <urn:nawi-water-ontology#Water-Brine> .

P:salt-name a ns2:QuantifiableProperty ;
    ns2:hasQuantityKind <http://qudt.org/vocab/quantitykind/MassFraction> ;
    ns2:hasValue P:salt-value ;
    ns2:ofConstituent <urn:nawi-water-ontology#Constituent-NaCl> ;
    ns1:hasUnit ns1:PERCENT .

P:water-name a ns2:QuantifiableProperty ;
    ns2:hasQuantityKind <http://qudt.org/vocab/quantitykind/MassFraction> ;
    ns2:hasValue P:water-value ;
    ns2:ofConstituent ns2:Constituent-H20 ;
    ns1:hasUnit ns1:PERCENT .

::

Parameters

Dependencies

Dependents

Nothing depends on this template.

Graph Visualization

::{tab-item} Template :: ::{tab-item} With Inline Dependencies ::