Still tweaking slicer settings
 
Notifications
Clear all

Still tweaking slicer settings  

Page 1 / 2
  RSS
KC1SA
(@kc1sa)
Eminent Member
Still tweaking slicer settings

I've been running 2.3.0 and just updated to 2.3.1.  The resultant sliced files are identical (except for the date and version in the first line of the gcode).  

I'm still trying to figure out brief pauses the gcode causes on my printer.  After reading a bit on gcode, it seems gcode movement that don't include extruder information should use the G0 and not G1 command.  Using the G1 command causes un-necessary control board calculations.  Is this true?

Here's an example;

G1 X207.962 Y178.739 E0.04054 ; infill
G1 X202.072 Y177.738 F4800.000 ; move to first infill point
G1 F3000.000
G1 X202.072 Y179.108 E0.04067 ; infill

Why are the two lines with no E commands using the G1, should they be using G0?

 

 

Posted : 22/04/2021 3:56 pm
bobstro
(@bobstro)
Illustrious Member
RE: Still tweaking slicer settings

The Marlin documentation describes it this way:

By convention, most G-code generators use G0 for non-extrusion movements (those without the E axis) and G1 for moves that include extrusion. This is meant to allow a kinematic system to, optionally, do a more rapid uninterpolated movement requiring much less calculation.

There are conditions for other printer mechanisms, but you've got it right: G0 for non-extruding moves, G1 for extruding moves. That said, using G1 is always going to make the "correct" move. I wouldn't expect any significant difference in execution time on the Mk3. You'd have to look at the Prusa firmware source code to see if there is any actual internal difference as some printers just use the same code for both.

 

My notes and disclaimers on 3D printing

and miscellaneous other tech projects
He is intelligent, but not experienced. His pattern indicates two dimensional thinking. -- Spock in Star Trek: The Wrath of Khan

Posted : 22/04/2021 4:18 pm
KC1SA
(@kc1sa)
Eminent Member
Topic starter answered:
RE: Still tweaking slicer settings

@bobstro

In my case I have small pauses when printing.  The pauses seem to occur after a retraction / detraction.  It's long enough to melt the layer where the nozzle is which leave some blemishes.  

Posted : 22/04/2021 4:23 pm
bobstro
(@bobstro)
Illustrious Member
RE: Still tweaking slicer settings

Could that be from the wiping action. It happens before each retraction and can leave small squished bits if you're over extruding a bit.

Check Printer Settings->Extruder 1.

My notes and disclaimers on 3D printing

and miscellaneous other tech projects
He is intelligent, but not experienced. His pattern indicates two dimensional thinking. -- Spock in Star Trek: The Wrath of Khan

Posted : 22/04/2021 4:55 pm
fuchsr liked
KC1SA
(@kc1sa)
Eminent Member
Topic starter answered:
RE: Still tweaking slicer settings

@bobstro

Not wiping.  Seems to occur when jumping across an object.  Say you've got two vertical walls, one with a large hole.  As the print is happening when the hole layer area is starting to print, the nozzle will finish up the print for the hole, then pause for a 1/2 second then move to the other wall and when arriving at the x/y location (same z layer) the print will pause again for a 1/2 second or so, then pick up.  Once past the hole and then just printing a vertical wall no pausing occurs.

 

Posted : 23/04/2021 1:26 pm
bobstro
(@bobstro)
Illustrious Member
RE: Still tweaking slicer settings

Are you using OctoPrint by any chance? Have you tried another slicer? 

My notes and disclaimers on 3D printing

and miscellaneous other tech projects
He is intelligent, but not experienced. His pattern indicates two dimensional thinking. -- Spock in Star Trek: The Wrath of Khan

Posted : 23/04/2021 1:33 pm
KC1SA
(@kc1sa)
Eminent Member
Topic starter answered:
RE: Still tweaking slicer settings

@bobstro

Using Repetier Server, which I thought it may be a communication issue.  So I put the gcode on the memory card and printed from the memory card, same pauses.  If I use Cura slicer I don't have the pauses, but tons of other issues to many to list which is why I went back to using Prusa.  This is a GeeeTech A30T printer.  I know lots of folks are having issues with getting really nice prints.  I get good prints most of the time since switching to Prusa but a few things like this pause issue causes some pimples on the print.  The pause doesn't happen on every print.  My next step is to change from Marlin flavor to Repetier flavor gcode to see what changes.  I know not all Marlin gcodes are supported by this printer firmware, like the M303 is not functioning and there are a few others.  GT has been reluctant to release the source code for users to fix things that GT missed in the firmware, but nothing yet.

Posted : 23/04/2021 2:46 pm
bobstro
(@bobstro)
Illustrious Member
RE: Still tweaking slicer settings
Posted by: @kc1sa

[...] Using Repetier Server, which I thought it may be a communication issue.  So I put the gcode on the memory card and printed from the memory card, same pauses.

