Printer pausing 1-3 sec every ~10 print moves
-
Have you tried printing with retraction disabled/set to 0mm in your slicer just to check if keeps pausing then ?
-
What slicer program are you using and which version. Cura 4.0 had a bug that would cause your exact behavior, which was fixed in later releases.
-
After switching from Simplify3D, which I had used for a long time with another printer, to KISSlicer, the mentioned problems went away.
I have since then switched to Cura, which also does not have freezing issues.For the record, here are my g-code files:
-
In your S3D file I notice that your retraction and reprime speed is just 0.6mm per second. This is very slow. Even though you are only using 0.8mm retraction, this means that each retract/reprime cycle will take around 2.7 seconds. Does this explain the pauses?
-
@dc42 That must be it. Thanks for pointing out!
-
Now with Cura, the problem turns out to still be there.
@jay_s_uk @whosrdaddy, OK, I performed your suggested changes. The problem is still there, but I will keep those new values.
@droftarts I am printing by transferring the files using DWC first. I noticed my G-code file is fairly large, for example 11MB for a 45-minute print. Your hypothesis that the system is not able to handle the command rate is a possibility
@dc43 In cura, I am using a retraction speeds of 50mm/s, so retraction must not be causing issues now.Perhaps the 11MB GCODE file is too dense for my system to process? My CAD tool cranks out a fairly high number of polygons; my STL output setting is fairly high.
Here is a video when printing a Cura-generated file: https://youtu.be/W3kOFaIqv9E
Here is the G-code file: https://www.mediafire.com/file/yua9zzaew00neom/CFFFP_Part1.gcode/file
Here is the STL file: https://www.mediafire.com/file/2fy9i8nwts74eba/Part1.STL/fileAny ideas as to what could be going on?
-
@HC3D said in Printer pausing 1-3 sec every ~10 print moves:
Now with Cura, the problem turns out to still be there.
@jay_s_uk @whosrdaddy, OK, I performed your suggested changes. The problem is still there, but I will keep those new values.
@droftarts I am printing by transferring the files using DWC first. I noticed my G-code file is fairly large, for example 11MB for a 45-minute print. Your hypothesis that the system is not able to handle the command rate is a possibility
@dc43 In cura, I am using a retraction speeds of 50mm/s, so retraction must not be causing issues now.Perhaps the 11MB GCODE file is too dense for my system to process? My CAD tool cranks out a fairly high number of polygons; my STL output setting is fairly high.
Here is a video when printing a Cura-generated file: https://youtu.be/W3kOFaIqv9E
Here is the G-code file: https://www.mediafire.com/file/yua9zzaew00neom/CFFFP_Part1.gcode/file
Here is the STL file: https://www.mediafire.com/file/2fy9i8nwts74eba/Part1.STL/fileAny ideas as to what could be going on?
Took a quick look at the GCODE you posted, can you verify if you mean to set the GCODE flavor to Marlin in Cura?
;FLAVOR:Marlin
If not, you can change it to RepRap under "Machine Settings"
-
@sebkritikel Ah, I see that Cura is configured to use Marlin flavor on my installation. I overlooked this setting.
As a test I switched it to RepRap and threw it in a diff tool. The main difference seems to be relative extrusion being used on RepRap while Marlin uses absolute extrusion. Could that be causing the freezes?
I suppose I could do a test with the new G-code generated in RepRap flavor.
-
Yes please generate a new gcode using cura set to reprap flavour. Also check the start gcode for any speed settings being inserted by cura and delete them.
And please post your latest config.g.
And if you're still running 3.01beta2 I suggest updating to 3.01RC4.
-
If your previous config is still accurate I would change the Z and E axis speed settings as follows:
M566 Z120 E1200 ; set maximum instantaneous speed changes (mm/min) M203 Z600 E4000 ; set maximum speeds (mm/min) M201 Z120 E2500 ; set accelerations (mm/s^2)
Your original values were very very conservative and could explain the long delays on retractions and layer changes.
M566 Z12.00 E120.00 ; set maximum instantaneous speed changes (mm/min) M203 Z180.00 E1200.00 ; set maximum speeds (mm/min) M201 Z20.00 E250.00 ; set accelerations (mm/s^2)