This feature allows you to configure penalty weights for various unsafe driving behaviours.
Instead of using fixed (hard-coded) numbers, you can adjust sliders to decide how much each behaviour affects the driver’s score.
The system automatically calculates the driver’s score using your selected values.
To set up, follow the steps below:
Click on Admin>>>Client settings >>Eco driving
On the opened settings panel with sliders, adjust penalty weights as per your preference
Adjust each slider to increase or decrease penalties.
Sliding right = stricter penalty (driver/device score drops faster).
Sliding left = softer penalty (driver/device drops slower).
Save changes — The new weights will take effect immediately in future calculations.
This is where it is visualised on the platform
We use these parameters
1: Harsh acceleration,
2: harsh braking,
3 harsh cornering
4. Overspeed [ you must select one specific type only so that it can be applied with the events 1 to 3 above]
5. Idling events
6. Impact events
We get a penalty score by awarding respective points to a driver/device that reports the parameters of the event above. It sums up to a maximum of 100 %. If an asset after our processing logic has a penalty score close to 100%, we consider the driver to be poor in driving. The opposite is true.
Actual Processing
To begin with, the overspeed penalty score is calculated by finding the difference between the vehicle speed and the speed limit. Penalty points are awarded depending on the severity and the time in minutes spent over that speed limit. So,
After getting the overspeed penalty score, we go ahead to get the harsh events penalty score per item.
penaltyHarshCornering = HarshCorneringPoints x harshCornerCountsPerKm);
penaltyHarshBraking = penaltyHarshBrakingPoints x harshBrakingCountsPerKm);
penaltyHarshAccel = penaltyAccelBrakingPoints x harshAccelCountsPerKm);
PenaltySpeedScore = (SpeedDiff Points x speedDifference x timeInMinutes)
PenaltyIdleScore = penaltyIdlePoints x IdleCountsPerKm);
PenaltyImpactScore= penaltyImpactPoints x ImpactCountsPerKm);
The actual score
Actualspeedscore = 100 - PenaltySpeedScore
ActualCorneringScore = 100 - penaltyHarshCornering
ActualHarshBrakingScore = 100 - penaltyHarshBraking;
ActualAccelScore = 100 – penaltyHarshBraking
ActuaPenaltyIdleScore = 100 - PenaltyIdleScore
ActuaPenaltyImpactScore = 100 - PenaltyImpactScore
Overall Score = (Speed Score+Accel Score+Braking Score+Cornering Score+ Idling score+Impact score) / 6