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.

uf-unit

::{tab-item} Turtle

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

P:name a ns2:UltrafiltrationUnit ;
    rdfs:label P:label ;
    ns1:hasConnectionPoint P:in,
        P:out ;
    ns1:hasRole P:role .

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

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

P:name a <urn:nawi-water-ontology#UltrafiltrationUnit> ;
    rdfs:label P:label ;
    ns1:hasConnectionPoint P:in,
        P:out ;
    ns1:hasRole P:role .

P:in a ns1:InletConnectionPoint ;
    ns1:hasMedium P:in-medium ;
    ns1:mapsTo P:in-mapsto .

P:in-mapsto a ns1:InletConnectionPoint ;
    ns1:hasMedium P:in-medium .

P:out a ns1:OutletConnectionPoint ;
    ns1:hasMedium P:out-medium ;
    ns1:mapsTo P:out-mapsto .

P:out-mapsto a ns1:OutletConnectionPoint ;
    ns1:hasMedium P:out-medium .

::

Parameters

Dependencies

Dependents

Nothing depends on this template.

Graph Visualization

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