How to find the maximum print speed your printer can achieve ?

There are so many variables limiting the printing speed and/or quality you can achieve with your 3D printer. Many of them are interlinked, so I'm proposing a calculator so you can find out the what could be the maximum printing speed that's acceptable for your printer.

This post is split in 3 parts: Extrusion, Displacement, Cooling. The maximum print speed is the value that satisfy all these constraints.

Extrusion

Extruding plastic implies:

  1. Pushing the (cold) filament into a heated chamber so it can become viscuous.
  2. Heat the plastic fast enough so it becomes viscuous.
  3. Pushing enough plastic so that the pressure in the heated chamber overcome the required pressure to extrude the plastic out of the nozzle.
  4. Applying the amount of plastic on a part as specified by the 3D program (G-Code).

Point 1 above means that you must have an extruder that's powerful enough to reach and sustain the extruding pressure. If the (cold) filament is not plastic, it means that any volume of filament pushed by the extruder will get out of the nozzle. If the filament is plastic (due to a too high temperature for example), then it'll start to clog in the path and the relation input = output is no more valid, since the plastic will start to compress when it soften, and decompress when retracted: a differential equation is required to model this.

Most printers are designed so that the filament is kept as solid as possible until it enters the hotend, so the simple relation above applies.

When trying to reach the maximum speed of your printer, you'll be flirting with this limit. So it's important to remember the physical process to understand we'll compute below.

In the calculator below, we'll compute the maximum extrusion speed you can perform once you've calibrated it.

Extrusion speed and flow calculator

Nozzle hole size mm
Expected print speed mm/s
Layer height mm
Flow of plastic to extrude mm3/s
Filament diameter mm
Required extrusion speed for this flow mm/s
Required extrusion speed for this flow (in mm/min) mm/min

Maximum print speed from extrusion speed calculator

Nozzle hole size mm
Layer height mm
Filament diameter mm
Extrusion speed mm/s
Computed plastic flow mm3/s
Maximum print speed mm/s

But how do you find the maximum extrusion speed for your hotend ?

The extrusion speed is the speed at which you can drive your extruder and still get consistent plastic output. Since it depends on the ability of your hotend to melt a given plastic volume, you'll need to create a 2 dimension matrix. On one axis, you'll write down the extruder speed and on the other you'll write down the hotend temperature. The value in each cell of the matrix is the amount of plastic you've extruded for the combinaison of (hotend temperature, extruder speed).

Usually, the higher the extruder speed, the more likely it'll fail to sustain the pressure required to extrude plastic out of the hotend, so it'll miss steps => extrude less plastic. By weighting the extruded plastic for each combination, you can figure out how well the extruder performed for such combination.

