Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Different metrics results for travelledDistance and batteryTime #11

Open
pulver22 opened this issue Apr 24, 2020 · 0 comments
Open

Different metrics results for travelledDistance and batteryTime #11

pulver22 opened this issue Apr 24, 2020 · 0 comments
Assignees
Labels

Comments

@pulver22
Copy link
Owner

Printing results I noticed that the distances computed from:

  • historyList (keeping track of all the cells visited by the robot - regardless how many times they have been visited - after being cleaned by those visited multiple times)
  • tabuList (list of cell visited only the first time)
  • distance accumulated over time
    are differents. In particular, in historyList it seems that the last visited cell before completing the exploration is not added, leading to a small difference with the results in tabuList.

Instead, the distance accumulated over time is overestimated because sometimes we perform an updated even though we are doing backtracking (possibly because we are updating the target current pose of the robot while instead the robot is supposed to not move until a "new" destination is found).

For the moment, I am calling tabuList just before filling the logs so to be sure the values reported are the correct ones. But then I have to fix this discrepancy.

@pulver22 pulver22 added the bug label Apr 24, 2020
@pulver22 pulver22 self-assigned this Apr 24, 2020
@pulver22 pulver22 changed the title Different metrics results for travelledDistance Different metrics results for travelledDistance and batteryTime Apr 24, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant