This document contains the complete specification for the ChemKED schema. The schema is broken into
several files for ease of maintenance. These files are combined with the custom !include
directive that has been added for this purpose. Note that !include should only be used in the
main schema file (chemked_schema.yaml) and must appear at the top of the file. The !include
directive is not supported in any actual ChemKED files.
Examples of constructing a ChemKED format file, as well as examples of files themselves, are located in :doc:`ck-tutorial`. The sections laid out in this file roughly correspond to the sections discussed in the tutorial.
- Meta Keys
- Reference Keys
- Common Property Keys
- Ignition Delay Keys
- Rapid Compression Machine Data Keys
- Laminar Burning Velocity Measurement Keys
- Jet Stirred Reactor Measurement Keys
- Outlet Concentration Measurement Keys
- Concentration Time Profile Measurement Keys
- Burner Stabilized Flame Speciation Measurement Keys
- Rate Coefficient Keys
- Schema-Only Keys
The keys in this section encode the "meta" information about the ChemKED file. All of the keys in this section are required in every ChemKED file.
chemked-version: string, required- A string with the version of the ChemKED schema that this file targets.
datapoints: sequence, required- A sequence of mappings representing the data encoded in the file. Each element of the sequence must conform to the schema described in :ref:`ignition-delay-keys` (for now).
file-version: integer, required- An integer that represents the version of the file. Should be incremented every time a change is committed to a file in the database.
The keys in this section are related to the reference for the experiment, the article where the data is published, and the apparatus used to conduct the experiment. All the top-level keys in this section are required, although some of the sub-keys are optional.
apparatus: mapping, requiredThis mapping provides information about the apparatus used to conduct the experiments. Fields:
kind: string, requiredMust be one of
shock tube,rapid compression machine,stirred reactor,jet stirred reactor,flow reactor,flame,outwardly propagating spherical flame,heat flux burner, orflame cone method. Values are case-sensitive.
institution: string, optionalThe institution where the experimental apparatus is located
facility: string, optionalA unique name or identifier for the apparatus, if the institution has several that are similar
mode: sequence, optionalA sequence of strings describing the mode(s) of operation of the apparatus, if applicable. Multiple modes may be specified to capture different facets of the configuration (e.g., flow regime and burner geometry for a flame experiment). Each element must be one of the following case-sensitive values:
- Shock tube modes:
reflected shock,incident shock,reflected shock wave,incident shock wave - Flow regime:
laminar,turbulent - Flame/burner configurations:
burner stabilized,burner-stabilized,constant volume combustion chamber,premixed,unstretched,spherical,cylindrical,slot burner,modified Bunsen burner,counterflow,twin flat,adiabatic - Flame method abbreviations:
OPF,HFM,CTF,SFF,FCM,LFF,Heat Flux Burner - Stretch extrapolation methods:
extrapolation method to zero stretch: LS,extrapolation method to zero stretch: NQ,extrapolation method to zero stretch: LC
- Shock tube modes:
experiment-type: string, requiredThe type of experiment encoded in this file. Must be one of the following case-sensitive values:
ignition delaylaminar burning velocity measurementconcentration time profile measurementjet stirred reactor measurementoutlet concentration measurementburner stabilized flame speciation measurementrate coefficient
reference: mapping, required- The reference contains the information about the article where the data in the file are
published. Fields:
journal: string, optional- The journal where the data are published
year: integer, required- The year of publication. Must be greater than 1600.
authors: sequence, required- A sequence of all the authors of the article, where the elements of the sequence are mappings that must conform to the :ref:`author <schema-author>` type.
volume: integer, optional- The volume of the publication. Must be greater than 0.
doi: string, optional- A DOI, if available.
detail: string, optional- A description of where in the article the data in this file are from, for instance, a figure or table number.
pages: string, optional- The pages in the journal where the article is published (not the pages where the data are
located, that would go in the
detailfield.)
The keys in this section can be specified as sub-keys of the the common-properties top-level
key, and reused in many different data points within a single ChemKED file. All of the keys in the
common-properties section are optional, although some of their values may be required in a
particular experiment type.
pressure-rise: sequence, optional- Has the same format as :ref:`pressure-rise <ignition-pressure-rise>`
pressure: sequence, optional- The pressure of the experiment, with dimensions of mass per length per time squared. Must conform to :ref:`value-unit-optional <schema-value-unit-optional>`
temperature: sequence, optional- The temperature of the experiment, with dimensions of temperature. Must conform to :ref:`value-unit-optional <schema-value-unit-optional>`
ignition-type: mapping, optional- Has the same schema as :ref:`ignition-type <ignition-ignition-type>`
ignition-delay: sequence, optional- The ignition delay measurement, with dimensions of time. Must conform to :ref:`value-unit-optional <schema-value-unit-optional>`
equivalence-ratio: sequence, optional- The equivalence ratio of the experiment, dimensionless. Must conform to :ref:`value-unit-optional <schema-value-unit-optional>`
laminar-burning-velocity: sequence, optional- The laminar burning velocity measurement, with dimensions of length per time. Must conform to :ref:`value-unit-optional <schema-value-unit-optional>`
residence-time: sequence, optional- The residence time in a flow/jet-stirred reactor experiment, with dimensions of time. Must conform to :ref:`value-unit-optional <schema-value-unit-optional>`
reactor-volume: sequence, optional- The volume of the reactor, with dimensions of length cubed. Must conform to :ref:`value-unit-optional <schema-value-unit-optional>`
reactor-length: sequence, optional- The length of the reactor, with dimensions of length. Must conform to :ref:`value-unit-optional <schema-value-unit-optional>`
reactor-diameter: sequence, optional- The diameter of the reactor, with dimensions of length. Must conform to :ref:`value-unit-optional <schema-value-unit-optional>`
flow-rate: sequence, optional- The flow rate through the reactor. Must conform to :ref:`value-unit-optional <schema-value-unit-optional>`
environment-temperature: sequence, optional- The temperature of the environment surrounding the reactor, with dimensions of temperature. Must conform to :ref:`value-unit-optional <schema-value-unit-optional>`
global-heat-exchange-coefficient: sequence, optional- The global heat exchange coefficient between the reactor and its environment. Must conform to :ref:`value-unit-optional <schema-value-unit-optional>`
exchange-area: sequence, optional- The heat exchange area between the reactor and its environment, with dimensions of length squared. Must conform to :ref:`value-unit-optional <schema-value-unit-optional>`
pressure-in-reference-state: sequence, optional- The pressure used to define the reference state for reported quantities, with dimensions of mass per length per time squared. Must conform to :ref:`value-unit-optional <schema-value-unit-optional>`
temperature-in-reference-state: sequence, optional- The temperature used to define the reference state for reported quantities, with dimensions of temperature. Must conform to :ref:`value-unit-optional <schema-value-unit-optional>`
composition: mapping, optional- This mapping provides the specification of the initial composition of the mixture. Fields:
kind: string, required- The
kindcan bemole fraction,mass fraction, ormole percent
species: sequence, required- The elements of this sequence specify the species and their amounts in the mixture. Each
element of the sequence is a mapping with the following keys:
species-name: string, required- The name of the species
InChI: string, required, excludesSMILES,atomic-composition- The InChI string for the species
SMILES: string, required, excludesInChI,atomic-composition- The SMILES string for the species
atomic-composition: sequence, required, excludesInChI,SMILES- A sequence of mappings representing the atoms that make up the species. Useful for
species without SMILES or InChI representations, such as real hydrocarbon fuels. Each
element of the sequence is a mapping with the following keys:
element: string, required- The name of the element
amount: float, required, must be greater than 0.0- The amount of the element
amount: sequence, required- A sequence conforming to either
:ref:`value-with-uncertainty <schema-value-with-uncertainty>` or
:ref:`value-without-uncertainty <schema-value-without-uncertainty>`, where the first
element is a float representing the species amount (interpreted according to the
parent
kind, e.g., mole fraction, mass fraction, or concentration units). The optional metadata mapping may additionally include the :ref:`evaluated-standard-deviation <schema-evaluated-standard-deviation>` fields. Because species amounts are unitless numbers, all uncertainty and evaluated-standard-deviation values must be plain floats (not strings with units).
This section details the schema for an autoignition delay measurement. This is one of the options for the :ref:`datapoints <meta-datapoints>` schema.
temperature: sequence, required- The temperature of the experiment, with dimensions of temperature. Must conform to :ref:`value-unit-required <schema-value-unit-required>`
composition: mapping, required- The composition of the experiment. Must conform to :ref:`composition <common-composition>`
pressure: sequence, required- The pressure of the experiment, with dimensions of mass per length per time squared. Must conform to :ref:`value-unit-required <schema-value-unit-required>`
ignition-type: mapping, requiredA mapping describing how the ignition delay is defined in the experiments. Fields:
target: string, requiredDescribes the target measurement (species or physical quantity) used to define ignition. Must be one of:
temperature,pressure,OH,OH*,CH,CH*,NH3,CO2,N2O,CH4,OHEX,CHEX,CO,H2O,C2,O,CH3OH,CH3,O2,soot,CO;O,[O]*[CO], orNEOC5H11.
type: string, requiredDescribes the type of ignition delay measurement. Can be one of:
d/dt max: maximum of the time derivative of thetargetd/dt min extrapolated: minimum slope of thetargetextrapolated to the baselined/dt max extrapolated: maximum slope of thetargetextrapolated to the baselined/dt second max: second maximum of the time derivative of thetargetmax: maximum of thetarget1/2 max: half-maximum of thetargetmin: minimum of thetargetconcentration: thetargetreaches a specified concentrationrelative concentration: thetargetreaches a specified fraction of a reference concentrationrelative increase: thetargetincreases by a specified amount relative to its initial value
amount: float, optionalA numeric threshold associated with the ignition
type(for example, the concentration or relative-increase value used whentypeisconcentration,relative concentration, orrelative increase).
ignition-delay: sequence, required- The ignition delay measurement, with dimensions of time. Must conform to :ref:`value-unit-required <schema-value-unit-required>`
first-stage-ignition-delay: sequence, optional- If two stages of ignition are present, this is the value of the first stage of ignition, with dimensions of time. Must conform to :ref:`value-unit-optional <schema-value-unit-optional>`
pressure-rise: sequence, optional- The pressure rise after the passage of the reflected shock, with dimensions of inverse time. Must conform to :ref:`value-unit-optional <schema-value-unit-optional>`
equivalence-ratio: sequence, optional- The equivalence ratio of the experiment, dimensionless. Must conform to :ref:`value-unit-optional <schema-value-unit-optional>`.
rcm-data: mapping, optional- Data related to rapid compression machine (RCM) experiments. The keys of the mapping are detailed in the :ref:`Rapid Compression Machine Data Keys <rcm-data-keys>` section.
time-histories: sequence, optional- A sequence of mappings conforming to the :ref:`time-history <ignition-time-history>` schema. Used to specify a time-varying history of one or more quantities during an experiment.
volume-history: mapping, optional- A legacy key for specifying a volume time-history for RCM experiments. New files should use
:ref:`time-histories <ignition-time-histories>` with
type: volumeinstead. Fields:volume: mapping, required- Describes the volume column in the
valuesarray. Must containunits(string with dimensions of length cubed) andcolumn(integer, 0 or 1).
time: mapping, required- Describes the time column in the
valuesarray. Must containunits(string with dimensions of time) andcolumn(integer, 0 or 1).
values: sequence, required- A sequence of
[time, volume]pairs of floats.
This section details the keys specific to rapid compression machine (RCM) experiments, which are subkeys of the :ref:`rcm-data <ignition-rcm-data>` key.
compression-time: sequence, optional- The time taken during the compression stroke of a rapid compression machine experiment, with dimensions of time. Must conform to :ref:`value-unit-optional <schema-value-unit-optional>`
compressed-pressure: sequence, optional- The pressure at the end of the compression stroke for a rapid compression machine experiment, with dimensions of mass per length per time squared. Must conform to :ref:`value-unit-optional <schema-value-unit-optional>`
compressed-temperature: sequence, optional- The temperature at the end of the compression stroke for a rapid compression machine experiment, with dimensions of temperature. Must conform to :ref:`value-unit-optional <schema-value-unit-optional>`
compression-ratio: sequence, optional- The dimensionless volumetric compression ratio for a rapid compression machine experiment. Must conform to :ref:`value-unit-optional <schema-value-unit-optional>`
stroke: sequence, optional- The length of the stroke in a rapid compression machine experiment, with dimensions of length. Must conform to :ref:`value-unit-optional <schema-value-unit-optional>`
clearance: sequence, optional- The clearance from the piston face to the end wall of the reaction chamber at the end of compression, with dimensions of length. Must conform to :ref:`value-unit-optional <schema-value-unit-optional>`
This section details the schema for a laminar burning velocity measurement datapoint, selected
when :ref:`experiment-type <reference-experiment-type>` is laminar burning velocity measurement.
temperature: sequence, required- Unburnt-mixture temperature, with dimensions of temperature. Must conform to :ref:`value-unit-required <schema-value-unit-required>`.
pressure: sequence, required- Unburnt-mixture pressure, with dimensions of mass per length per time squared. Must conform to :ref:`value-unit-required <schema-value-unit-required>`.
laminar-burning-velocity: sequence, required- The measured laminar burning velocity, with dimensions of length per time. Must conform to :ref:`value-unit-required <schema-value-unit-required>`.
composition: mapping, required- The composition of the unburnt mixture. Must conform to :ref:`composition <common-composition>`.
pressure-rise: sequence, optional- Rate of pressure rise during the measurement, with dimensions of inverse time. Must conform to :ref:`value-unit-optional <schema-value-unit-optional>`.
equivalence-ratio: sequence, optional- The equivalence ratio of the experiment, dimensionless. Must conform to :ref:`value-unit-optional <schema-value-unit-optional>`.
This section details the schema for a jet stirred reactor measurement datapoint, selected when
:ref:`experiment-type <reference-experiment-type>` is jet stirred reactor measurement.
temperature: sequence, required- Reactor temperature, with dimensions of temperature. Must conform to :ref:`value-unit-required <schema-value-unit-required>`.
pressure: sequence, required- Reactor pressure, with dimensions of mass per length per time squared. Must conform to :ref:`value-unit-required <schema-value-unit-required>`.
composition: mapping, required- The composition of the inlet mixture. Must conform to :ref:`composition <common-composition>`.
measured-composition: mapping, required- The composition measured at the reactor outlet. Must conform to :ref:`composition <common-composition>`.
equivalence-ratio: sequence, optional- The equivalence ratio of the experiment, dimensionless. Must conform to :ref:`value-unit-optional <schema-value-unit-optional>`.
environment-temperature: sequence, optional- Temperature of the environment surrounding the reactor, with dimensions of temperature. Must conform to :ref:`value-unit-optional <schema-value-unit-optional>`.
This section details the schema for an outlet concentration measurement datapoint (e.g., flow
reactor), selected when :ref:`experiment-type <reference-experiment-type>` is outlet
concentration measurement.
temperature: sequence, required- Reactor temperature, with dimensions of temperature. Must conform to :ref:`value-unit-required <schema-value-unit-required>`.
pressure: sequence, required- Reactor pressure, with dimensions of mass per length per time squared. Must conform to :ref:`value-unit-required <schema-value-unit-required>`.
composition: mapping, required- The composition of the inlet mixture. Must conform to :ref:`composition <common-composition>`.
measured-composition: mapping, required- The composition measured at the reactor outlet. Must conform to :ref:`composition <common-composition>`.
equivalence-ratio: sequence, optional- The equivalence ratio of the experiment, dimensionless. Must conform to :ref:`value-unit-optional <schema-value-unit-optional>`.
residence-time: sequence, optional- Residence time in the reactor, with dimensions of time. Must conform to :ref:`value-unit-optional <schema-value-unit-optional>`.
volumetric-flow-in-reference-state: sequence, optional- Volumetric flow rate through the reactor expressed in a defined reference state, with dimensions of length cubed per time. Must conform to :ref:`value-unit-optional <schema-value-unit-optional>`.
This section details the schema for a concentration time profile measurement datapoint (e.g.,
shock tube or flow reactor species profiles), selected when
:ref:`experiment-type <reference-experiment-type>` is concentration time profile
measurement.
temperature: sequence, required- The temperature of the experiment, with dimensions of temperature. Must conform to :ref:`value-unit-required <schema-value-unit-required>`.
pressure: sequence, required- The pressure of the experiment, with dimensions of mass per length per time squared. Must conform to :ref:`value-unit-required <schema-value-unit-required>`.
composition: mapping, required- The initial composition of the mixture. Must conform to :ref:`composition <common-composition>`.
concentration-profiles: sequence, required- A sequence of mappings, each describing the time history of a single species'
concentration. Each element has the following fields:
species-name: string, required- The name of the species.
InChI: string, optional- The InChI string for the species.
SMILES: string, optional- The SMILES string for the species.
quantity: mapping, required- A mapping describing the recorded concentration column. Fields:
units: string, required- The units of the concentration (e.g.,
mol/cm3,mole fraction).
time: mapping, required- A mapping describing the time column. Fields:
units: string, required- The units of the time, with dimensions of time.
values: sequence, required- A sequence of at least two rows. Each row is either
[time, concentration](two floats) or[time, concentration, uncertainty](three floats).
equivalence-ratio: sequence, optional- The equivalence ratio of the experiment, dimensionless. Must conform to :ref:`value-unit-optional <schema-value-unit-optional>`.
time-shift: mapping, optional- Defines the
t = 0reference used for the profile. Fields:target: string, required- The species or quantity used to define the time-zero reference.
type: string, required- Must be
half decreaseorrelative decrease.
amount: sequence, optional- A numerical threshold associated with
type(e.g., the fractional decrease). Must conform to :ref:`value-unit-optional <schema-value-unit-optional>`.
This section details the schema for a burner stabilized flame speciation measurement datapoint,
selected when :ref:`experiment-type <reference-experiment-type>` is burner stabilized flame
speciation measurement.
temperature: sequence, required- The temperature at the measurement location, with dimensions of temperature. Must conform to :ref:`value-unit-required <schema-value-unit-required>`.
pressure: sequence, required- The pressure of the experiment, with dimensions of mass per length per time squared. Must conform to :ref:`value-unit-required <schema-value-unit-required>`.
distance: sequence, required- The distance from the burner surface at which the sample was taken, with dimensions of length. Must conform to :ref:`value-unit-required <schema-value-unit-required>`.
composition: mapping, required- The composition of the inlet (unburnt) mixture. Must conform to :ref:`composition <common-composition>`.
measured-composition: mapping, required- The composition measured at
distancefrom the burner. Must conform to :ref:`composition <common-composition>`.
equivalence-ratio: sequence, optional- The equivalence ratio of the experiment, dimensionless. Must conform to :ref:`value-unit-optional <schema-value-unit-optional>`.
flow-rate: sequence, optional- The flow rate through the burner. Must conform to :ref:`value-unit-optional <schema-value-unit-optional>`.
This section details the schema for a rate coefficient determination datapoint, selected when
:ref:`experiment-type <reference-experiment-type>` is rate coefficient. Rate coefficient
experiments measure k(T) for a specific reaction; pressure and composition are commonly
absent.
temperature: sequence, required- The temperature at which the rate coefficient is reported, with dimensions of temperature. Must conform to :ref:`value-unit-required <schema-value-unit-required>`.
pressure: sequence, optional- The pressure at which the rate coefficient is reported, with dimensions of mass per length per time squared. Must conform to :ref:`value-unit-optional <schema-value-unit-optional>`.
rate-coefficient: sequence, optional- The measured rate coefficient. Units depend on the reaction order (e.g.,
cm3/mol/sfor second order). Must conform to :ref:`value-unit-optional <schema-value-unit-optional>`.
branching-ratio: sequence, optional- The branching ratio associated with the measurement, dimensionless. Must conform to :ref:`value-unit-optional <schema-value-unit-optional>`.
composition: mapping, optional- The composition of the mixture, if applicable. Must conform to :ref:`composition <common-composition>`.
equivalence-ratio: sequence, optional- The equivalence ratio of the experiment, dimensionless. Must conform to :ref:`value-unit-optional <schema-value-unit-optional>`.
The schema files contain several keys that are used purely as references within the schema and should not be used in actual ChemKED files. These keys are documented in this section.
value-with-uncertainty: sequenceA combination of a value and unit with an associated uncertainty and/or evaluated standard deviation. Sequence elements:
- 0: string or float, required
The first element of the sequence is the value and its associated units (as a single string, e.g.,
"1000.0 K") or a bare float. The units are validated to have appropriate dimensions for the particular quantity under consideration.
- 1: mapping, optional
The second element of the sequence is a mapping containing any combination of the following uncertainty and evaluated-standard-deviation fields:
Uncertainty fields:
uncertainty-type: string- The type of uncertainty. Must be
absoluteorrelative. Required whenuncertainty,upper-uncertainty, orlower-uncertaintyis specified.
uncertainty: string or float, excludesupper-uncertaintyandlower-uncertainty, requiresuncertainty-type- The symmetric uncertainty of the value. If
uncertainty-typeisabsoluteand a string is given, it must include units whose dimensions match the units of the value in the first element of the sequence.
upper-uncertainty: string or float, excludesuncertainty, requireslower-uncertaintyanduncertainty-type- The upper value of an asymmetrical uncertainty. Due to limitations in the Python
library, asymmetrical uncertainties aren't supported in PyKED, so the larger of
upper-uncertaintyandlower-uncertaintyis used.
lower-uncertainty: string or float, excludesuncertainty, requiresupper-uncertaintyanduncertainty-type- The lower value of an asymmetrical uncertainty. Due to limitations in the Python
library, asymmetrical uncertainties aren't supported in PyKED, so the larger of
upper-uncertaintyandlower-uncertaintyis used.
uncertainty-sourcetype: string, optional- A label describing how the
uncertaintyvalue was obtained. Typical values includereported,estimated,calculated, anddigitized.
The mapping may also include the :ref:`evaluated-standard-deviation <schema-evaluated-standard-deviation>` fields, which may be combined with, or used independently of, the uncertainty fields above.
evaluated-standard-deviation: mapping fields- A group of optional fields describing a statistically evaluated standard deviation for a
value (e.g., from a dataset-wide re-evaluation). These fields appear inside the metadata
mapping of a :ref:`value-with-uncertainty <schema-value-with-uncertainty>` entry or a
composition :ref:`amount <common-composition>` metadata mapping, and may be used with or
without the uncertainty fields:
evaluated-standard-deviation: string or float, optional- The evaluated standard deviation value. If given as a string with
absolutetype, must include units whose dimensions match the value.
evaluated-standard-deviation-type: string, optional- Must be
absoluteorrelative.
evaluated-standard-deviation-sourcetype: string, optional- A label describing how the evaluated standard deviation was obtained. Typical values
include
reported,estimated,calculated, anddigitized.
evaluated-standard-deviation-method: string, optional- The method used to compute the evaluated standard deviation. Typical values include
generic uncertainty,combined from scatter and reported uncertainty, andstatistical scatter.
value-without-uncertainty: sequence- A combination of a value and unit without any uncertainty metadata. Sequence elements:
- 0: string or float, required
- The first element of the sequence is the value and its associated units (as a single
string, e.g.,
"1.0 atm") or a bare float. The units are validated to have appropriate dimensions for the particular quantity under consideration.
value-metadata-only: sequence- A metadata-only entry containing uncertainty and/or evaluated-standard-deviation fields but
no value. Used in
common-propertieswhen the uncertainty metadata is shared across datapoints but the property value varies per datapoint. Sequence elements:- 0: mapping, required
- A mapping containing any combination of the uncertainty and evaluated-standard-deviation
fields listed in :ref:`value-with-uncertainty <schema-value-with-uncertainty>` (element
1). No value element is included.
value-unit-required: sequence, required- A sequence conforming to either :ref:`value-with-uncertainty <schema-value-with-uncertainty>` or :ref:`value-without-uncertainty <schema-value-without-uncertainty>`. Must be included in the ChemKED file.
value-unit-optional: sequence, optional- A sequence conforming to one of :ref:`value-with-uncertainty <schema-value-with-uncertainty>`, :ref:`value-without-uncertainty <schema-value-without-uncertainty>`, or :ref:`value-metadata-only <schema-value-metadata-only>`. May or may not be included in the ChemKED file.
time-history: mapping, optionalSpecify the time history of a quantity during an experiment. Fields:
type: string, requiredThe kind of quantity being recorded. Must be one of
volume,temperature,pressure,piston position,light emission,OH emission, orabsorption.
quantity: mapping, requiredA mapping describing the recorded quantity. Fields:
units: string, required- The units of the quantity, with dimensions appropriate for
type(e.g., length cubed forvolume, temperature fortemperature).
column: integer, required- The 0-based index of the column containing the quantity in the
valuesarray.
time: mapping, requiredA mapping describing the time in the history. Fields:
units: string, required- The units of the time, with dimensions of time
column: integer, required- The 0-based index of the column containing the time information in the
valuesarray.
uncertainty: mapping, optionalThe uncertainty of the values in the
quantitycolumn. Can be specified either globally by a single value in the sequence or by specifying a column that must be present in the values array. Mapping keys:type: string, required- Either
absoluteorrelativeto indicate the type of uncertainty
value: string, optional- A global value for the uncertainty applied to all points in the
valuesarray, specified as a string with units. Either this key must be present, or thecolumnandunitskeys must be present
column: integer, optional- The column in the
valuesarray containing the uncertainty of each point. Either this key and theunitskey must be specified, or thevaluekey must be specified.
units: string, optional- The units of the uncertainty in the
columnarray. IF thetypeis relative, this should bedimensionless. Either this key and thecolumnkey must be specified, or thevaluekey must be specified.
values: sequence or mapping, requiredMust be a sequence or mapping. If a mapping, the only key should be
filenamewhose value should be the filename of a comma-separated value file containing the values for the history. If a sequence, should be a sequence of sequences describing the values of the volume at the time points. Can be entered in any supported syntax, including:- [0.0, 0.0] - [1.0, 1.0] - - 2.0 - 2.0 - - 3.0 - 3.0