P-KPIs
Autumn Labs' standard Production Key Performance Indicators (P-KPIs)
There are many P-KPIs that the platform could report to the dashboard for a given station. Depending on the type of station, a specific subset of P-KPIs might be more appropriate. Note that the following is a superset of all that one might come across on their dashboard.
Yield
Yield is the measure of how efficiently one produces good units vs total units.
Yield calculations are based on the result parameter sent when a unit is tracked out of the station. Refer to the result
parameter for the
track_unit_out()
method in the SDK for more details.
: total number of unique units.
: will change depending on the type of yield you are calculating. See below.
First Pass Yield
First Pass Yield (FPY) shown on your dashboard only uses the first occurrence of the unit and its result at a specific station, group, or line and its associated reported result. The following steps are used:
- Identify the first occurrence of the unit at the specific station or group.
- Evaluate the associated reported result:
- A
pass
orpassed
result indicates that the unit met all test criteria. - A
fail
orfailed
result indicates that the unit did not meet one or more criteria.
- A
Final Yield
Final Yield is calculated based on the result of the final test or occurrence of the unit at the specific station, group, or line.
Example 1: Simple
In this example, we'll compute yield for one station with a simple product flow. We'll explore how flows with different retry policies will affect the numbers.
Unit Flow:
Time | Unit ID | Result | Station occurrence |
---|---|---|---|
01:23:00 | Unit 1 | Pass | 1st |
01:24:00 | Unit 2 | Fail | 1st |
01:25:00 | Unit 2 | Pass | 2nd |
01:26:00 | Unit 3 | Fail | 1st |
01:27:00 | Unit 3 | Fail | 2nd |
01:28:00 | Unit 4 | Pass | 1st |
- First Pass Yield: Out of 4 units, 2 units passed on the first attempt.
- Final Yield: Out of 4 units, 3 units passed after multiple attempts.
Example 2: Complex
In this example, we'll compute yield for a station group and the stations within. Stations A and B are duplicate fixtures in this station group i.e., parallel stations. We'll explore how flows with different retry policies will affect the numbers.
Station Group 1:
- Station A:
Time | Unit ID | Result | Station occurrence | Group occurrence |
---|---|---|---|---|
01:23:00 | Unit 1 | Pass | 1st | 1st |
01:24:00 | Unit 2 | Fail | 1st | 1st |
01:25:00 | Unit 2 | Pass | 2nd | 2nd |
01:26:00 | Unit 3 | Fail | 1st | 1st |
01:27:00 | Unit 4 | Fail | 1st | 1st |
01:28:00 | Unit 4 | Fail | 2nd | 2nd |
01:29:00 | Unit 5 | Fail | 1st | 1st |
01:30:00 | Unit 5 | Fail | 2nd | 2nd |
01:31:00 | Unit 6 | Fail | 1st | 1st |
01:32:00 | Unit 6 | Pass | 2nd | 3rd |
01:33:00 | Unit 7 | Fail | 1st | 1st |
01:34:00 | Unit 7 | Fail | 2nd | 3rd |
- Station B:
Time | Unit ID | Result | Station occurrence | Group occurrence |
---|---|---|---|---|
01:26:30 | Unit 3 | Pass | 1st | 2nd |
01:28:30 | Unit 4 | Fail | 1st | 3rd |
01:30:30 | Unit 5 | Pass | 1st | 3rd |
01:31:30 | Unit 6 | Fail | 1st | 2nd |
01:33:30 | Unit 7 | Pass | 1st | 2nd |
01:36:00 | Unit 8 | Pass | 1st | 1st |
01:37:00 | Unit 9 | Pass | 1st | 1st |
01:38:00 | Unit 10 | Pass | 1st | 1st |
Outcome:
Group 1 consists of Station A and Station B.
First Pass Yield: Out of 10 units, 4 units passed on their first attempt.
Final Yield: Out of 10 units, 8 units passed after multiple attempts.
- Station A:
- First Pass Yield: Out of 7 units, 1 unit passed on the first attempt.
- Final Yield: Out of 7 units, 3 units passed after multiple attempts.
- Station B:
- First Pass Yield: Out of 8 units, 6 units passed on the first attempt.
- Final Yield: Out of 8 units, 6 units passed after multiple attempts.
By tracking the results of each unit's pass and fail events at each station, you can calculate and monitor both the First Pass Yield and Final Yield to assess the quality and efficiency of your production process at every station.
Process Capability (CP/CPK)
CP
CP measures process variation.
Coming soon ...
CPK
CPK measures both process variation and accuracy.
Coming soon ...
UPH (Units Per Hour)
UPH measures the rate of production.
Coming soon ...