So:

  1. Send a M83 once to change to relative extrusion (so you don't have to accumulate your numbers)
  2. Send a M109 Rxxx (replacing xxx with the desired temperature to test). It'll only return ok when the hotend reached the temperature.
  3. Clean your bed and make sure it's cold (you'll need to remove the extruder filament often, you don't want it to stick).
  4. Select a speed to test (for example 3mm/s, and convert it in mm/min by multiplying by 60 or use the calculator above). You'll then need to set the extrusion speed with a G1 Fxxx (replacing xxx by the speed you want to test).
  5. Then you'll need to prime the nozzle by sending a G1 E30
  6. (Optionally) you can pause the extrusion with G1 F3 followed by G1 E0.1
  7. Remove the drop of filament from the nozzle now.
  8. Reset the speed if you paused the extrusion with G1 Fxxx (replacing xxx by the speed you want to test)
  9. And extrude some filament G1 E300 (depending on your firmware, the extrusion length might be limited to 250mm or less so adjust in consequence)
  10. Capture the filament and weight it. You'll need a kitchen scale that's precise enough here.

If you perform the steps above for each combination of extrusion speed and temperature (you'll need to increase the temperature when you increase the extrusion speed, but don't go above to 260°C or 270°C for PLA) and report in an spreadsheet, you'll be able to observe and compare the limitation of the flow from the hotend. Typically, at a fixed temperature of 210°C, the quantity of extruded plastic will decrease when the extrusion speed increase. But if you increase the hotend temperature at the same time, you'll recover this loss up to a tuple.

This tuple (extrusion speed, temperature) will give you the maximum extrusion speed your hotend can support. Then enter the extrusion speed in the calculator above and you'll find out the maximum print speed you can acheive.

This speed is theorical, since it's the case when the printer has finished accelerating (which needs space to perform), and the plastic has cooled enough to adhere but is not dripping on the last layer. With a 20% margin, you should be safe here.

Displacement

As the world is cruel, we have to obey nature's laws. Those laws state that a body can't change from one speed to an other speed instantly. It has to accelerate (or decelerate) to achieve this and this takes time. In our case here, we are interested mostly in the printer's X/Y movement (you are not usually limited by the Z movement speed, unless you are using a non usual firmware).

Depending on your printer's mechanics, the X or Y movement will be different, so it's not possible to provide a calculator that'd fit all printers. Instead, I'll try to explain few rules and you'll be able to compute the maximum acceleration your printer can achieve (and based on this information, the maximum speed).

For printers with direct axis control (no Core X/Y or H movement), with a screw or a belt, there is a direct relation between the rotation of the stepper motor and the displacement. You'll need to know the stepper motor steps per revolution and the screw or belt pitch (and number of teeth per revolution). Every revolution of the screw/belt lead to a progress of the carriage of one pitch of the screw (or X teeths of the belt).

Thus, the speed of the carriage depends on the number of steps per second a motor can sustain.

Current max A
Bipolar inductance per phase mH
Voltage V
Steps/Revolution steps/revolution
Computed maximum speed revolution/s
Maximum power to dissipate W

The speed is one thing, and the acceleration is another thing. There's no interest to a speed of 100mm/s if you need 2 days to accelerate to reach it.

To accelerate your carriage, you must also compute how much torque it can generate. This torques is used to fight against the torque required to hold the current position and overcome the resistance to movement (aka friction). For the former, it depends on your carriage visible mass and/or moment (depending on the mechanical configuration). The latter depends on how smooth the carriage can move. You'll lower resistance with a good lubrication for a screw, by changing the screw type (going to a ball screw for example), by changing the design so that the carriage is not supported by the scew but by bearing, roller, whatever, etc...

Since the above is hard to evaluate, it can be deduced by simple experiments:

  1. Prepare a G-Code file with square movement (move to one corner of the bed)
  2. Position the hotend above a dot on a paper (by manual movement)
  3. Move the hotend to another corner with a given speed (via G0 X150 Y0 F1500, where X=150, Y=0 is the new position to reach (in mm), F1500 is the feedrate, ie the speed to use (in mm/min))
  4. Move the hotend to another corner with the same speed (via G0 X150 Y150 F1500)
  5. Move the hotend to another corner with the same speed (via G0 X0 Y150 F1500)
  6. Move the hotend to another corner with the same speed (via G0 X0 Y0 F1500)
  7. If everything worked correctly, you should arrive on the same position (hotend on the dot you've drawn). Try again with increasing the feedrate until the motor starts to miss step (you'll see it does not reach the dot anymore), this is the maximum speed you can reach on large movement (so the acceleration shouldn't limit here).
  8. You can then reduce the amplitude of the motion (change 150 to 100 or less) and redo the tests above. At some point, the printer will max out the possible acceleration so you are more likely to miss steps. This will gives you the coherent maximum speed you can use (lower it by 10 or 20% to be on the safe side).

Cooling

While you've found the maximum extruder speed and maximum mechanical hotend speed, you must also ensure you're cooling the plastic fast enough that it does not deform anymore once extruded. I don't know the physical process enough here to provide a calculator. From an empirical observation, you can adjust the fan speed of the hotend (not the fan on the heatbreak part) from 0 to 255 and perform a temperature torture test. So, prepare a print with the maximum speed you can reach (that's the minimal of the maximum extrusion speed and the hotend speed) and print different pieces with different fan values.

You should run a dichotomic search here, that is:

  1. Run the fan at 0, and 255,
  2. If it's better at 0, try with 128
  3. If it's better at 128, try with 192 (else try with 64)
  4. And so on until you find the adequate cooling power you need for the plastic to solidify nicely

Previous Post Next Post

Related Posts