Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What's a good algorithm for determining the remaining time for something to complete? I know how many total lines there are, and how many have completed already, how should I estimate the time remaining?

share|improve this question

10 Answers

up vote 17 down vote accepted

Why not?

(linesProcessed / TimeTaken) (timetaken/linesProcessed) * LinesLeft = TimeLeft

TimeLeft will then be expressed in whatever unit of time timeTaken is.

Edit:

Thanks for the comment you're right this should be:

(TimeTaken / linesProcessed) * linesLeft=timeLeft

so we have

(10/100) * 200 = 20 Seconds now 10 seconds go past
(20/100) * 200 = 40 Seconds left now 10 more seconds and we process 100 more lines
(30/200) * 100 = 15 Seconds and now we all see why the copy file dialog jumps from 3 hours to 30 minutes :-)

share|improve this answer
Maybe I'm missing something here. Say we processed 100 lines over 10 seconds, with 200 lines left. That gives us (100/10)*200 = 2000 seconds left. Now 10 seconds pass with no more lines processed. Now, time left is (100/20)*200 = 1000 seconds left even though no more processing has occurred. – 17 of 26 Jan 23 '09 at 16:05
I'm not certain this equation is completely correct. – GWLlosa Jan 23 '09 at 16:12
2  
the expression should be (TimeTaken/linesProcessed)*linesLeft – Pete Kirkham Jan 23 '09 at 16:13
1  
Yea the expression was wrong;-) But it was right in the spirit of things! – JoshBerke Jan 23 '09 at 16:17
1  
Sometimes, when your brain shuts off, its nice to find someone who pointed out the obvious answer (only not so obvious after a long day hacking). Thanks. – Lucas Feb 10 at 21:36

Make sure to manage perceived performance.

Although all the progress bars took exactly the same amount of time in the test, two characteristics made users think the process was faster, even if it wasn't:

  1. progress bars that moved smoothly towards completion
  2. progress bars that sped up towards the end
share|improve this answer
1  
Yeah, I read that post. And I felt the effects of what he was talking about too. Copying felt REALLY slow in Vista, but apparently because of the progress bar and not the actual time it took. – Aaron Smith Jan 23 '09 at 15:56
No. Copying is really slow in Vista. And deleting, and un/sharing... – DisgruntledGoat Aug 6 '09 at 11:49
I agree Disgruntled. It's much better in Windows 7, much like everything else in Windows 7. – Aaron Smith Nov 3 '09 at 20:49

I'm surprised no one has answered this question with code!

The simple way to calculate time, as answered by @JoshBurke, can be coded as follows:

DateTime startTime = DateTime.Now;
for (int index = 0, count = lines.Count; index < count; index++) {
    // Do the processing
    ...

    // Calculate the time remaining:
    TimeSpan timeRemaining = TimeSpan.FromTicks(DateTime.Now.Subtract(startTime).Ticks * (count - (index+1)) / (index+1));

    // Display the progress to the user
    ...
}

This simple example works great for simple progress calculation.
However, for a more complicated task, there are many ways this calculation could be improved!

For example, when you're downloading a large file, the download speed could easily fluctuate. To calculate the most accurate "ETA", a good algorithm would be to only consider the past 10 seconds of progress. Check out ETACalculator.cs for an implementation of this algorithm!

ETACalculator.cs is from Progression -- an open source library that I wrote. It defines a very easy-to-use structure for all kinds of "progress calculation". It makes it easy to have nested steps that report different types of progress. If you're concerned about Perceived Performance (as @JoshBurke suggested), it will help you immensely.

share|improve this answer

Generally, you know three things at any point in time while processing:

  1. How many units/chunks/items have been processed up to that point in time (A).
  2. How long it has taken to process those items (B).
  3. The number of remaining items (C).

Given those items, the estimate (unless the time to process an item is constant) of the remaining time will be

B * C / A

