Duet3D Logo Duet3D
    • Tags
    • Documentation
    • Order
    • Register
    • Login

    What criteria to print layer the Slicer

    Scheduled Pinned Locked Moved
    General Discussion
    4
    5
    265
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • peirofundefined
      peirof
      last edited by

      Hi,

      This is a curiosity that has arisen for me... Anyone know the criteria that the slicer uses to decide how many layers of to print?

      CASE A. EASY

      • You have to print an object 2 mm high, and you have selected in the slicer layers 0.2 mm. Not counting rafts, the printer will make 10 layers

      CASE B.

      • You have to print an object 2 mm high, and you have selected in the slicer layers 0.18 mm. Not counting rafts, the printer, how many layers will it make? 11 or 12?

      CASE C

      • You have to print an object 2 mm high, and you have selected in the slicer layers 0.23 mm. Not counting rafts, the printer, how many layers will it make? 8 or 9?

      Does this criterion depend on the slicer?

      engikeneerundefined fcwiltundefined 2 Replies Last reply Reply Quote 0
      • engikeneerundefined
        engikeneer @peirof
        last edited by

        @peirof I believe most slicers just chose the number of layers that gives the closest height, so in case B it will do 11 layers and you'll get a 1.98mm high object

        E3D TC with D3Mini and Toolboards.
        Home-built CoreXY, Duet Wifi, Chimera direct drive, 2x BMG, 300x300x300 build volume
        i3 clone with a bunch of mods

        1 Reply Last reply Reply Quote 1
        • fcwiltundefined
          fcwilt @peirof
          last edited by

          @peirof

          Is there a reason you would choose layer heights which don't yield exact results?

          Frederick

          Printers: a E3D MS/TC setup and a RatRig Hybrid. Using Duet 3 hardware running 3.4.6

          peirofundefined 1 Reply Last reply Reply Quote 0
          • peirofundefined
            peirof @fcwilt
            last edited by

            @fcwilt It's simple curiosity.... Know what is the criterion used by Slicers, in case this is ever important for the piece that has a certain height ... But I don't know if I'll ever use it, if I print usually with layers of 0.16 /0.20, it's the maximum deviation I'm going to have. Curiosity

            achrnundefined 1 Reply Last reply Reply Quote 1
            • achrnundefined
              achrn @peirof
              last edited by

              @peirof It's not very difficult to test on whatever slicer you favour.

              On my PrusaSlicer the answer to case B is 11 layers, 1.98 high. It even shows you that in the user interface (no need to read gcode):
              eb76d7d1-fc0a-4221-818e-d4c9e0d577ad-image.png
              Reading through the gcode, this is the last Z change (note that the gode has zero-based counting, so layer 10 is the 11th layer):

              ...
              G1 X-49.24 Y-49.159 E.02829
              ;LAYER_CHANGE
              ;Z:1.98
              ;HEIGHT:0.18
              ; layer change to layer 10 = 1.98mm
              ;;;
              G1 Z1.98 F10800
              G10 ; retract
              G1 X-49.383 Y-50.135
              G1 X49.383 Y-50.135
              ...
              

              Case C is 9 layers, 2.07 high:
              0df89e8f-6c8a-4711-8adc-ff02914c5e75-image.png
              and

              ...
              G1 X-49.254 Y-49.194 E.03431
              ;LAYER_CHANGE
              ;Z:2.07
              ;HEIGHT:0.23
              ; layer change to layer 8 = 2.07mm
              ;;;
              G1 Z2.07 F10800
              G10 ; retract
              G1 X-49.399 Y-50.151
              G1 X49.399 Y-50.151
              ...
              
              1 Reply Last reply Reply Quote 1
              • First post
                Last post
              Unless otherwise noted, all forum content is licensed under CC-BY-SA