How do I calculate the eco driving parameters

How do I calculate the eco driving parameters

For the meantime it is hard coded logic,

 

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]  

  

So firstly, we get a penalty score by awarding respective points below to a 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 . 

  

We then get the final driver score to display by subtracting the penalty score from 100; 

Hardcoded scheme   

       //overspeeds  (penalty points ) 

         SpeedDiffFrom_0_9 = 2, 

        SpeedDiffFrom_10_19 =5, 

        SpeedDiffFrom_20_29 = 10, 

        SpeedDiffFrom_30_49 = 30, 

        SpeedDiffFrom_50_above = 70 

  

        //harsh behavior  

        HarshAccel = 10,   

        HarshBraking = 10, 

        HarshCornering = 10 

  

Actual Processing  

To begin with, overspeed penalty score is calculated by finding the difference between vehicle speed and speed limit, penalty points are awarded depending on severity and the time in minutes spent over that speed limit. So, we get overspeed episodes before we do: 

PenaltySpeedScore = (SpeedDiffFrom_10_19Points  x speedDifference x timeInMinutes  ) 

Actualspeedscore = 100 - PenaltySpeedScore; 

 

 

After getting overspeed penalty score we go ahead to get harsh events penalty score per item.  

penaltyHarshCornering = HarshCorneringPoints   x  harshCornerCountsPerKm); 

penaltyHarshBraking = penaltyHarshBrakingPoints  x  harshBrakingCountsPerKm); 

penaltyHarshAccel = penaltyAccelBrakingPoints  x  harshAccelCountsPerKm); 

 

Then actual score  

 ActualCorneringScore  = 100 - penaltyHarshCornering 

ActualHarshBraking      = 100 -  penaltyHarshBraking; 

ActualAccelScore         = 100 – penaltyHarshBraking 

 

 

 

Then what is displayed to the user is: 

 

OverallScore =  (Actualspeedscore  + ActualAccelScore + ActualHarshBraking   +ActualCorneringScore  )/4  

    • Related Articles

    • Dashboard

      Click on DASHBOARD option on the main menu. Here you'll browse a collection of dynamic and interactive widgets that can be configured to maintain situational awareness on all aspects and current events. Combine widgets that are useful for your fleet ...
    • jimi dashcam Configuration - JC261 & JC400 series

      The Jimi IoT dashcam is a device designed for vehicle monitoring and surveillance. It combines a dashcam with Internet of Things (IoT) capabilities to provide enhanced features and connectivity. To start first ensure we have the desired /recommended ...
    • The user already exists - how to use the same email address for different logins

      You've tried to add a user account, but the platform gave you an error message saying the user already exists: "The user already exists" This happens when the email address already exists on the WLT platform, it might have already been used by ...
    • The user already exists - how to use the same email address for different logins

      You've tried to add a user account, but the platform gave you an error message saying the user already exists: "The user already exists" This happens when the email address already exists on the WLT platform, it might have already been used by ...
    • External Location Sharing

      External location sharing refers to the process of sending or broadcasting your asset /vehicle physical location (such as GPS coordinates, address, or a mapped position) to people or systems outside of your Wlt account . The concept is used in ...