Cyclic Voltammetry Data#

This example, let’s describe an instance of some data resulting from a cyclic voltammetry measurement. The JSON-LD description of the material is given below:

Here is a sample of the raw data. The full dataset is available here.

Potential vs. Li,    I,                   Current density
3.23298835754395,    -2.4205593945E-5,    -1.82364020204592E-5
3.23400592803955,    4.0393830738E-5,     3.04325577863671E-5
3.23596382141113,    8.0873372277E-5,     6.09296897628194E-5
3.23801350593567,    1.02431497847E-4,    7.71714992220444E-5
3.23996043205261,    1.18972335809E-4,    8.96333033618521E-5
3.24193286895752,    1.32529418259E-4,    9.98471574959202E-5
3.24395799636841,    1.43424495793E-4,    1.0805546729429E-4
...
 1{
 2   "@context": "https://raw.githubusercontent.com/emmo-repo/domain-electrochemistry/master/context.json",
 3   "@type": "MeasurementResult",
 4   "csvw:url": "https://archive.big-map.eu/records/24mdd-z2x02/files/LNO%20CV.csv",
 5   "dc:title": "Example Cyclic Voltammetry Data",
 6   "dcat:keyword": ["cyclic voltammetry", "LNO", "battery"],
 7   "dc:license": "BIG-MAP Archive License",
 8   "dc:modified": {"@value": "2024-01-29", "@type": "xsd:date"},
 9   "dc:creator": {
10      "@id": "https://orcid.org/0000-0002-9401-1362",
11      "schema:name": "Christian Wolke"
12   },
13   "dc:contributor": {
14      "@id": "https://orcid.org/0000-0002-8758-6109",
15      "schema:name": "Simon Clark"
16   },
17   "@reverse": {
18      "hasOutput": {
19      "@type": "CyclicVoltammetry"
20      }
21   },
22   "csvw:tableSchema": {
23      "csvw:columns": [{
24         "csvw:name": "potential",
25         "csvw:titles": "Potential vs. Li",
26         "csvw:propertyUrl": "ElectricPotential",
27         "hasMeasurementUnit": "emmo:MilliVolt",
28         "csvw:datatype": "number",
29         "csvw:required": true
30      }, {
31         "csvw:name": "current",
32         "csvw:titles": "I",
33         "csvw:propertyUrl": "ElectricCurrent",
34         "hasMeasurementUnit": "emmo:MilliAmpere",
35         "csvw:datatype": "number"
36      }, {
37         "csvw:name": "current density",
38         "csvw:titles": "Current density",
39         "csvw:propertyUrl": "ElectricCurrentDensity",
40         "hasMeasurementUnit": "emmo:MilliAmperePerSquareCentiMetre",
41         "csvw:datatype": "number"
42      }],
43      "csvw:primaryKey": "potential"
44      }
45}

This example highlights a few things:

  1. EMMO distinguishes properties according to how they were determined. In this example, a ConventionalProperty is a property whose value is assigned by convention (e.g. from a technical specification sheet, handbook, etc.). EMMO also provides terms for MeasuredProperty for properties which were actually determined by some measurement and ModelledProperty for properties that were obtained from some model.

  2. EMMO has a specific way of expressing quantitative properties. As shown in the example, a quantitative property has a @type that describes what kind of property it is, hasNumericalPart describes the value, and hasMeasurementUnit defines the unit. Please adhere to this format when expressing quantities in your linked data.

  3. We can re-use terms from common vocabularies like schema.org. One of the core principles of linked data is to re-use existing vocabularies when possible. The schema.org vocabulary was developed to support internet search engines and contains terms for things that people often search for (e.g. people, organizations, products, etc.) In this case, we can re-use schema.org terms to describe the manufacturer and product.