supermerill / SuperSlicer

G-code generator for 3D printers (Prusa, Voron, Creality, etc.)
4.11k stars 520 forks source link

EXTERNAL PERIMETER FAN SPEED adjustability for other perimeters. #2419

Open CuredPrusa opened 2 years ago

CuredPrusa commented 2 years ago

Version

Version: 2.3.57.11 Build: SuperSlicer_2.3.57.11 Operating System: Windows System Architecture: 64 bit Windows Version: Windows 10 (build 19043), 64-bit edition

Behavior

Please make an option for EXTERNAL PERIMETER FAN SPEED to relate to all perimeters, not just one on the outside. I want infill to go with less cooling, but then inner perimeters are overheating. When nozzle reaches outer perimeter, it's already too late.

Is this a new feature request? YES

supermerill commented 2 years ago

Can't add all possible fan seed override with the actual code. Have to rewrite it so I have a good base.

jhlchu commented 2 years ago

Behavior possible using "Between Extrusion Role G-Code Change"

; External perimeter
{if extrusion_role=~/ExternalPerimeter/};[extrusion_role]
M106 S255
; Perimeter
{elsif extrusion_role=~/Perimeter/};[extrusion_role]
M106 S255
; Internal infill
{elsif extrusion_role=~/InternalInfill/};[extrusion_role]
M106 S0
; Top solid infill
{elsif extrusion_role=~/TopSolidInfill/};[extrusion_role]
M106 S0
; Solid infill
{elsif extrusion_role=~/SolidInfill/};[extrusion_role]
M106 S0
{endif}

and -1 for fan speed in filament settings

CuredPrusa commented 2 years ago

If this will be implemented someday, please add it to Modifiers as well.