Community Tip - Want the oppurtunity to discuss enhancements to PTC products? Join a working group! X
Hello,
According to https://support.ptc.com/help/thingworx/apps/r9.0/en/#page/thingworx_apps%2FCustomizing_the_Apps%2Fcalculating_kpis.html%23 the Effectiveness is calculated using
PRI*PQ/APT
In my current case it means:
4.513*23/140
But my effectiveness is 45% instead of 74 %. What am I doing wrong?
Solved! Go to Solution.
Hi @gch ,
Below is the logic for calculations of the KPI’s.
OEE = Availability X Quality Ratio X Effectiveness
Availability = actualProductionTime_APT / plannedBusyTime_PBT.
Effectiveness = (( Δ producedQuantity * plannedRunTimePerItem_PRI) / actualProductionTime_APT).
Where Δ producedQuantity_PQ = producedQuantity_PQ - producedQuantity_PQ_firstValue (which stored in the kpiCacheValue property, this value is changed at the beginning of a shift).
Quality Ratio = Δ goodQuantity / Δ producedQuantity.
Where Δ goodQuantity = goodQuantity_GQ - goodQuantity_GQ_firstValue (which stored in the kpiCacheValue property, this value is changed at the beginning of a shift).
And Δ producedQuantity = producedQuantity_PQ - producedQuantity_PQ_firstValue.
When any KPI parameter seems to be incorrect, please check the kpiCacheValue property and compare the stored producedQuantity_PQ_firstValue and goodQuantity_GQ_firstValue with the current values (i.e. producedQuantity_PQ and goodQuantity_GQ respectively)
Thanks,
Himanshu
Hi @gch ,
Below is the logic for calculations of the KPI’s.
OEE = Availability X Quality Ratio X Effectiveness
Availability = actualProductionTime_APT / plannedBusyTime_PBT.
Effectiveness = (( Δ producedQuantity * plannedRunTimePerItem_PRI) / actualProductionTime_APT).
Where Δ producedQuantity_PQ = producedQuantity_PQ - producedQuantity_PQ_firstValue (which stored in the kpiCacheValue property, this value is changed at the beginning of a shift).
Quality Ratio = Δ goodQuantity / Δ producedQuantity.
Where Δ goodQuantity = goodQuantity_GQ - goodQuantity_GQ_firstValue (which stored in the kpiCacheValue property, this value is changed at the beginning of a shift).
And Δ producedQuantity = producedQuantity_PQ - producedQuantity_PQ_firstValue.
When any KPI parameter seems to be incorrect, please check the kpiCacheValue property and compare the stored producedQuantity_PQ_firstValue and goodQuantity_GQ_firstValue with the current values (i.e. producedQuantity_PQ and goodQuantity_GQ respectively)
Thanks,
Himanshu