-
Notifications
You must be signed in to change notification settings - Fork 52
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
1 parent
fda8419
commit e1ae12a
Showing
48 changed files
with
19,552 additions
and
0 deletions.
There are no files selected for viewing
82 changes: 82 additions & 0 deletions
82
SMARTENERGY/BatteriePass/io.BatteryPass.CarbonFootprint/1.0.0/CarbonFootprint.ttl
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,82 @@ | ||
###################################################################### | ||
# Copyright (c) 2024 Circulor GmbH on behalf of the Battery Pass Consortium | ||
# | ||
# See the NOTICE file(s) distributed with this work for additional | ||
# information regarding copyright ownership. | ||
# | ||
# This work is made available under the terms of the | ||
# Creative Commons Attribution 4.0 International (CC-BY-4.0) license, | ||
# which is available at | ||
# https://creativecommons.org/licenses/by/4.0/legalcode. | ||
# | ||
# SPDX-License-Identifier: CC-BY-4.0 | ||
####################################################################### | ||
|
||
@prefix samm: <urn:samm:org.eclipse.esmf.samm:meta-model:2.1.0#> . | ||
@prefix samm-c: <urn:samm:org.eclipse.esmf.samm:characteristic:2.1.0#> . | ||
@prefix samm-e: <urn:samm:org.eclipse.esmf.samm:entity:2.1.0#> . | ||
@prefix unit: <urn:samm:org.eclipse.esmf.samm:unit:2.1.0#> . | ||
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . | ||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | ||
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | ||
@prefix : <urn:samm:io.BatteryPass.CarbonFootprint:1.0.0#> . | ||
|
||
:CarbonFootprint a samm:Aspect ; | ||
samm:description "Data model for battery varbon footprint\nCopyright 2024 Circulor (for and on behalf of the Battery Pass Consortium). This work is licensed under a Creative Commons License Attribution-NonCommercial 4.0 International (CC BY-NC 4.0). Readers may reproduce material for their own publications, as long as it is not sold com-mercially and is given appropriate attribution."@en ; | ||
samm:properties ( :batteryCarbonFootprint :carbonFootprintPerLifecycleStage :carbonFootprintPerformanceClass :carbonFootprintStudy ) ; | ||
samm:operations ( ) ; | ||
samm:events ( ) . | ||
|
||
:batteryCarbonFootprint a samm:Property ; | ||
samm:description "The carbon footprint of the battery, calculated as kg of carbon dioxide equivalent per one kWh of the total energy provided by the battery over its expected service life, as declared in the Carbon Footprint Declaration."@en ; | ||
samm:characteristic :BatteryCarbonFootprint . | ||
|
||
:carbonFootprintPerLifecycleStage a samm:Property ; | ||
samm:description "The carbon footprint of the battery as share of total Battery Carbon Footprint, differentiated per life cycle stages raw material extraction, battery production, distribution and recycling."@en ; | ||
samm:characteristic :CarbonFootprints . | ||
|
||
:carbonFootprintPerformanceClass a samm:Property ; | ||
samm:description "The carbon footprint performance class that the relevant battery model per manufacturing plant corresponds to."@en ; | ||
samm:characteristic :CarbonFootprintPerformanceClass . | ||
|
||
:carbonFootprintStudy a samm:Property ; | ||
samm:description "A web link to get access to a public version of the study supporting the carbon footprint values."@en ; | ||
samm:characteristic samm-c:ResourcePath . | ||
|
||
:BatteryCarbonFootprint a samm-c:Measurement ; | ||
samm:description "The battery carbon footprint is an aggregation of the carbon footprint of the individual lifecycle stages"@en ; | ||
samm:dataType xsd:double ; | ||
samm-c:unit :kilogramperkilowatthour . | ||
|
||
:CarbonFootprints a samm-c:List ; | ||
samm:description "CarbainFootprints per lifecycle stage"@en ; | ||
samm:dataType :CarbonFootprintPerLifecycleStageEntity . | ||
|
||
:CarbonFootprintPerformanceClass a samm-c:Code ; | ||
samm:description "EV, industrial and LMT batteries shall bear a conspicuous, clearly legible and indelible label indicating the carbon footprint of the battery and the carbon footprint performance class that the relevant battery model per manufacturing plant corresponds to. The carbon footprint performance class shall be accessible via the battery passport. A meaningful number of classes of performance will be developed (?) with category A being the best class with the lowest carbon footprint life cycle impact."@en ; | ||
samm:dataType xsd:string . | ||
|
||
:kilogramperkilowatthour a samm:Unit ; | ||
samm:commonCode "kg CO2e/kWh" ; | ||
samm:symbol "CO2e/kWh" . | ||
|
||
:CarbonFootprintPerLifecycleStageEntity a samm:Entity ; | ||
samm:description "The carbon footprint of the battery as share of total Battery Carbon Footprint, differentiated per life cycle stage"@en ; | ||
samm:properties ( :lifecycleStage :carbonFootprint ) . | ||
|
||
:lifecycleStage a samm:Property ; | ||
samm:description "The description of the life cycle stage "@en ; | ||
samm:characteristic :LifecycleStage . | ||
|
||
:carbonFootprint a samm:Property ; | ||
samm:description "Carbon footprint of the individual lifecycle stage"@en ; | ||
samm:characteristic :CarbonFootprintValue . | ||
|
||
:LifecycleStage a samm-c:Enumeration ; | ||
samm:dataType xsd:string ; | ||
samm-c:values ( "RawMaterialExtraction" "MainProduction" "Distribution" "Recycling" ) . | ||
|
||
:CarbonFootprintValue a samm-c:Measurement ; | ||
samm:dataType xsd:double ; | ||
samm-c:unit :kilogramperkilowatthour . | ||
|
Oops, something went wrong.