Station Product Standards

ops product station

Station Product Standards define per-station production expectations for each Product Family. This allows the same product family to have different standard hours, cycle times, and scrap rates at different stations.

Database Table: ops_station_product_standards

ColumnTypeDescription
idUUID (PK)Auto-generated
product_family_idUUID (FK)References Product Family
station_idUUID (FK)References Station
cycle_timeNUMERICExpected cycle time at this station
scrap_rateNUMERICExpected scrap rate at this station
standard_hoursNUMERICStation-specific standard hours

Unique constraint: (product_family_id, station_id) — one standard per family-station combination.

Use Case

A product family “Widget Assembly” might have:

  • Station “Cutting”: standard_hours = 0.5, scrap_rate = 2%
  • Station “Assembly”: standard_hours = 1.5, scrap_rate = 1%
  • Station “QC”: standard_hours = 0.25, scrap_rate = 0.5%

This granularity enables accurate per-station efficiency analysis.

Relationship to Product-Level Standard Hours

Products carry their own standard_hours field (see Product). The per-station standards in this table provide additional granularity for station-specific efficiency calculations, allowing the same product family to have different expectations depending on where in the process flow it is being worked.

Codebase Paths

  • Table: database/sql_scripts/tables/ops_station_product_standards.sql
  • Functions: database/sql_scripts/functions/ops/ops_product_family_station_spec_functions.sql

See Also