Jump to content

Time remaining


mark-hale

Recommended Posts

Posted · Time remaining

Have noticed that the time remaining, displayed on the Ultimaker2 seems to vary a great deal compared to CURA.

Was printing an item last night, which on CURA said 15mins, but on starting this on the UM2, the display showed 2 hours, this time fluctuated quite a bit and only seemed to be accurate in the last several minutes. It did actually only take 15 minutes so assume its a calibration issue.

Where does the printer get it's time estimates from, is this something that the end user can adjust.

 

  • Link to post
    Share on other sites

    Posted · Time remaining

    I haven't read through the firmware so I don't know but I'm guessing it's a simple estimation calculated based on how long the already printed layers took to print (average) * how many layers are left. That's why the estimate gets more accurate towards the end of the print. Cura probably does a more advanced calculation where it actually goes through and estimates the time for every layer all at once.

     

  • Link to post
    Share on other sites

    Posted · Time remaining

    The estimate on the screen is a bit of a complex piece of code, and it depends a bit on the GCode file. If you have the UM2 profile, then the UM2 will show the time estimate from Cura in the LCD panel before selecting the file.

    First, it calculates how long it has been printing already. Next, it takes how far it is in the GCode file, and how long the file is. With this it calculates the total time estimate for how long the print will take.

    When it has Cura estimate, it will look at how long it has been printing already, if this is less then half the time of the estimate, then it will use this estimate combined with the estimate from the "how far is the print" estimate. And depending on how far it is with printing the more the final estimate will shift towards the estimate from the actual printing time.

    Or, in pseudo code:

     


    printTime = [Time spend printing so far]
    filePosition = [current read position in the gcode file]
    fileSize = [total file size of the gcode file]
    timeEstimateFromCura = [Time estimate from Cura, if in GCode file]
    totalPrintTimeEstimate = printTime / filePosition * fileSize
    if printTime < timeEstimateFromCura / 2:
    f = printTime / (timeEstimateFromCura / 2)
    finalEstimate = totalPrintTimeEstimate * f + timeEstimateFromCura * (1.0 - f)
    else:
    finalEstimate = totalPrintTimeEstimate

    The "estimate by print time" is off for the first few layers because it's printing slower, so it's not that accurate at the beginning. The CuraEstimate is off due to it not accounting for acceleration.

    (There is also some odd overflow bug, that causes the display to jump to 6 hours sometimes)

     

  • Link to post
    Share on other sites

    Posted · Time remaining

    many thanks for the explanation. Yes funny you should mention the bug, I did notice that at one point.

    So far the figures in CURA seem close enough to help me decide to either wait for the print to finish or go to bed :grin:

     

  • Link to post
    Share on other sites

    Posted · Time remaining

    In my UM2 (non-plus) with original firmware, the calculation goes wrong when the tune-menu is kept open. For example when manually adjusting temp. If this tune-menu has been open for some time, then the remaining time sometimes increases to hours extra (on a print of a few hours). It looks like the calculation is paused or so? After the tune-menu has been closed, remaining time slowly recovers to reasonable values. But I don't care, since it doesn't affect print quality. :)

  • Link to post
    Share on other sites

    Create an account or sign in to comment

    You need to be a member in order to leave a comment

    Create an account

    Sign up for a new account in our community. It's easy!

    Register a new account

    Sign in

    Already have an account? Sign in here.

    Sign In Now
    • Our picks

      • UltiMaker Cura 5.7 stable released
        Cura 5.7 is here and it brings a handy new workflow improvement when using Thingiverse and Cura together, as well as additional capabilities for Method series printers, and a powerful way of sharing print settings using new printer-agnostic project files! Read on to find out about all of these improvements and more. 
         
          • Like
        • 18 replies
      • S-Line Firmware 8.3.0 was released Nov. 20th on the "Latest" firmware branch.
        (Sorry, was out of office when this released)

        This update is for...
        All UltiMaker S series  
        New features
         
        Temperature status. During print preparation, the temperatures of the print cores and build plate will be shown on the display. This gives a better indication of the progress and remaining wait time. Save log files in paused state. It is now possible to save the printer's log files to USB if the currently active print job is paused. Previously, the Dump logs to USB option was only enabled if the printer was in idle state. Confirm print removal via Digital Factory. If the printer is connected to the Digital Factory, it is now possible to confirm the removal of a previous print job via the Digital Factory interface. This is useful in situations where the build plate is clear, but the operator forgot to select Confirm removal on the printer’s display. Visit this page for more information about this feature.
          • Like
        • 0 replies
    ×
    ×
    • Create New...