-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
94 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
@prefix : <http://www.iwm.fraunhofer.de/ontologies/thermodynamics/> . | ||
@prefix ex: <https://www.iwm.fraunhofer.de/ontologies/example/> . | ||
@prefix owl: <http://www.w3.org/2002/07/owl#> . | ||
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . | ||
@prefix xml: <http://www.w3.org/XML/1998/namespace> . | ||
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | ||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | ||
@base <http://www.iwm.fraunhofer.de/ontologies/thermodynamics/> . | ||
|
||
<http://www.iwm.fraunhofer.de/ontologies/thermodynamics> rdf:type owl:Ontology ; | ||
owl:imports <http://purl.obolibrary.org/obo/bfo/2020/bfo.owl> . | ||
|
||
################################################################# | ||
# Object Properties | ||
################################################################# | ||
|
||
### https://w3id.org/pmd/co/PMD_0020112 | ||
<https://w3id.org/pmd/co/PMD_0020112> rdf:type owl:ObjectProperty ; | ||
rdfs:subPropertyOf <http://purl.obolibrary.org/obo/BFO_0000176> ; | ||
rdfs:range <https://w3id.org/pmd/co/PMD_0020111> ; | ||
rdfs:label "consists of"@en . | ||
|
||
|
||
################################################################# | ||
# Classes | ||
################################################################# | ||
|
||
### https://w3id.org/pmd/co/PMD_0020111 | ||
<https://w3id.org/pmd/co/PMD_0020111> rdf:type owl:Class ; | ||
rdfs:subClassOf <http://purl.obolibrary.org/obo/BFO_0000040> ; | ||
rdfs:label "portion of matter"@en . | ||
|
||
|
||
### https://w3id.org/pmd/co/PMD_0020113 | ||
<https://w3id.org/pmd/co/PMD_0020113> rdf:type owl:Class ; | ||
rdfs:subClassOf [ owl:intersectionOf ( <http://purl.obolibrary.org/obo/BFO_0000019> | ||
[ rdf:type owl:Restriction ; | ||
owl:onProperty <http://purl.obolibrary.org/obo/BFO_0000197> ; | ||
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ; | ||
owl:onClass <https://w3id.org/pmd/co/PMD_0020111> | ||
] | ||
) ; | ||
rdf:type owl:Class | ||
] ; | ||
owl:disjointWith <https://w3id.org/pmd/co/PMD_0020114> ; | ||
rdfs:label "Intensive tdp"@en . | ||
|
||
|
||
### https://w3id.org/pmd/co/PMD_0020114 | ||
<https://w3id.org/pmd/co/PMD_0020114> rdf:type owl:Class ; | ||
rdfs:subClassOf [ owl:intersectionOf ( <http://purl.obolibrary.org/obo/BFO_0000019> | ||
[ rdf:type owl:Restriction ; | ||
owl:onProperty <http://purl.obolibrary.org/obo/BFO_0000197> ; | ||
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ; | ||
owl:onClass [ rdf:type owl:Class ; | ||
owl:unionOf ( <http://purl.obolibrary.org/obo/BFO_0000027> | ||
<http://purl.obolibrary.org/obo/BFO_0000030> | ||
) | ||
] | ||
] | ||
) ; | ||
rdf:type owl:Class | ||
] ; | ||
rdfs:label "Extensive tdp"@en . | ||
|
||
|
||
################################################################# | ||
# Individuals | ||
################################################################# | ||
|
||
### https://www.iwm.fraunhofer.de/ontologies/example/mass | ||
ex:mass rdf:type owl:NamedIndividual , | ||
<https://w3id.org/pmd/co/PMD_0020114> . | ||
|
||
|
||
### https://www.iwm.fraunhofer.de/ontologies/example/temperature | ||
ex:temperature rdf:type owl:NamedIndividual , | ||
<https://w3id.org/pmd/co/PMD_0020113> . | ||
|
||
|
||
### https://www.iwm.fraunhofer.de/ontologies/example/portion of steel | ||
<https://www.iwm.fraunhofer.de/ontologies/example/portion_of_steel> rdf:type owl:NamedIndividual , | ||
<https://w3id.org/pmd/co/PMD_0020111> ; | ||
<http://purl.obolibrary.org/obo/BFO_0000196> ex:temperature . | ||
|
||
|
||
### https://www.iwm.fraunhofer.de/ontologies/example/steel sheet | ||
<https://www.iwm.fraunhofer.de/ontologies/example/steel_sheet> rdf:type owl:NamedIndividual , | ||
<http://purl.obolibrary.org/obo/BFO_0000030> ; | ||
<http://purl.obolibrary.org/obo/BFO_0000196> ex:mass ; | ||
<https://w3id.org/pmd/co/PMD_0020112> <https://www.iwm.fraunhofer.de/ontologies/example/portion_of_steel> . | ||
|
||
|
||
### Generated by the OWL API (version 4.5.29.2024-05-13T12:11:03Z) https://github.com/owlcs/owlapi |