4

So like I sayed in the title, Why can't the Anet A6 do .05 layer height? I found that some printers can do .05 layer heights, but the Anet A6 can't? I am interested to know if it is the stepper motors or the threaded rods or something. Maybe this is something I can do a small "test print" on?

Greenonline
  • 5,831
  • 7
  • 30
  • 60
Ljk2000
  • 1,223
  • 2
  • 9
  • 21
  • What do you mean by "but the Anet A6 can't?". – mac Mar 12 '18 at 21:39
  • What size nozzle do you have? Some slicers don't support layer height larger than nozzle diameter. – Davo Mar 12 '18 at 22:11
  • @mac just going off the spec sheet. And I am slightly worried that if I tried I might screw something off. But the spec sheet say it can go as low as .1mm layer height, and I want to know why it can't go lower than that. – Ljk2000 Mar 12 '18 at 22:18
  • @Davo I am using right now a .4mm but I would just like to know in general if the Anet A6 can pull off a .05mm layer height. – Ljk2000 Mar 12 '18 at 22:19

3 Answers3

5

I'm not familiar with the Anet A6 specifically, but as many other things in a 3D printer, the minimum layer height is co-determined by a number of factors. For the Z-axis the factors I am aware of are:

  • The number of steps in the stepper motor
  • The geometry of the lead screw
  • The tolerance with which the lead screw has been machined
  • The microstep settings
  • The quality of the stepper drivers
  • The amount of play and flexibility of the X-axis gantry
  • The ration between filament and nozzle diameter
  • The precision of the extruder's stepper motor
  • ...

Many printers that claim to have ridiculously low minimum Z-layer height do so by relying on the mathematical model only. It goes something like this: the lead screw has an offset of 1mm per revolution, the stepper motor makes 200 steps and is set for 32 microsteps per step so the minimum resolution should be...

1mm / (200 * 32) = 0.0002mm

The reality is however different. For example: the lead screw may have been machined with a tolerance of 0.002mm, so to make sure a layer has a thickness >0mm its heigh should be >0.004mm (20 times the theoretical limit computed with the microsteps). But to make sure layers have the same height ±10% you would need to increase the minimum layer heigh of an order of magnitude, bringing it to 0.04mm. A similar reasoning applies for the amount of play in the gantry, while the ratio between filament and nozzle influences the minimum volume of plastic that can be extruded per step (for very thin layers you want to be able to extrude a minimal amount of it).

At the end of the day this is a typical case of "a chain is only as strong as its weakest link": the minimum layer height of a printer is affected much more dramatically by the limitations of the most imprecise component in the printer than by the performance of its best one.

As for your question about breaking the printer by issuing g-code with very thin layers: should you issue gcode that requires layers below that limit, the firmware will simply print at the same z-height (see comments, credits to Tom).

I'm unaware of people having permanently damaged their machines by issuing code with too thin Z-layers. But given how the firmware operates, I'd expect the quality of the print to be negatively affected, the filament to be possibly chewed by the cobbed wheel and in extreme cases cloggig of the printer head.

mac
  • 4,557
  • 1
  • 12
  • 35
  • 2
    `but my understanding is that manufacturers encode in the firmware a sensible minimum layer height, and the firmware itself has strategies to cope with gcode that requires layers below that limit (like throwing an error or simply ignoring some layers altogether).` This is incorrect. Firmware generally is *dumb*, and it will try to print the file you throw at it to the best of its abilities. A "0.1mm printer" will print a 0.05mm file just fine, but if you throw a file at it with layers thinner than the minimum Z-step, it will simply print over the previous layer without moving the Z-axis. – Tom van der Zanden Mar 13 '18 at 06:55
  • @TomvanderZanden - thank you for the correction! :) I modified the answer to reflect your input. Am I correct in thinking that in your second scenario the gantry will move up only when the delta between the _computed_ absolute Z position and the current _physical_ one will be above the minimum Z step? (e.g.: min z-step is 10, layers are 5 --> the gantry will move up every second layer, printing two layers on top of each other) – mac Mar 13 '18 at 07:41
  • @mac Yes, that is what would happen. `manufacturers encode in the firmware a sensible minimum layer height` is still incorrect. The firmware doesn't know anything about layers. All it knows is that sending a single step pulse to the stepper driver will result in the Z-axis moving by 0.0xxxmm. – Tom van der Zanden Mar 13 '18 at 07:55
5

Your question is based on an incorrect premise. Just because the specifications list "minimum layer height: 0.1mm" does not mean the printer is unable to print thinner layers. It just means that the manufacturer is willing to guarantee that printing 0.1mm layers is possible, or that - for whatever reason - the marketing department decided to list 0.1mm in that table. 0.1mm is a nice, round number and seems to be the "gold standard" for 3D printers, but rarely is 0.1mm a limit that is inherent in the printer design.

The theoretical precision of the Z-axis is usually at least an order of magnitude better than the advertised minimum layer height. Of course, the precision of the Z-axis is not the only limiting factor (at a certain point, you need to extrude so slowly that you start to be limited by the resolution of the extruder stepper), but often even impractically thin layers print just fine.

In many cases, printers are capable of printing layers far thinner than the manufacturers officially advertise. More often than not, minimum layer height is limited by your patience and the fact that doing a print with thinner layer heights takes much longer for a rather limited gain in quality. Just give it a try and try to print 0.05mm layers, and you might be pleasantly surprised by the results!

(Note: it is advisable to choose a layer height that is a multiple of the distance for a single (full) step of the Z-stepper. For my printer (which has a very coarse leadscrew on the Z-axis), this is 0.02mm so - for me - it would be better to print with 0.06mm or 0.04mm layers than with 0.05mm layers).

Tom van der Zanden
  • 14,588
  • 2
  • 33
  • 60
1

I have an Anet A6 and once you get your settings dialled in, bed level accurate and belt tensioner correct you can do 0.05 mm very well (although I for some reason went with 0.06 mm and never tried the extra 0.01 mm lower but it shouldn't have an issue). Note: I did this using all the stock parts so 0.4 mm brass nozzle.

I highly recommend you print and install a front Y axis frame brace and a Y axis belt tensioning mod as well as an X axis belt tensioner. It will allow you to print at these layer heights much more accurately if you can adjust the tension correctly.

The kit out of the box makes it almost impossible to get good/correct tension on the belts.

Greenonline
  • 5,831
  • 7
  • 30
  • 60
TehEmoGurl
  • 11
  • 1