Skip to content

Commit

Permalink
add electrochemical method examples
Browse files Browse the repository at this point in the history
  • Loading branch information
jsimonclark committed Jul 24, 2024
1 parent 1bd055b commit 314d03e
Show file tree
Hide file tree
Showing 9 changed files with 672 additions and 86 deletions.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
"rdfs:label": "SimonClark"
},
"hasLab": {
"@type": "Lab",
"@type": "Laboratory",
"@id": "https://www.wikidata.org/wiki/Q127510279",
"rdfs:label": "SINTEFBatteryLab"
"rdfs:label": "SINTEF Battery Lab"
},
"hasCharacterisationEnvironment": {
"@type": "CharacterisationEnvironment",
Expand Down
134 changes: 134 additions & 0 deletions docs/assets/jsonld/electrochemical_method_cyclic_voltammetry.jsonld
Original file line number Diff line number Diff line change
@@ -0,0 +1,134 @@
{
"@context": "https://w3id.org/emmo/domain/electrochemistry/context",
"@type": ["CyclicVoltammetry", "IterativeWorkflow"],
"rdfs:label": "Example Cyclic Voltammetry Measurement",
"rdfs:comment": "an example of a description of a cyclic voltammetry process",
"hasOperator": {
"@type": "schema:Person",
"@id": "https://orcid.org/0000-0002-8758-6109",
"rdfs:label": "SimonClark"
},
"hasLab": {
"@type": "Laboratory",
"@id": "https://www.wikidata.org/wiki/Q127510279",
"rdfs:label": "SINTEFBatteryLab"
},
"hasCharacterisationEnvironment": {
"@type": "CharacterisationEnvironment",
"rdfs:label": "ExampleEnvironment",
"rdfs:comment": "the environment where the test is performed",
"hasCharacterisationEnvironmentProperty": [
{
"@type": "AmbientCelsiusTemperature",
"hasNumericalPart": {
"@type": "Real",
"hasNumericalValue": 20
},
"hasMeasurementUnit": "emmo:DegreeCelsius"
}
]
},
"hasInput": {
"@type": "ThreeElectrodeCell",
"hasWorkingElectrode": {
"@type": "GlassyCarbonElectrode"
},
"hasCounterElectrode": {
"@type": "PlatinumElectrode"
},
"hasReferenceElectrode": {
"@type": "ReversibleHydrogenElectrode"
},
"hasElectrolyte": {
"@type": "AlkalineElectroylte",
"hasSolute": {
"@type": "PotassiumHydroxide",
"hasProperty": {
"@type": "AmountConcentration",
"hasNumericalPart": {
"@type": "Real",
"hasNumericalValue": 1
},
"hasMeasurementUnit": "emmo:MolePerLitre"
}
}
}
},
"hasOutput": [
{
"@type": "TimeSeriesDataSet",
"hasConstituent": [
{
"@type": "TimeData"
},
{
"@type": "VoltageData"
},
{
"@type": "CurrentData"
}
]
}
],
"hasTemporaryParticipant": {
"@type": "Potentiostat"
},
"hasTask": {
"@type": "ForwardVoltageSweep",
"hasMeasurementParameter": [
{
"@type": "PotentialScanRate",
"hasNumericalPart": {
"@type": "Real",
"hasNumericalValue": 10
},
"hasMeasurementUnit": "emmo:MilliVoltPerSecond"
},
{
"@type": ["LowerVoltageLimit"],
"hasNumericalPart": {
"@type": "Real",
"hasNumericalValue": -0.2
},
"hasMeasurementUnit": "emmo:Volt"
},
{
"@type": ["UpperVoltageLimit"],
"hasNumericalPart": {
"@type": "Real",
"hasNumericalValue": 1.2
},
"hasMeasurementUnit": "emmo:Volt"
}
],
"hasNext": {
"@type": "ReverseVoltageSweep",
"hasMeasurementParameter": [
{
"@type": "PotentialScanRate",
"hasNumericalPart": {
"@type": "Real",
"hasNumericalValue": 10
},
"hasMeasurementUnit": "emmo:MilliVoltPerSecond"
},
{
"@type": ["LowerVoltageLimit"],
"hasNumericalPart": {
"@type": "Real",
"hasNumericalValue": -0.2
},
"hasMeasurementUnit": "emmo:Volt"
},
{
"@type": ["UpperVoltageLimit"],
"hasNumericalPart": {
"@type": "Real",
"hasNumericalValue": 1.2
},
"hasMeasurementUnit": "emmo:Volt"
}
]
}
}
}
Empty file.
Empty file.
Empty file.
Loading

0 comments on commit 314d03e

Please sign in to comment.