share|improve this answer
Which time to process can never trully be constant can it? the difference might be negligable especially on small batches, but you can't control the system outside of your own app, plus it wouldn't be constant btw different hardware. – JoshBerke Jan 23 '09 at 15:52
The issue on hardware changing is irrelevant, as you're the CURRENT run for this equation, and presumably the hardware doesn't change by too much between lines 10 and 11. – GWLlosa Jan 23 '09 at 16:11

It depends greatly on what the "something" is. If you can assume that the amount of time to process each line is similar, you can do a simple calculation:

TimePerLine = Elapsed / LinesProcessed
TotalTime = TimePerLine * TotalLines
TimeRemaining = TotalTime - LinesRemaining * TimePerLine
share|improve this answer
Just a little Edit: TimeRemaining = (TotalTime - LinesRemaining) * TimePerLine – Reza Ayadipanah Apr 11 at 11:28

Not to revive a dead question but I kept coming back to reference this page.
I created a subclass of System.Diagnostics.Stopwatch to have function (CMCStopwatch.eta) that returns the estimated time remaining in the form of a System.TimeSpan .

class CMCStopWatch : Stopwatch
{
    /// <summary>
    /// Gets eta based off of stopwatch the specified counter.
    /// </summary>
    /// <param name="counter">The this is what line you are on</param>
    /// <param name="counterGoal">this is the total lines</param>
    /// <returns></returns>
    public TimeSpan eta(int counter, int counterGoal)
    {
        float elapsedMin = ((float)this.ElapsedMilliseconds / 1000) / 60;
        float minLeft = (elapsedMin / counter) * (counterGoal - counter); //see comment a
        TimeSpan ret = TimeSpan.FromMinutes(minLeft);
        return ret;
    }

    /* Comment A
     * this is based off of:
     * (TimeTaken / linesProcessed) * linesLeft=timeLeft
     * so we have
     * (10/100) * 200 = 20 Seconds now 10 seconds go past
     * (20/100) * 200 = 40 Seconds left now 10 more seconds and we process 100 more lines
     * (30/200) * 100 = 15 Seconds and now we all see why the copy file dialog jumps from 3 hours to 30 minutes :-)
     * 
     * pulled from http://stackoverflow.com/questions/473355/calculate-time-remaining/473369#473369
     * 
     */

}

Example:

int y = 500;
CMCStopwatch sw = new CMCStopwatch();
sw.Start();
for(int x = 0 ; x < y ; x++ )
{
    //do something
    Console.WriteLine("{0} time remaining",sw.eta(x,y).ToString());
}

Hopefully it will be of some use to somebody. ;)
--Chad


EDIT: It should be noted this is most accurate when each loop takes the same amount of time.

share|improve this answer

Where time$("ms") represents the current time in milliseconds since 00:00:00.00, and lof represents the total lines to process, and x represents the current line:

if Ln>0 then
    Tn=Tn+time$("ms")-Ln   'grand total of all laps
    Rn=Tn*(lof-x)/x^2      'estimated time remaining in seconds
end if
Ln=time$("ms")             'start lap time (current time)
share|improve this answer

That really depends on what is being done... lines are not enough unless each individual line takes the same amount of time.

The best way (if your lines are not similar) would probably be to look at logical sections of the code find out how long each section takes on average, then use those average timings to estimate progress.

share|improve this answer
They probably won't take the same amount of time, but I really just want to estimate the remaining time. I know it won't be 100% accurate. – Aaron Smith Jan 23 '09 at 15:46

If you know the percentage completed, and you can simply assume that the time scales linearly, something like

timeLeft = timeSoFar * (1/Percentage)

might work.

share|improve this answer

there is no standard algorithm i know of, my sugestion would be:

  • Create a variable to save the %
  • Calculate the complexity of the task you wish to track(or an estimative of it)
  • Put increments to the % from time to time as you would see fit given the complexity.

You probably seen programs where the load bar runs much faster in one point than in another. Well that's pretty much because this is how they do it. (though they probably just put increments at regular intervals in the main wrapper)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.