-
Is the current battery state part of the estimation process for the task dispatching, or is it only important if its enough to finish the job? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The cost of a task is purely determined by Battery level is taken as a constraint where the robot's battery cannot drop below a certain threshold before the task is finished. To some extent power consumption is implicitly factored into the cost estimate of the task because minimizing the time spent on a task will also minimize the battery consumption.
Can you be more specific about which "estimator" you're referring to? If you're asking about the |
Beta Was this translation helpful? Give feedback.
The cost of a task is purely determined by
F - I
whereF
is the time that the task is expected to finish andI
is the earliest time that the task is allowed to start. For ad hoc tasks that should run immediately,I
is effectively just the time that the task is issued. For scheduled tasks,I
is the time that the task is scheduled to begin.Battery level is taken as a constraint where the robot's battery cannot drop below a certain threshold before the task is finished. To some extent power consumption is implicitly factored into the cost estimate of the task because minimizing the time spent on a task will also minimize the battery consumption.