Battery Ontology#
Welcome to the EMMO Battery Domain Ontology, a semantic resource with essential terms and relationships to describe battery cells, materials, methods, and data. Here’s a simple example:
1{
2 "@context": "https://w3id.org/emmo/domain/battery/context.json",
3 "@type": "CR2032",
4 "schema:name": "My CR2032 Coin Cell",
5 "schema:manufacturer": {
6 "@id": "https://www.wikidata.org/wiki/Q3041255",
7 "schema:name": "SINTEF"
8 },
9 "hasProperty": {
10 "@type": ["NominalCapacity", "ConventionalProperty"],
11 "hasNumericalPart": {
12 "@type": "Real",
13 "hasNumericalValue": 230
14 },
15 "hasMeasurementUnit": "emmo:MilliAmpereHour"
16 }
17}