Skip to content

Latest commit

 

History

History
52 lines (47 loc) · 1.99 KB

calibration-data-model.md

File metadata and controls

52 lines (47 loc) · 1.99 KB

Data structure of a calibration experiment

This data model describes the structure of a calibration experiment for an analyte. The calibration experiment consists of a list of samples that were measured. Each sample contains the initial concentration and the measured signal. The calibration experiment also contains information on the measurement conditions such as the temperature and pH at which the calibration experiment was performed.

Objects

Calibration

A Calibration contains information on the measurement conditions and the actual measurements of the calibration experiment for an analyte.

  • analyte_name
    • type: string
    • description: Name of the analyte that was calibrated
  • inchi
    • type: string
    • description: InChI of the analyte that was calibrated
  • date_measured
    • type: datetime
    • description: Timestamp of when the calibration experiment was performed
  • temperature
    • type: float
    • description: Temperature at which the calibration experiment was performed
  • temperature_unit
    • type: Unit
    • description: Unit of temperature
  • ph
    • type: float
    • description: pH at which the calibration experiment was performed
  • samples
    • type: Sample
    • multiple: True
    • description: List of samples that were used for the calibration experiment
  • wavelength
    • type: float
    • description: Wavelength at which the signal was measured in nm
  • slope
    • type: float
    • description: Slope of the calibration curve, representing the proportionality coefficient between the concentration and the signal

Sample

A Sample contains describes individual measurements of a Calibration.

  • init_conc
    • type: float
    • description: Initial concentration of the analyte sample
  • conc_unit
    • type: Unit
    • description: Unit of concentration
  • measured_signal
    • type: float
    • description: Signal that was measured for the sample
  • signal_unit
    • type: Unit
    • description: Unit of the signal