This commit is contained in:
Woutverheijen
2025-12-17 08:44:37 +01:00
parent 1cf42b9a7e
commit 2d88c19bf1

View File

@@ -24,11 +24,11 @@ Asset Health Index: A score ranging from 0 (optimal condition) to 5 (worst case)
Further from the peak efficiency → higher penalty → worse health. Further from the peak efficiency → higher penalty → worse health.
3. These are combined into one score: 3. These are combined into one score:
score01 = 0.4 * unavailability score01 = 0.2 * unavailability
+ 0.4 * driftScore + 0.4 * driftScore
+ 0.2 * effPenalty; + 0.4 * effPenalty;
So: availability (40%) + drift (40%) + efficiency loss (20%). So: availability (20%) + drift (40%) + efficiency loss (40%).
4. Convert to index 05: 4. Convert to index 05:
index = round(score01 * 5) index = round(score01 * 5)