-
Notifications
You must be signed in to change notification settings - Fork 3
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
1bd055b
commit 314d03e
Showing
9 changed files
with
672 additions
and
86 deletions.
There are no files selected for viewing
331 changes: 331 additions & 0 deletions
331
docs/assets/jsonld/electrochemical_method_capacity_retention_and_recovery.jsonld
Large diffs are not rendered by default.
Oops, something went wrong.
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
134 changes: 134 additions & 0 deletions
134
docs/assets/jsonld/electrochemical_method_cyclic_voltammetry.jsonld
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,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.
Oops, something went wrong.