OK. That eliminates one possible issue.

If I use Cura slicer I don't have the pauses, but tons of other issues to many to list which is why I went back to using Prusa. 

Now that's interesting. I'd try slicing a very small & simple STL in both slicers and doing a comparison just to see if anything obvious jumps out. If you want to zip up gcode from each slicer generated for your printer and attaching it to a reply here, I -- and likely others -- would be interested in taking a look. 

This is a GeeeTech A30T printer.  I know lots of folks are having issues with getting really nice prints.  I get good prints most of the time since switching to Prusa but a few things like this pause issue causes some pimples on the print.  The pause doesn't happen on every print.

The good news is that it isn't the basic hardware then. You can get prints without pauses. You just need to figure out the cause. 

My next step is to change from Marlin flavor to Repetier flavor gcode to see what changes.  I know not all Marlin gcodes are supported by this printer firmware, like the M303 is not functioning and there are a few others.  GT has been reluctant to release the source code for users to fix things that GT missed in the firmware, but nothing yet.

Trying to think of printer-specific settings that might affect flow:

  • Have you tried disabling Linear Advance (remove or comment out the M900 Kxx gcode in filament gcode)?
  • Bit of a long shot, but you might try disabling Print Settings->Output options->Verbose gcode if it's on. Extra comments do have to be processed, even if ignored.
  • Do you get the pauses if you disable retraction? This will make a mess, but a quick test print might be interesting. 
  • That printer has the color mixing hotend. I don't know a thing about that, but perhaps it's doing some color selection? Could this be a start gcode option? Compare to Cura gcode. Anything in tool change script?

Sorry, that's about all I can think of.

My notes and disclaimers on 3D printing

and miscellaneous other tech projects
He is intelligent, but not experienced. His pattern indicates two dimensional thinking. -- Spock in Star Trek: The Wrath of Khan

Posted : 23/04/2021 3:24 pm
KC1SA
(@kc1sa)
Eminent Member
Topic starter answered:
RE: Still tweaking slicer settings

@bobstro

If I turn off retraction, yes very messy print but no pauses.  I did a Cura slice and found that with Cura gcode there are no G1 commands without extrusion and those commands that don't require any extrusion are always G0 not G1 commands.  With Prusaslicer everything is a G1 command.  By definition of Marlin, G0 should be used in place of G1 when no extrusion is required.  To me, and I am certainly no expert, it seems Prusaslicer has a bug. 

I am now experimenting taking a Cura no pause slice and changing the G0 to G1 commands and see the printer reacts with pauses. 

I also like your idea of suppressing verbose descriptions in the gcode to see if that makes a difference.

I would personally love to stay with Prusaslicer, it is much more intuitive than Cura but I really have to get past this pause issue. 

Posted : 28/04/2021 11:09 am
bobstro
(@bobstro)
Illustrious Member
RE: Still tweaking slicer settings

If you're only seeing the pauses in PrusaSlicer and only with retraction enabled, that narrows it down to "settings". Regardless of retraction settings and use of G0 versus G1, gcode generated by PrusaSlicer should not cause those pauses. Save your current  3MF project file, zip it up, and attach it to a reply here so we can see your part & settings and give better recommendations. I suspect something is off in your retraction settings.

My notes and disclaimers on 3D printing

and miscellaneous other tech projects
He is intelligent, but not experienced. His pattern indicates two dimensional thinking. -- Spock in Star Trek: The Wrath of Khan

Posted : 28/04/2021 6:59 pm
KC1SA
(@kc1sa)
Eminent Member
Topic starter answered:
RE: Still tweaking slicer settings

Here's a small example.  Pausing is very noticiable at layer 7 (z-0.75).

Attachment removed
Posted : 29/04/2021 1:53 pm
bobstro
(@bobstro)
Illustrious Member
RE: Still tweaking slicer settings

I took a look through your settings. I can only make a few suggestions to try:

  • It's a 3 extruder setup. I don't see any tool changes occurring, but you might look through the gcode to see if it's doing long retractions. Your Printer Settings->Extruder [123]->Retraction when tool disabled is set to 12mm. Could it be doing an extra 12mm retraction, perhaps for unused extruders, before each retraction?
  • Looking at your Printer Settings->Machine Limits, your Max acceleration E is 10,000. This is high compared to an Ender 3 (Bowden setup) at 5,000. This is the maximum acceleration in speed changes. Max jerk E is 2.5mm/s compared to the Ender 3 at 5mm/s. This affects the rate of acceleration change. This isn't necessarily a problem, but it's interesting that your settings seem to have gone both high and low compared to another printer. Did you create this printer profile yourself or has it been tested elsewhere?

I'd spend some time comparing these to your Cura GUI and gcode settings to see if you can spot anything different. In short, I wouldn't expect changing between G0 & G1 to fix this problem unless you find something specific to your printer's firmware. Other printers work fine without pauses using PrusaSlicer's existing setup. It does look like Geetech has their own firmware flavor though, so perhaps this is significant.

