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: .. tab-set:: .. tab-item:: Raw Data Here is a sample of the raw data. The full dataset is available `here `__. .. code-block:: text 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 ... .. tab-item:: JSON .. code-block:: json :linenos: { "@context": "https://w3id.org/emmo/domain/electrochemistry/context", "@type": "MeasurementResult", "csvw:url": "https://archive.big-map.eu/records/24mdd-z2x02/files/LNO%20CV.csv", "dc:title": "Example Cyclic Voltammetry Data", "dcat:keyword": ["cyclic voltammetry", "LNO", "battery"], "dc:license": "BIG-MAP Archive License", "dc:modified": {"@value": "2024-01-29", "@type": "xsd:date"}, "dc:creator": { "@id": "https://orcid.org/0000-0002-9401-1362", "schema:name": "Christian Wolke" }, "dc:contributor": { "@id": "https://orcid.org/0000-0002-8758-6109", "schema:name": "Simon Clark" }, "@reverse": { "hasOutput": { "@type": "CyclicVoltammetry" } }, "csvw:tableSchema": { "csvw:columns": [{ "csvw:name": "potential", "csvw:titles": "Potential vs. Li", "csvw:propertyUrl": "ElectricPotential", "hasMeasurementUnit": "emmo:MilliVolt", "csvw:datatype": "number", "csvw:required": true }, { "csvw:name": "current", "csvw:titles": "I", "csvw:propertyUrl": "ElectricCurrent", "hasMeasurementUnit": "emmo:MilliAmpere", "csvw:datatype": "number" }, { "csvw:name": "current density", "csvw:titles": "Current density", "csvw:propertyUrl": "ElectricCurrentDensity", "hasMeasurementUnit": "emmo:MilliAmperePerSquareCentiMetre", "csvw:datatype": "number" }], "csvw:primaryKey": "potential" } } .. tab-item:: JSON-LD Playground .. raw:: html
This example highlights a few things: #. **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. #. **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. #. **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.