Site

oee ops glossary

A Site is the top-level organizational container representing a physical manufacturing location (e.g., a factory, plant, or facility). Sites are the root of the OEE/OPS hierarchy.

Database Table: oee_sites

ColumnTypeDescription
idUUID (PK)Auto-generated
organization_idVARCHAR(50)Org ownership
codeVARCHAR(50)Short identifier (e.g., “DEN-01”), unique per org
nameVARCHAR(255)Display name (e.g., “Denver Sterilization Facility”)
descriptionTEXTOptional
address_line1/2, city, state_province, postal_code, countryVARCHARPhysical address
default_oee_targetDECIMAL(5,2)Site-wide OEE target (default 85.00%)
default_availability_targetDECIMAL(5,2)Default 90.00%
default_performance_targetDECIMAL(5,2)Default 95.00%
default_quality_targetDECIMAL(5,2)Default 99.50%
availability_modeVARCHAR(20)'standard', 'teep', or 'strict'
is_activeBOOLEANWhether site is operational

Availability Modes

ModeFormula
standardRun / (Run + Unplanned)
teepRun / Total Calendar Time
strictRun / (Run + Unplanned + Planned)

Hierarchy

graph TD
    Site --> System["Systems (oee_systems)"]
    Site --> Station["Stations (ops_stations)"]
    Site --> Machine["Machines (oee_machines)"]
    Site --> ProductFamily["Product Families (ops_product_families)"]
    System --> Machine
    System --> Station
    ProductFamily --> Product["Products (ops_products)"]

Relationships

Codebase Paths

  • Table: database/sql_scripts/tables/oee_sites.sql

See Also