There is a possibly related issue noted on GitHub. That looks like retraction issues with the 3 extruder setup is a concern. Can you create a profile using only 1 extruder? (Grasping for straws, admittedly.)

Sorry I can't suggest anything more helpful.

 

My notes and disclaimers on 3D printing

and miscellaneous other tech projects
He is intelligent, but not experienced. His pattern indicates two dimensional thinking. -- Spock in Star Trek: The Wrath of Khan

Posted : 29/04/2021 4:25 pm
KC1SA
(@kc1sa)
Eminent Member
Topic starter answered:
RE: Still tweaking slicer settings

this profile I tweaked from one I found on forums for another GeeeTech printer but not the A30T.  The A30T has different firmware from the other A series printers from GeeeTech.  My profile has been a 6 week long experiment in trying to get this printer perfected with Prusaslicer (Cura is just clunky and way to many button/knobs/levers/ropes to adjust, I don't know how anyone would ever dial that slicer in on this machine.  The biggest issue with Cura is the damn stringing which I solved with Prusaslicer.  The pausing is really the only last thing that bugs me.

I appreciate you sifting through the code.  I'll take your advice and report back.

Thanks again.

 

Posted : 29/04/2021 5:43 pm
KC1SA
(@kc1sa)
Eminent Member
Topic starter answered:
RE: Still tweaking slicer settings

Is there a post processing script to change all the G1 to G0 is there is no extrusion in the command?

The pausing seems to coincide with print-retraction-pause-move nozzle-unretraction-print.

The pause is always after a retraction.

 

Posted : 03/05/2021 6:01 pm
KC1SA
(@kc1sa)
Eminent Member
Topic starter answered:
RE: Still tweaking slicer settings

G1 X166.224 Y166.432 E0.00872
G1 X166.650 Y166.475 F3600.000
M106 S244.8
;LAYER_CHANGE
;Z:9.25
;HEIGHT:0.1
G1 Z9.250 F3600.000
G1 E-6.50000
G1 X154.638 Y153.933
G1 E6.50000
;TYPE:Perimeter
;WIDTH:0.35
G1 F900.000
G1 X154.319 Y154.149 E0.00526
G1 X153.885 Y154.329 E0.00641
G1 X153.430 Y154.408 E0.00632

Posted : 03/05/2021 6:59 pm
h4nksy
(@h4nksy)
New Member
RE: Still tweaking slicer settings

I've also got ongoing issues printing on the A30T using prusa...

I can print a single colour with prusa, but if I want to use a 2nd colour it will pause and never resume even if attempting to manually resume on the printer itself, just keeps parking the nozzle with zero temp.

 

Anyone have any multi colour code / settings that work with A30T?

Posted : 08/04/2022 11:16 am
KC1SA
(@kc1sa)
Eminent Member
Topic starter answered:
RE: Still tweaking slicer settings

I have the A30T working very well with Prusaslicer 2.4.1.

Check out my YouTube site for three videos I recently created on this printer, working with Prusaslicer and mods to help improve quality of prints.  My site is Rotormansa.

Steve

Posted : 08/04/2022 11:36 am
h4nksy
(@h4nksy)
New Member
RE: Still tweaking slicer settings

thats your youtube channel? i commented on one of your videos yesterday lol, Your video was a great help for initial setup of Prusa and managed to get the prints in single colour, but havent been succesful with multi colour yet, could you share some of your G Code used in Prusa please?

Posted : 08/04/2022 12:15 pm
h4nksy
(@h4nksy)
New Member
RE: Still tweaking slicer settings

I have a Geeetech A30T which is a 3 colour extruder, single nozzle machine. I've printed multiple colour prints with other slicing software but only seem to get single colour in prusa.

When I slice multi colour prints in prusa everything seems ok, I send G-code to printer and it starts printing, but then pauses before changing colour, temps drop to zero, and it stays on pause, I have tried a number of times to manually override this but no joy. I have heated the nozzle and hit resume, it just keeps returning back to paused print.

Has anyone else experienced anything similar?

Could anyone suggest if I am missing something or need to alter G-Code to prevent this happening?

Thanks in advance.

Posted by: @kc1sa

I have the A30T working very well with Prusaslicer 2.4.1.

Check out my YouTube site for three videos I recently created on this printer, working with Prusaslicer and mods to help improve quality of prints.  My site is Rotormansa.

Steve

 

Posted : 09/04/2022 2:55 pm
John
 John
(@john-20)
New Member
RE: Still tweaking slicer settings

Hello,

 

saw your video regarding A30T, but, I have hearing problems. Is there any chance you could post your Prusa config file for the A30T.  That would give me a head start 🙂

 

Posted : 05/06/2022 1:19 pm
Page 1 / 2
Share: