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

    Trying to remove tiny holes/gaps on layers...

    Scheduled Pinned Locked Moved
    Tuning and tweaking
    5
    18
    4.8k
    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.
    • skezoundefined
      skezo
      last edited by Phaedrux

      I am in the process of setting up my first 3D Printer (a Cetus 3D MKII with Duet 2 Maestro (Firmware 3.1.1) + BLTouch 3.1). Overall things are going well. I am now trying to dial in the settings to get nice prints but hitting a few road blocks.

      I am currently printing a Calibration Cube. The printed dimensions seems to be near spot on ~20mm however I keep getting tiny holes/gaps on some areas of the print (see image below). Does anyone know why this would be happening and how I can go about fixing it?

      Filament is PETG printed at 235C first layer and 230C all other layers.
      Retraction speed: 133.3 mm/s
      Retraction length: 1.8mm
      Layer height: 0.25
      Nozzle: 0.4
      Extrusion width = 0.45mm

      IMG_20200725_223102.jpg

      My config.g

      ; Configuration file for Duet Maestro (firmware version 3)
      
      ; General preferences
      G90                                              ; send absolute coordinates...
      M83                                              ; ...but relative extruder moves
      M550 P"Duet Cetus"                  ; set printer name
      
      ; Drives
      M569 P0 S0 										 ; physical drive 0 goes backwards
      M569 P1 S1  									 ; physical drive 1 goes forwards
      M569 P2 S1										 ; physical drive 2 goes forwards
      M569 P3 S0                                       ; physical drive 3 goes backwards
      M584 X0 Y1 Z2 E3                                 ; set drive mapping
      M350 X256 Y256 Z256 E256 I0                      ; configure microstepping without interpolation
      M92 X1280.00 Y1280.00 Z1280.00 E1877.77          ; set steps per mm (E1650)
      M566 X39000.00 Y39000.00 Z39000.00 E7200.00      ; set maximum instantaneous speed (jerk) changes (mm/min)
      M203 X420000.00 Y420000.00 Z420000.00 E420000.00 ; set maximum speeds (mm/min)
      M201 X1000.00 Y1000.00 Z1000.00 E1000.00         ; set accelerations (mm/s^2)
      M906 X450 Y450 Z450 E400 I30                     ; set motor currents (mA) and motor idle factor in per cent
      M84 S30                                          ; Set idle timeout
      
      ; Axis Limits
      M208 X0 Y0 Z0 S1                                 ; set axis minima
      M208 X180 Y180 Z181.35 S0                        ; set axis maxima
      
      ; Endstops
      M574 X1 S1 P"xstop"                              ; configure active-high endstop for low end on X via pin xstop
      M574 Y1 S1 P"ystop"                              ; configure active-high endstop for low end on Y via pin ystop
      M574 Z2 S1 P"zstop"                              ; configure active-high endstop for high end on Z via pin zstop
      
      ; Z-Probe
      M950 S0 C"^zprobe.mod"                           ; create servo pin 0 for BLTouch
      M558 P9 C"^zprobe.in" H5 R0.2 F120 T6000 A10     ; set Z probe type to bltouch and the dive height + speeds + 0.2 second pause time before probe move
      G31 P25 X-1.1 Y-37 Z0.82                         ; set Z probe trigger value, offset and trigger height
      M557 X5:175 Y5:175 S15                         	 ; define mesh grid
      
      ; Heaters
      M140 H-1                                         ; disable heated bed (overrides default heater mapping)
      M308 S1 P"spi.cs1" Y"rtd-max31865"               ; configure sensor 1 as thermocouple via CS pin spi.cs1
      M950 H1 C"e0heat" T1                             ; create nozzle heater output on e0heat and map it to sensor 1
      M307 H1 B0 S1.00                                 ; disable bang-bang mode for heater  and set PWM limit
      
      ; Fans
      M950 F0 C"fan0" Q500                             ; create fan 0 on pin fan0 and set its frequency
      M106 P0 S0 H1 T45                                ; set fan 0 value. Thermostatic control is turned on
      
      ; Tools
      M563 P0 S"Cetus Exturder" D0 H1 F0               ; define tool 0
      G10 P0 X0 Y0 Z0                                  ; set tool 0 axis offsets
      G10 P0 R0 S0                                     ; set initial tool 0 active and standby temperatures to 0C
      
      ; Custom settings
      M207 S1.80 R-0.000 F8000 T8000 Z0.0				 ; set retraction settings
      M572 D0 S0.025									 ; set preassure advance
      M912 P0 S-8.3							 		 ; calibrate the CPU temperature
      M501											 ; read stored parameters in config-override.g
      
      JoergS5undefined 1 Reply Last reply Reply Quote 0
      • JoergS5undefined
        JoergS5 @skezo
        last edited by JoergS5

        @skezo please print something and make a M122 during print. Look for the hiccups, whether they have high value. This would mean lost steps.

        Your M350 256 microstepping without interpolation may be the reason then. Please set to
        M350 X16 Y16 Z16 E16 I1
        You have to change M92 also to 1/16 value each:
        M92 X80 Y80 Z80 E117.36
        M203 is also too high, please set to
        M203 X6000 Y6000 Z600 E6000
        M566 are also very high values.
        Then please test again and check that M122 hiccups are low or 0.

        1 Reply Last reply Reply Quote 1
        • skezoundefined
          skezo
          last edited by

          @JoergS5 Thanks, running a print now on my current settings and seeing a few hiccups when running M122.

          Hiccups: 176(0), FreeDm: 163, MinFreeDm: 143, MaxWait: 226ms
          

          Going to try switching to 16 micro steps with interpolation as you suggested and run it again.

          1 Reply Last reply Reply Quote 0
          • skezoundefined
            skezo
            last edited by skezo

            I switched the M350 to 16 micro steps with interpolation and reduce the values of M92, M203 and M566 but getting similar results. The gaps/holes seem to happen in the same area each print.

            Updated driver details in config.g:

            M350 X16 Y16 Z16 E16 I1                          ; configure microstepping with interpolation
            M92 X80.00 Y80.00 Z80.00 E117.36                 ; set steps per mm
            M566 X600.00 Y600.00 Z600.00 E450.00             ; set maximum instantaneous speed (jerk) changes (mm/min)
            M203 X6000.00 Y6000.00 Z6000.00 E6000.00         ; set maximum speeds (mm/min)
            M201 X1000.00 Y1000.00 Z1000.00 E1000.00         ; set accelerations (mm/s^2)
            M906 X450 Y450 Z450 E400 I30                     ; set motor currents (mA) and motor idle factor in per cent
            

            IMG_20200726_221635.jpg

            JoergS5undefined 1 Reply Last reply Reply Quote 0
            • JoergS5undefined
              JoergS5 @skezo
              last edited by JoergS5

              @skezo what does M122 say? Are the hiccups gone?

              The values were wrong, so you should leave the new values, even if the holes are still there.

              You say the holes are at the same location. One possibility for test would be to rotate the object and reprint (+ maybe print at different print bed location). If the holes are still at the same location, it is a problem with the STL object. If they are at different locations then, it is a printer or configuration problem.
              Rotation would mean the labels XYZ are not correct any more, you should mark the print object with the correct directions after the print.

              The holes can come from underextrusion, you should check the extrusion parameter (the test to print 100 mm eg and verify your M92 E setting).

              1 Reply Last reply Reply Quote 1
              • Phaedruxundefined
                Phaedrux Moderator
                last edited by

                Under extrusion seems likely. Possibly unstable hotend temps.

                PID tune the hotend and bed heaters, re calibrate the extruder.

                Z-Bot CoreXY Build | Thingiverse Profile

                1 Reply Last reply Reply Quote 0
                • skezoundefined
                  skezo
                  last edited by

                  @JoergS5 @Phaedrux
                  Hiccups seem to be gone now. Ran M122 every few mins during the print. Each time the following was returned: Hiccups: 0(0).

                  I re-calibrated the extruder (updated M92 E118.68).

                  I re-ran PID tune for the hotend.

                  I then rotated the STL file and re-printed it (see below). The gaps seem to be in the exact same place as the non rotated prints.

                  xyzCalibration_cube.gcode
                  calb_cube._v2.jpg

                  JoergS5undefined 1 Reply Last reply Reply Quote 0
                  • JoergS5undefined
                    JoergS5 @skezo
                    last edited by JoergS5

                    @skezo I am not a specialist to handle filament (PETG) problems and cannot help further. But there are many users here who have a lot of experience.

                    To get the attraction of PETG specialist, you could rename the title of this thread to include PETG. The title has a display problem with the and symbol anyway.

                    skezoundefined 1 Reply Last reply Reply Quote 0
                    • felt342undefined
                      felt342
                      last edited by

                      I think your retraction speed is way too high, try 70mm/s.

                      Industrial 3D printing service in the Netherlands - gagatstudio.com

                      1 Reply Last reply Reply Quote 0
                      • skezoundefined
                        skezo @JoergS5
                        last edited by

                        @JoergS5 thanks for the help, getting rid of the hiccups has helped a lot. Unfortunately I cannot edit the title of the post after a certain time period.

                        @felt342 thanks will try that now

                        1 Reply Last reply Reply Quote 0
                        • arhiundefined
                          arhi
                          last edited by

                          try few other slicers and compare results

                          1 Reply Last reply Reply Quote 0
                          • skezoundefined
                            skezo
                            last edited by

                            @felt342 lowering retraction speed had no impact. I also disabled pressure advance and tried a few different variations but also did not have an impact.

                            @arhi good idea. I am currently using PrusaSlicer will try another one now.

                            felt342undefined 1 Reply Last reply Reply Quote 0
                            • felt342undefined
                              felt342 @skezo
                              last edited by

                              @skezo Is it only happen with PETG? Could be it has too much moisture in it?

                              Industrial 3D printing service in the Netherlands - gagatstudio.com

                              1 Reply Last reply Reply Quote 2
                              • Phaedruxundefined
                                Phaedrux Moderator
                                last edited by Phaedrux

                                Are you running the part cooling fan too high for PETG?

                                Do you have different filament to test with?

                                Even though you've tuned the extruder can you also try increasing the extrusion factor to see if the gaps are reduced?

                                Z-Bot CoreXY Build | Thingiverse Profile

                                skezoundefined 1 Reply Last reply Reply Quote 1
                                • skezoundefined
                                  skezo @Phaedrux
                                  last edited by

                                  @Phaedrux

                                  Setting the extrusion factor to 0.95 or above removes the gaps but when I run the extrusion multiplier calibration that value I get is 0.86 (this prints the walls at the correct width but has under extrusion). How can I balance extrusion with accuracy?

                                  calb_cube._v3.jpg

                                  1 Reply Last reply Reply Quote 0
                                  • Phaedruxundefined
                                    Phaedrux Moderator
                                    last edited by

                                    Filling the proper extrusion volume is a combination of the amount of plastic coming out of the nozzle and the distance from the nozzle to the surface being printed on. If the Z axis steps per mm is slightly off you could have a greater gap than expected leading to the appearance of underextrusion.

                                    @skezo said in Trying to remove tiny holes/gaps on layers...:

                                    but when I run the extrusion multiplier calibration

                                    How exactly are you doing that?

                                    Z-Bot CoreXY Build | Thingiverse Profile

                                    skezoundefined 1 Reply Last reply Reply Quote 0
                                    • skezoundefined
                                      skezo @Phaedrux
                                      last edited by

                                      @Phaedrux

                                      If I set the extrusion multiplier to 0.86 I can see the nozzle laying beads of filament on some layers (see below image). Which is what I think is causing the gaps in the calibration cube.

                                      For extrusion multiplier calibration I have been printing 40mm cube in vase mode and 40 mm cube with a single vertical perimeter. Then measuring the wall thickness with calipers.
                                      Extrusion multiplier = Old Extrusion Multiplier * (Expected Thickness/Measured Thickness)

                                      wall_v1.jpg

                                      1 Reply Last reply Reply Quote 0
                                      • Phaedruxundefined
                                        Phaedrux Moderator
                                        last edited by

                                        Perhaps give this calibration method a try.

                                        https://duet3d.dozuki.com/Guide/Ender+3+Pro+and+Duet+Maestro+Guide+Part+4:+Calibration/40

                                        What is the filament path like? Does the filament feed smoothly or is there friction and resistance?

                                        Z-Bot CoreXY Build | Thingiverse Profile

                                        1 Reply Last reply Reply Quote 0
                                        • First post
                                          Last post
                                        Unless otherwise noted, all forum content is licensed under CC-BY-SA