Skip to main content

system.kanoa.event.getOEEColors(paramsDict, oee, availability, performance, quality)

Returns a dictionary of colors for oee, a, p and q based on the OEE thresholds set for the asset and the passed in oee values. Asset OEE values are stored in the custom asset attribute _oeeThresholds.


Parameters

paramsDict Dictionary: Can pass in any of the key options. AssetPath is recommended.

- assetIdInteger
- assetNameString
- assetPathString

oee Float: OEE value to check
availability Float: Availability value to check
performance Float: Performance value to check
quality Float: Quality value to check


Returns

oeeColors Dictionary i.e. {'performance' '--kcGood', 'availability' '--kcBad', 'quality' --kcOk'}


Example

paramsDict={'assetPath': 'Kanoa Industries'}
oee = 0.8
a = 0.6
p = 0.3
q = 0.8
print system.kanoa.event.getOEEColors(paramsDict, oee, a, p, q)
>>>
{'availability': '--kcBad', 'oee': '--kcGood', 'quality': '--kcGood', 'performance': '--kcBad'}