Equipment Configuration Beta

The actual equipment within a cell. This could be a machine, a device, or any other piece of hardware that performs certain tasks.

Parameters

ParameterDescription
nameName of the equipment.
idId of the equipment.
<<: templateReference to the equipment template.
sensorSensor child element.

YAML

version: '1.0'
equipment:
  - name: string   # Name of the equipment
    id: string     # ID of the equipment
    <<: *template_equipment
    sensor: ...

Template

YAML example template definition for equipment.

template_equipment: &template_equipment
  dataops:
    normalization:
      units: string
      scale: float
      offset: float
      method: string
      missing_values:
        strategy: string
        fill_value: string
    transformation:
      aggregation:
        method: string
        window: int
      calculation:
        operation: string
        operands: list
      filtering:
        method: string
        parameters: list