From 9d708fea916738e3ab63625e2807b13d27ac0bbe Mon Sep 17 00:00:00 2001 From: Lukas Emele Date: Tue, 20 Jun 2023 14:41:48 +0200 Subject: [PATCH 01/13] Add `power generation technology` #1572 --- src/ontology/edits/oeo-physical.omn | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/src/ontology/edits/oeo-physical.omn b/src/ontology/edits/oeo-physical.omn index 02929c955..311a37d9f 100644 --- a/src/ontology/edits/oeo-physical.omn +++ b/src/ontology/edits/oeo-physical.omn @@ -6973,6 +6973,19 @@ pull request: https://github.com/OpenEnergyPlatform/ontology/pull/1575", OEO_00240003 +Class: OEO_00010423 + + Annotations: + "An power generation technology is an energy technology that describes how to combine power generating units and energy carriers in a power generation process to generate electrical energy.", + rdfs:label "power generation technology"@en + + SubClassOf: + OEO_00020267, + some + (OEO_00000334 + and ( some OEO_00240014)) + + Class: OEO_00020001 Annotations: @@ -7825,6 +7838,9 @@ pull request: https://github.com/OpenEnergyPlatform/ontology/pull/1561", OEO_00020056 some OEO_00020254 +Class: OEO_00020267 + + Class: OEO_00030000 Annotations: From 43f0c3afd7c7a93e4a5ed3dce99f15e2a3b7d079 Mon Sep 17 00:00:00 2001 From: Lukas Emele Date: Tue, 27 Jun 2023 08:35:25 +0200 Subject: [PATCH 02/13] Add `wind power technology` and subclasses #1572 --- src/ontology/edits/oeo-physical.omn | 54 ++++++++++++++++++++++++++++- 1 file changed, 53 insertions(+), 1 deletion(-) diff --git a/src/ontology/edits/oeo-physical.omn b/src/ontology/edits/oeo-physical.omn index 311a37d9f..03179c7d7 100644 --- a/src/ontology/edits/oeo-physical.omn +++ b/src/ontology/edits/oeo-physical.omn @@ -6976,7 +6976,7 @@ pull request: https://github.com/OpenEnergyPlatform/ontology/pull/1575", Class: OEO_00010423 Annotations: - "An power generation technology is an energy technology that describes how to combine power generating units and energy carriers in a power generation process to generate electrical energy.", + "A power generation technology is an energy technology that describes how to combine power generating units and energy carriers in a power generation process to generate electrical energy.", rdfs:label "power generation technology"@en SubClassOf: @@ -6986,6 +6986,58 @@ Class: OEO_00010423 and ( some OEO_00240014)) +Class: OEO_00010424 + + Annotations: + "A wind power technology is a power generation technology that describes how to combine wind energy converting units and air in a power generation process.", + rdfs:label "wind power technology"@en + + SubClassOf: + OEO_00010423, + ( some OEO_00000044) + and ( some + (OEO_00240014 + and (OEO_00010234 some + (OEO_00000446 + and (OEO_00010121 some OEO_00000054))))) + + +Class: OEO_00010425 + + Annotations: + "A offshore wind power technology is a wind power generation technology that describes how to use wind energy converting units in onshore wind farms.", + rdfs:label "onshore wind power technology"@en + + SubClassOf: + OEO_00010424, + ( some + (OEO_00000044 + and ( some OEO_00000311))) + and ( some + (OEO_00240014 + and (OEO_00010234 some + (OEO_00000446 + and (OEO_00010121 some OEO_00000054))))) + + +Class: OEO_00010426 + + Annotations: + "A offshore wind power technology is a wind power generation technology that describes how to use wind energy converting units in offshore wind farms.", + rdfs:label "offshore wind power technology"@en + + SubClassOf: + OEO_00010424, + ( some + (OEO_00000044 + and ( some OEO_00000308))) + and ( some + (OEO_00240014 + and (OEO_00010234 some + (OEO_00000446 + and (OEO_00010121 some OEO_00000054))))) + + Class: OEO_00020001 Annotations: From ff42db9b948ca2e31099349798d37e8097a16b4a Mon Sep 17 00:00:00 2001 From: Lukas Emele Date: Tue, 27 Jun 2023 08:49:41 +0200 Subject: [PATCH 03/13] Shorten axioms by using `wind energy transformation` #1572 --- src/ontology/edits/oeo-physical.omn | 18 +++--------------- 1 file changed, 3 insertions(+), 15 deletions(-) diff --git a/src/ontology/edits/oeo-physical.omn b/src/ontology/edits/oeo-physical.omn index 03179c7d7..c979c4405 100644 --- a/src/ontology/edits/oeo-physical.omn +++ b/src/ontology/edits/oeo-physical.omn @@ -6995,11 +6995,7 @@ Class: OEO_00010424 SubClassOf: OEO_00010423, ( some OEO_00000044) - and ( some - (OEO_00240014 - and (OEO_00010234 some - (OEO_00000446 - and (OEO_00010121 some OEO_00000054))))) + and ( some OEO_00020043) Class: OEO_00010425 @@ -7013,11 +7009,7 @@ Class: OEO_00010425 ( some (OEO_00000044 and ( some OEO_00000311))) - and ( some - (OEO_00240014 - and (OEO_00010234 some - (OEO_00000446 - and (OEO_00010121 some OEO_00000054))))) + and ( some OEO_00020043) Class: OEO_00010426 @@ -7031,11 +7023,7 @@ Class: OEO_00010426 ( some (OEO_00000044 and ( some OEO_00000308))) - and ( some - (OEO_00240014 - and (OEO_00010234 some - (OEO_00000446 - and (OEO_00010121 some OEO_00000054))))) + and ( some OEO_00020043) Class: OEO_00020001 From 45b2d3657bd8f00648b416ef07ae525bedf48b8a Mon Sep 17 00:00:00 2001 From: Lukas Emele Date: Tue, 27 Jun 2023 09:21:33 +0200 Subject: [PATCH 04/13] Add `solar power technology` and subclasses #1572 --- src/ontology/edits/oeo-physical.omn | 42 +++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/src/ontology/edits/oeo-physical.omn b/src/ontology/edits/oeo-physical.omn index c979c4405..f50d5b844 100644 --- a/src/ontology/edits/oeo-physical.omn +++ b/src/ontology/edits/oeo-physical.omn @@ -7026,6 +7026,48 @@ Class: OEO_00010426 and ( some OEO_00020043) +Class: OEO_00010427 + + Annotations: + "A solar power technology is a power generation technology that describes how to combine solar power units in an electricity generation process with solar energy as input.", + rdfs:label "solar power technology"@en + + SubClassOf: + OEO_00010423, + ( some OEO_00000034) + and ( some + (OEO_00020003 + and (OEO_00010234 some OEO_00000384))) + + +Class: OEO_00010428 + + Annotations: + "A photovoltaic technology is a power generation technology that describes how to combine photovoltaic panels in an electricity generation process with solar energy as input.", + rdfs:label "photovoltaic technology"@en + + SubClassOf: + OEO_00010427, + ( some OEO_00000348) + and ( some + (OEO_00020003 + and (OEO_00010234 some OEO_00000384))) + + +Class: OEO_00010429 + + Annotations: + "A solar power technology is a power generation technology that describes how to combine solar thermal power units in an electricity generation process with solar energy as input.", + rdfs:label "solar thermal power technology"@en + + SubClassOf: + OEO_00010427, + ( some OEO_00000035) + and ( some + (OEO_00020003 + and (OEO_00010234 some OEO_00000384))) + + Class: OEO_00020001 Annotations: From 54b23d8e6d9fc27444bb8e011ecffd908462aff7 Mon Sep 17 00:00:00 2001 From: Lukas Emele Date: Tue, 27 Jun 2023 09:23:04 +0200 Subject: [PATCH 05/13] Adapt definition `wind power technology` to match axiom #1572 --- src/ontology/edits/oeo-physical.omn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ontology/edits/oeo-physical.omn b/src/ontology/edits/oeo-physical.omn index f50d5b844..0615fbf91 100644 --- a/src/ontology/edits/oeo-physical.omn +++ b/src/ontology/edits/oeo-physical.omn @@ -6989,7 +6989,7 @@ Class: OEO_00010423 Class: OEO_00010424 Annotations: - "A wind power technology is a power generation technology that describes how to combine wind energy converting units and air in a power generation process.", + "A wind power technology is a power generation technology that describes how to combine wind energy converting units and a wind energy transformation.", rdfs:label "wind power technology"@en SubClassOf: From 6d4bb4899d0ef2c88ee236a0be1b7832c595f596 Mon Sep 17 00:00:00 2001 From: Lukas Emele Date: Tue, 27 Jun 2023 09:29:45 +0200 Subject: [PATCH 06/13] Add `geothermal power technology` #1572 --- src/ontology/edits/oeo-physical.omn | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/ontology/edits/oeo-physical.omn b/src/ontology/edits/oeo-physical.omn index 0615fbf91..a1bc85fe4 100644 --- a/src/ontology/edits/oeo-physical.omn +++ b/src/ontology/edits/oeo-physical.omn @@ -7068,6 +7068,20 @@ Class: OEO_00010429 and (OEO_00010234 some OEO_00000384))) +Class: OEO_00010430 + + Annotations: + "A geothermal power technology is a power generation technology that describes how to combine geothermal power units in an electricity generation process with geothermal energy as input.", + rdfs:label "geothermal power technology"@en + + SubClassOf: + OEO_00010423, + ( some OEO_00000019) + and ( some + (OEO_00240014 + and (OEO_00010234 some OEO_00000191))) + + Class: OEO_00020001 Annotations: From b38a11ceffb1605f0a837b43bb22b1ca2de12911 Mon Sep 17 00:00:00 2001 From: Lukas Emele Date: Tue, 27 Jun 2023 10:03:03 +0200 Subject: [PATCH 07/13] Add `hydro power technology` and subclasses #1572 --- src/ontology/edits/oeo-physical.omn | 106 ++++++++++++++++++++++++++++ 1 file changed, 106 insertions(+) diff --git a/src/ontology/edits/oeo-physical.omn b/src/ontology/edits/oeo-physical.omn index a1bc85fe4..6527a10b7 100644 --- a/src/ontology/edits/oeo-physical.omn +++ b/src/ontology/edits/oeo-physical.omn @@ -7082,6 +7082,112 @@ Class: OEO_00010430 and (OEO_00010234 some OEO_00000191))) +Class: OEO_00010431 + + Annotations: + "A hydro power technology is a power generation technology that describes how to combine hydro power units and a hydroelectric energy transformation.", + rdfs:label "hydro power technology"@en + + SubClassOf: + OEO_00010423, + some + (OEO_00010085 + and ( some OEO_00110005)) + + +Class: OEO_00010432 + + Annotations: + "A reservoir hydro storage power technology is a power generation technology that describes how to combine hydro power units in run of river power plant and a hydroelectric energy transformation.", + rdfs:label "run of river power technology"@en + + SubClassOf: + OEO_00010431, + ( some + (OEO_00010085 + and ( some OEO_00010087))) + and ( some OEO_00110005) + + +Class: OEO_00010433 + + Annotations: + "A reservoir hydro storage power technology is a power generation technology that describes how to combine hydro power units in reservoir hydro storage power plants and a hydroelectric energy transformation.", + rdfs:label "reservoir hydro storage power technology"@en + + SubClassOf: + OEO_00010431, + ( some + (OEO_00010085 + and ( some OEO_00010094))) + and ( some OEO_00110005) + + +Class: OEO_00010434 + + Annotations: + "A marine hydro power technology is a hydro power technology that describes how to combine hydro power units, a hydroelectric energy transformation and oceans.", + rdfs:label "marine hydro power technology"@en + + SubClassOf: + OEO_00010431, + some + (OEO_00010085 + and ( some + (OEO_00110005 + and ( some OEO_00010105)))) + + +Class: OEO_00010435 + + Annotations: + "A marine current energy technology is a marine hydro power technology that describes how to combine marine current energy converting units in marine current energy transformations.", + rdfs:label "marine current energy technology"@en + + SubClassOf: + OEO_00010434, + ( some OEO_00010108) + and ( some OEO_00010098) + + +Class: OEO_00010436 + + Annotations: + "A marine tidal energy technology is a marine hydro power technology that describes how to combine marine tidal energy converting units in marine tidal energy transformations.", + rdfs:label "marine tidal energy technology"@en + + SubClassOf: + OEO_00010434, + ( some OEO_00010109) + and ( some OEO_00010099) + + +Class: OEO_00010437 + + Annotations: + "A marine wave energy technology is a marine hydro power technology that describes how to combine marine wave energy converting units in marine wave energy transformations.", + rdfs:label "marine wave energy technology"@en + + SubClassOf: + OEO_00010434, + ( some OEO_00010109) + and ( some OEO_00010099) + + +Class: OEO_00010438 + + Annotations: + "A pumped hydro storage power technology is a power generation technology that describes how to combine hydro power units in pumped hydro storage power plants and a hydroelectric energy transformation.", + rdfs:label "pumped hydro storage power technology"@en + + SubClassOf: + OEO_00010431, + ( some + (OEO_00010085 + and ( some OEO_00010089))) + and ( some OEO_00110005) + + Class: OEO_00020001 Annotations: From 90c935f2da79af497e8c79f3e86901493e853a8a Mon Sep 17 00:00:00 2001 From: Lukas Emele Date: Tue, 27 Jun 2023 10:12:18 +0200 Subject: [PATCH 08/13] Add `nuclear power generation technology` #1572 --- src/ontology/edits/oeo-physical.omn | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/ontology/edits/oeo-physical.omn b/src/ontology/edits/oeo-physical.omn index 6527a10b7..c70ad1fa1 100644 --- a/src/ontology/edits/oeo-physical.omn +++ b/src/ontology/edits/oeo-physical.omn @@ -7188,6 +7188,20 @@ Class: OEO_00010438 and ( some OEO_00110005) +Class: OEO_00010439 + + Annotations: + "A nuclear power generation technology is a power generation technology that describes how to combine nuclear power units and nuclear fuel in an electricity generation process.", + rdfs:label "nuclear power technology"@en + + SubClassOf: + OEO_00010423, + ( some OEO_00000029) + and ( some + (OEO_00240014 + and (OEO_00000532 some OEO_00000302))) + + Class: OEO_00020001 Annotations: From 75c0f37b1a5d11e6db875514b7d972855c87adb8 Mon Sep 17 00:00:00 2001 From: Lukas Emele Date: Tue, 27 Jun 2023 10:27:06 +0200 Subject: [PATCH 09/13] Add `fuel power technology` and subclasses #1572 --- src/ontology/edits/oeo-physical.omn | 54 +++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) diff --git a/src/ontology/edits/oeo-physical.omn b/src/ontology/edits/oeo-physical.omn index c70ad1fa1..13e4d2900 100644 --- a/src/ontology/edits/oeo-physical.omn +++ b/src/ontology/edits/oeo-physical.omn @@ -7202,6 +7202,60 @@ Class: OEO_00010439 and (OEO_00000532 some OEO_00000302))) +Class: OEO_00010440 + + Annotations: + "A fuel power generation technology is a power technology that describes how to combine fueled power units in a fuel-powered electricity generation process.", + rdfs:label "fuel power technology"@en + + SubClassOf: + OEO_00010423, + ( some OEO_00000175) + and ( some OEO_00050001) + + +Class: OEO_00010441 + + Annotations: + "A coal power technology is a fuel power technology that describes how to combine coal power units and coal in a fuel-powered electricity generation process.", + rdfs:label "coal power technology"@en + + SubClassOf: + OEO_00010440, + ( some OEO_00000008) + and ( some + (OEO_00050001 + and (OEO_00000532 some OEO_00000088))) + + +Class: OEO_00010442 + + Annotations: + "A hard coal power technology is a coal power technology that describes how to combine hard coal power units and hard coal in a fuel-powered electricity generation process.", + rdfs:label "hard coal power technology"@en + + SubClassOf: + OEO_00010441, + ( some OEO_00000021) + and ( some + (OEO_00050001 + and (OEO_00000532 some OEO_00000204))) + + +Class: OEO_00010443 + + Annotations: + "A lignite power technology is a coal power technology that describes how to combine hard coal power units and lignite in a fuel-powered electricity generation process.", + rdfs:label "lignite power technology"@en + + SubClassOf: + OEO_00010441, + ( some OEO_00000024) + and ( some + (OEO_00050001 + and (OEO_00000532 some OEO_00000251))) + + Class: OEO_00020001 Annotations: From 60fac85989632f368934c10679c97876f9ebd3d0 Mon Sep 17 00:00:00 2001 From: Lukas Emele Date: Mon, 10 Jul 2023 14:59:45 +0200 Subject: [PATCH 10/13] Fix definitions, add term tracker items and update CHANGELOG.m,d #1572 --- CHANGELOG.md | 1 + src/ontology/edits/oeo-physical.omn | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7818256ef..d49f8cfbc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ and the versioning aims to respect [Semantic Versioning](http://semver.org/spec/ - material transformation, fuel production (#1575) - life cycle assessment (#1576) - energy technology (#1591) +- power generation technology and 20 subclasses (#1601) ### Changed - boolean variable, true, false (#1255) diff --git a/src/ontology/edits/oeo-physical.omn b/src/ontology/edits/oeo-physical.omn index 13e4d2900..4b5e0a5cd 100644 --- a/src/ontology/edits/oeo-physical.omn +++ b/src/ontology/edits/oeo-physical.omn @@ -7001,7 +7001,7 @@ Class: OEO_00010424 Class: OEO_00010425 Annotations: - "A offshore wind power technology is a wind power generation technology that describes how to use wind energy converting units in onshore wind farms.", + "An onshore wind power technology is a wind power generation technology that describes how to use wind energy converting units in onshore wind farms.", rdfs:label "onshore wind power technology"@en SubClassOf: @@ -7015,7 +7015,7 @@ Class: OEO_00010425 Class: OEO_00010426 Annotations: - "A offshore wind power technology is a wind power generation technology that describes how to use wind energy converting units in offshore wind farms.", + "An offshore wind power technology is a wind power generation technology that describes how to use wind energy converting units in offshore wind farms.", rdfs:label "offshore wind power technology"@en SubClassOf: From a0d5eb5fe1960e29b180d5ae5883758ce4fc1672 Mon Sep 17 00:00:00 2001 From: Lukas Emele Date: Mon, 10 Jul 2023 15:00:30 +0200 Subject: [PATCH 11/13] Add term tracker items #1572 --- src/ontology/edits/oeo-physical.omn | 44 ++++++++++++++++++++++++++++- 1 file changed, 43 insertions(+), 1 deletion(-) diff --git a/src/ontology/edits/oeo-physical.omn b/src/ontology/edits/oeo-physical.omn index 4b5e0a5cd..08519653b 100644 --- a/src/ontology/edits/oeo-physical.omn +++ b/src/ontology/edits/oeo-physical.omn @@ -6977,6 +6977,8 @@ Class: OEO_00010423 Annotations: "A power generation technology is an energy technology that describes how to combine power generating units and energy carriers in a power generation process to generate electrical energy.", + "issue: https://github.com/OpenEnergyPlatform/ontology/issues/1572 +pull request: https://github.com/OpenEnergyPlatform/ontology/pull/1601", rdfs:label "power generation technology"@en SubClassOf: @@ -6990,6 +6992,8 @@ Class: OEO_00010424 Annotations: "A wind power technology is a power generation technology that describes how to combine wind energy converting units and a wind energy transformation.", + "issue: https://github.com/OpenEnergyPlatform/ontology/issues/1572 +pull request: https://github.com/OpenEnergyPlatform/ontology/pull/1601", rdfs:label "wind power technology"@en SubClassOf: @@ -7002,6 +7006,8 @@ Class: OEO_00010425 Annotations: "An onshore wind power technology is a wind power generation technology that describes how to use wind energy converting units in onshore wind farms.", + "issue: https://github.com/OpenEnergyPlatform/ontology/issues/1572 +pull request: https://github.com/OpenEnergyPlatform/ontology/pull/1601", rdfs:label "onshore wind power technology"@en SubClassOf: @@ -7016,6 +7022,8 @@ Class: OEO_00010426 Annotations: "An offshore wind power technology is a wind power generation technology that describes how to use wind energy converting units in offshore wind farms.", + "issue: https://github.com/OpenEnergyPlatform/ontology/issues/1572 +pull request: https://github.com/OpenEnergyPlatform/ontology/pull/1601", rdfs:label "offshore wind power technology"@en SubClassOf: @@ -7030,6 +7038,8 @@ Class: OEO_00010427 Annotations: "A solar power technology is a power generation technology that describes how to combine solar power units in an electricity generation process with solar energy as input.", + "issue: https://github.com/OpenEnergyPlatform/ontology/issues/1572 +pull request: https://github.com/OpenEnergyPlatform/ontology/pull/1601", rdfs:label "solar power technology"@en SubClassOf: @@ -7044,6 +7054,8 @@ Class: OEO_00010428 Annotations: "A photovoltaic technology is a power generation technology that describes how to combine photovoltaic panels in an electricity generation process with solar energy as input.", + "issue: https://github.com/OpenEnergyPlatform/ontology/issues/1572 +pull request: https://github.com/OpenEnergyPlatform/ontology/pull/1601", rdfs:label "photovoltaic technology"@en SubClassOf: @@ -7057,7 +7069,9 @@ Class: OEO_00010428 Class: OEO_00010429 Annotations: - "A solar power technology is a power generation technology that describes how to combine solar thermal power units in an electricity generation process with solar energy as input.", + "A solar thermal power technology is a power generation technology that describes how to combine solar thermal power units in an electricity generation process with solar energy as input.", + "issue: https://github.com/OpenEnergyPlatform/ontology/issues/1572 +pull request: https://github.com/OpenEnergyPlatform/ontology/pull/1601", rdfs:label "solar thermal power technology"@en SubClassOf: @@ -7072,6 +7086,8 @@ Class: OEO_00010430 Annotations: "A geothermal power technology is a power generation technology that describes how to combine geothermal power units in an electricity generation process with geothermal energy as input.", + "issue: https://github.com/OpenEnergyPlatform/ontology/issues/1572 +pull request: https://github.com/OpenEnergyPlatform/ontology/pull/1601", rdfs:label "geothermal power technology"@en SubClassOf: @@ -7086,6 +7102,8 @@ Class: OEO_00010431 Annotations: "A hydro power technology is a power generation technology that describes how to combine hydro power units and a hydroelectric energy transformation.", + "issue: https://github.com/OpenEnergyPlatform/ontology/issues/1572 +pull request: https://github.com/OpenEnergyPlatform/ontology/pull/1601", rdfs:label "hydro power technology"@en SubClassOf: @@ -7099,6 +7117,8 @@ Class: OEO_00010432 Annotations: "A reservoir hydro storage power technology is a power generation technology that describes how to combine hydro power units in run of river power plant and a hydroelectric energy transformation.", + "issue: https://github.com/OpenEnergyPlatform/ontology/issues/1572 +pull request: https://github.com/OpenEnergyPlatform/ontology/pull/1601", rdfs:label "run of river power technology"@en SubClassOf: @@ -7113,6 +7133,8 @@ Class: OEO_00010433 Annotations: "A reservoir hydro storage power technology is a power generation technology that describes how to combine hydro power units in reservoir hydro storage power plants and a hydroelectric energy transformation.", + "issue: https://github.com/OpenEnergyPlatform/ontology/issues/1572 +pull request: https://github.com/OpenEnergyPlatform/ontology/pull/1601", rdfs:label "reservoir hydro storage power technology"@en SubClassOf: @@ -7127,6 +7149,8 @@ Class: OEO_00010434 Annotations: "A marine hydro power technology is a hydro power technology that describes how to combine hydro power units, a hydroelectric energy transformation and oceans.", + "issue: https://github.com/OpenEnergyPlatform/ontology/issues/1572 +pull request: https://github.com/OpenEnergyPlatform/ontology/pull/1601", rdfs:label "marine hydro power technology"@en SubClassOf: @@ -7142,6 +7166,8 @@ Class: OEO_00010435 Annotations: "A marine current energy technology is a marine hydro power technology that describes how to combine marine current energy converting units in marine current energy transformations.", + "issue: https://github.com/OpenEnergyPlatform/ontology/issues/1572 +pull request: https://github.com/OpenEnergyPlatform/ontology/pull/1601", rdfs:label "marine current energy technology"@en SubClassOf: @@ -7154,6 +7180,8 @@ Class: OEO_00010436 Annotations: "A marine tidal energy technology is a marine hydro power technology that describes how to combine marine tidal energy converting units in marine tidal energy transformations.", + "issue: https://github.com/OpenEnergyPlatform/ontology/issues/1572 +pull request: https://github.com/OpenEnergyPlatform/ontology/pull/1601", rdfs:label "marine tidal energy technology"@en SubClassOf: @@ -7166,6 +7194,8 @@ Class: OEO_00010437 Annotations: "A marine wave energy technology is a marine hydro power technology that describes how to combine marine wave energy converting units in marine wave energy transformations.", + "issue: https://github.com/OpenEnergyPlatform/ontology/issues/1572 +pull request: https://github.com/OpenEnergyPlatform/ontology/pull/1601", rdfs:label "marine wave energy technology"@en SubClassOf: @@ -7178,6 +7208,8 @@ Class: OEO_00010438 Annotations: "A pumped hydro storage power technology is a power generation technology that describes how to combine hydro power units in pumped hydro storage power plants and a hydroelectric energy transformation.", + "issue: https://github.com/OpenEnergyPlatform/ontology/issues/1572 +pull request: https://github.com/OpenEnergyPlatform/ontology/pull/1601", rdfs:label "pumped hydro storage power technology"@en SubClassOf: @@ -7192,6 +7224,8 @@ Class: OEO_00010439 Annotations: "A nuclear power generation technology is a power generation technology that describes how to combine nuclear power units and nuclear fuel in an electricity generation process.", + "issue: https://github.com/OpenEnergyPlatform/ontology/issues/1572 +pull request: https://github.com/OpenEnergyPlatform/ontology/pull/1601", rdfs:label "nuclear power technology"@en SubClassOf: @@ -7206,6 +7240,8 @@ Class: OEO_00010440 Annotations: "A fuel power generation technology is a power technology that describes how to combine fueled power units in a fuel-powered electricity generation process.", + "issue: https://github.com/OpenEnergyPlatform/ontology/issues/1572 +pull request: https://github.com/OpenEnergyPlatform/ontology/pull/1601", rdfs:label "fuel power technology"@en SubClassOf: @@ -7218,6 +7254,8 @@ Class: OEO_00010441 Annotations: "A coal power technology is a fuel power technology that describes how to combine coal power units and coal in a fuel-powered electricity generation process.", + "issue: https://github.com/OpenEnergyPlatform/ontology/issues/1572 +pull request: https://github.com/OpenEnergyPlatform/ontology/pull/1601", rdfs:label "coal power technology"@en SubClassOf: @@ -7232,6 +7270,8 @@ Class: OEO_00010442 Annotations: "A hard coal power technology is a coal power technology that describes how to combine hard coal power units and hard coal in a fuel-powered electricity generation process.", + "issue: https://github.com/OpenEnergyPlatform/ontology/issues/1572 +pull request: https://github.com/OpenEnergyPlatform/ontology/pull/1601", rdfs:label "hard coal power technology"@en SubClassOf: @@ -7246,6 +7286,8 @@ Class: OEO_00010443 Annotations: "A lignite power technology is a coal power technology that describes how to combine hard coal power units and lignite in a fuel-powered electricity generation process.", + "issue: https://github.com/OpenEnergyPlatform/ontology/issues/1572 +pull request: https://github.com/OpenEnergyPlatform/ontology/pull/1601", rdfs:label "lignite power technology"@en SubClassOf: From 37000137ca3a9aceea55231ad729831552de792d Mon Sep 17 00:00:00 2001 From: stap-m <38690039+stap-m@users.noreply.github.com> Date: Mon, 31 Jul 2023 07:45:26 +0200 Subject: [PATCH 12/13] Update src/ontology/edits/oeo-physical.omn Co-authored-by: chrwm <54852694+chrwm@users.noreply.github.com> --- src/ontology/edits/oeo-physical.omn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ontology/edits/oeo-physical.omn b/src/ontology/edits/oeo-physical.omn index 092d04321..4b5fe5135 100644 --- a/src/ontology/edits/oeo-physical.omn +++ b/src/ontology/edits/oeo-physical.omn @@ -7236,7 +7236,7 @@ pull request: https://github.com/OpenEnergyPlatform/ontology/pull/1601", Class: OEO_00010440 Annotations: - "A fuel power generation technology is a power technology that describes how to combine fueled power units in a fuel-powered electricity generation process.", + "A fuel-powered generation technology is a power technology that describes how to combine fuel-powered units in a fuel-powered electricity generation process.", "issue: https://github.com/OpenEnergyPlatform/ontology/issues/1572 pull request: https://github.com/OpenEnergyPlatform/ontology/pull/1601", rdfs:label "fuel power technology"@en From a69a0c134c1f4230c873b179e0c6f0a5d7c50c53 Mon Sep 17 00:00:00 2001 From: chrwm <54852694+chrwm@users.noreply.github.com> Date: Tue, 1 Aug 2023 13:16:17 +0200 Subject: [PATCH 13/13] Update src/ontology/edits/oeo-physical.omn Co-authored-by: stap-m <38690039+stap-m@users.noreply.github.com> --- src/ontology/edits/oeo-physical.omn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ontology/edits/oeo-physical.omn b/src/ontology/edits/oeo-physical.omn index 4b5fe5135..871043ec6 100644 --- a/src/ontology/edits/oeo-physical.omn +++ b/src/ontology/edits/oeo-physical.omn @@ -7250,7 +7250,7 @@ pull request: https://github.com/OpenEnergyPlatform/ontology/pull/1601", Class: OEO_00010441 Annotations: - "A coal power technology is a fuel power technology that describes how to combine coal power units and coal in a fuel-powered electricity generation process.", + "A coal power technology is a fuel-powered technology that describes how to combine coal power units and coal in a fuel-powered electricity generation process.", "issue: https://github.com/OpenEnergyPlatform/ontology/issues/1572 pull request: https://github.com/OpenEnergyPlatform/ontology/pull/1601", rdfs:label "coal power technology"@en