2

I know that the actual printing time is longer than the time estimated by Cura, due to acceleration and jerk factor.

However, I have printed a small pyramid for which Cura estimates 4.0 minutes, while the measured printing time is 2 minutes and 40 seconds. What reasons could produce this difference?

For clarity, I'm using a Delta Wasp 20 40 equipped with a clay extruder for which parameters such as E-step (for E axis) are unpredictable since I have no filament.

0scar
  • 32,029
  • 10
  • 59
  • 135
Food24
  • 61
  • 3
  • Related - [this answer](https://3dprinting.stackexchange.com/questions/3233/calculating-the-estimated-print-time-of-an-already-sliced-file#answer-3241) to [Calculating the estimated print time of an already sliced file](https://3dprinting.stackexchange.com/questions/3233/calculating-the-estimated-print-time-of-an-already-sliced-file). – Greenonline May 22 '17 at 10:39
  • Have you found and fixed the problem? If so, have the answers below led you to the solution? Please vote to accept an answer (using the green tick button next to the question) so this question is not bumped up once in a while and can be removed from the unanswered question list. You may even add your own solution and accept that after 48 hours! If you have not been able to address the problem please update your question. – Greenonline Aug 15 '18 at 09:38

3 Answers3

3

If you properly define your own machine with a delta_wasp.def.json file you can fill in the acceleration and jerk settings of your printer, so that Cura will use the correct values for print time estimation.

For example, take a look at how the Ultimaker 2 is defined.

Exposing these settings to the Custom FDM Printer wizard hasn't been implemented (yet).

Greenonline
  • 5,831
  • 7
  • 30
  • 60
Tim Kuipers
  • 382
  • 1
  • 12
  • 1
    Can you clarify which settings are used? If acceleration and jerk control are disabled in Cura (to leave machine defaults alone), what values are used for estimating? The machine limits? Or the set values of the disabled options? – R.. GitHub STOP HELPING ICE Jan 04 '20 at 06:25
  • 2
    The machine limits. Disabled settings are never used. It's [these settings](https://github.com/Ultimaker/Cura/blob/master/resources/definitions/fdmprinter.def.json#L515). – Tim Kuipers Jan 05 '20 at 10:26
1

As you note, the estimates are usually optimistic because they're calculated without knowing the printer's actual acceleration as well as communication overhead time losses, etc. However, many estimation algorithms put in a bit of a fudge factor to approximate a typical printer or to approximate startup time. I think in this case, you're just on the wrong side of the fudge factor.

Mark Walker
  • 234
  • 1
  • 2
0

Estimating time for any CNC based machines are measured in this formula:

The length of pulses that machine travels x The feedrate of the pulse itself

It gives you the time for whole movements. If you're familiar with NC codes, information of any movement is listed in a single line, having its own feedrate, that's what we call pulses.

As machines are not ideal, some delay occurs between pulses, approximately 1 or 2 ms according to machine type. That's what is not measured in the formula.

If you were able to measure that delay time and multiply it in number of pulses, by adding it in the estimated time found by machine, you could find a much more definite estimated time, for your process.

Greenonline
  • 5,831
  • 7
  • 30
  • 60
Brison
  • 9
  • 2