Rearranged configuration options; removed --resolution (now hard-coded to 0.01mm) and --flow-width (now calculated using the new --nozzle-diameter)
This commit is contained in:
parent
3421e8fef8
commit
bf5824781d
@ -20,29 +20,37 @@ use Slic3r::Print;
|
|||||||
use Slic3r::STL;
|
use Slic3r::STL;
|
||||||
use Slic3r::Surface;
|
use Slic3r::Surface;
|
||||||
|
|
||||||
|
# printer options
|
||||||
|
our $nozzle_diameter = 0.45;
|
||||||
|
our $print_center = [100,100]; # object will be centered around this point
|
||||||
|
our $use_relative_e_distances = 0;
|
||||||
|
|
||||||
our $layer_height = 0.4;
|
# filament options
|
||||||
our $resolution = 0.1;
|
|
||||||
our $perimeter_offsets = 3;
|
|
||||||
our $fill_density = 0.4; # 1 = 100%
|
|
||||||
our $filament_diameter = 3; # mm
|
our $filament_diameter = 3; # mm
|
||||||
our $filament_packing_density = 0.85;
|
our $filament_packing_density = 0.85;
|
||||||
our $flow_width = 0.50;
|
|
||||||
our $temperature = 195;
|
|
||||||
|
|
||||||
|
# speed options
|
||||||
our $print_feed_rate = 60; # mm/sec
|
our $print_feed_rate = 60; # mm/sec
|
||||||
our $travel_feed_rate = 80; # mm/sec
|
our $travel_feed_rate = 80; # mm/sec
|
||||||
our $bottom_layer_speed_ratio = 0.6;
|
our $bottom_layer_speed_ratio = 0.6;
|
||||||
|
|
||||||
|
# accuracy options
|
||||||
|
our $resolution = 0.01;
|
||||||
|
our $layer_height = 0.4;
|
||||||
|
our $flow_width;
|
||||||
|
|
||||||
|
# print options
|
||||||
|
our $perimeter_offsets = 3;
|
||||||
|
our $fill_density = 0.4; # 1 = 100%
|
||||||
|
our $temperature = 195;
|
||||||
|
|
||||||
|
# retraction options
|
||||||
our $retract_length = 2; # mm
|
our $retract_length = 2; # mm
|
||||||
our $retract_restart_extra = 0; # mm
|
our $retract_restart_extra = 0; # mm
|
||||||
our $retract_speed = 40; # mm/sec
|
our $retract_speed = 40; # mm/sec
|
||||||
|
|
||||||
|
# skirt options
|
||||||
our $skirts = 3;
|
our $skirts = 3;
|
||||||
our $skirt_distance = 6; # mm
|
our $skirt_distance = 6; # mm
|
||||||
|
|
||||||
our $use_relative_e_distances = 0;
|
|
||||||
|
|
||||||
our $print_center = [100,100]; # object will be centered around this point
|
|
||||||
|
|
||||||
1;
|
1;
|
||||||
|
90
slic3r.pl
Normal file → Executable file
90
slic3r.pl
Normal file → Executable file
@ -20,22 +20,35 @@ GetOptions(
|
|||||||
'debug' => \$Slic3r::debug,
|
'debug' => \$Slic3r::debug,
|
||||||
'o|output' => \$opt{output},
|
'o|output' => \$opt{output},
|
||||||
|
|
||||||
'layer-height=f' => \$Slic3r::layer_height,
|
# printer options
|
||||||
'resolution=f' => \$Slic3r::resolution,
|
'nozzle-diameter=f' => \$Slic3r::nozzle_diameter,
|
||||||
'perimeters=i' => \$Slic3r::perimeter_offsets,
|
'print-center=s' => \$Slic3r::print_center,
|
||||||
'fill-density=f' => \$Slic3r::fill_density,
|
'use-relative-e-distances' => \$Slic3r::use_relative_e_distances,
|
||||||
|
|
||||||
|
# filament options
|
||||||
'filament-diameter=f' => \$Slic3r::filament_diameter,
|
'filament-diameter=f' => \$Slic3r::filament_diameter,
|
||||||
'flow-width=f' => \$Slic3r::flow_width,
|
'filament-packing-density=f' => \$Slic3r::filament_packing_density,
|
||||||
'temperature=i' => \$Slic3r::temperature,
|
|
||||||
|
# speed options
|
||||||
'print-feed-rate=i' => \$Slic3r::print_feed_rate,
|
'print-feed-rate=i' => \$Slic3r::print_feed_rate,
|
||||||
'travel-feed-rate=i' => \$Slic3r::travel_feed_rate,
|
'travel-feed-rate=i' => \$Slic3r::travel_feed_rate,
|
||||||
'skirts=i' => \$Slic3r::skirts,
|
|
||||||
'skirt-distance=i' => \$Slic3r::skirt_distance,
|
|
||||||
'bottom-layer-speed-ratio=f' => \$Slic3r::bottom_layer_speed_ratio,
|
'bottom-layer-speed-ratio=f' => \$Slic3r::bottom_layer_speed_ratio,
|
||||||
'use-relative-e-distances' => \$Slic3r::use_relative_e_distances,
|
|
||||||
'print-center=s' => \$Slic3r::print_center,
|
# accuracy options
|
||||||
|
'layer-height=f' => \$Slic3r::layer_height,
|
||||||
|
|
||||||
|
# print options
|
||||||
|
'perimeters=i' => \$Slic3r::perimeter_offsets,
|
||||||
|
'fill-density=f' => \$Slic3r::fill_density,
|
||||||
|
'temperature=i' => \$Slic3r::temperature,
|
||||||
|
|
||||||
|
# retraction options
|
||||||
'retract-length=f' => \$Slic3r::retract_length,
|
'retract-length=f' => \$Slic3r::retract_length,
|
||||||
'retract-restart-extra=f' => \$Slic3r::retract_restart_extra,
|
'retract-restart-extra=f' => \$Slic3r::retract_restart_extra,
|
||||||
|
|
||||||
|
# skirt options
|
||||||
|
'skirts=i' => \$Slic3r::skirts,
|
||||||
|
'skirt-distance=i' => \$Slic3r::skirt_distance,
|
||||||
);
|
);
|
||||||
|
|
||||||
# validate configuration
|
# validate configuration
|
||||||
@ -50,11 +63,12 @@ GetOptions(
|
|||||||
die "Invalid value for --filament-diameter\n"
|
die "Invalid value for --filament-diameter\n"
|
||||||
if $Slic3r::filament_diameter < 1;
|
if $Slic3r::filament_diameter < 1;
|
||||||
|
|
||||||
# --flow-width
|
# --nozzle-diameter
|
||||||
die "Invalid value for --flow-width\n"
|
die "Invalid value for --nozzle-diameter\n"
|
||||||
if $Slic3r::flow_width < 0;
|
if $Slic3r::nozzle_diameter < 0;
|
||||||
die "--flow-width must be a multiple of print resolution\n"
|
die "--layer-height can't be greater than --nozzle-diameter\n"
|
||||||
if $Slic3r::flow_width / $Slic3r::resolution % 1 != 0;
|
if $Slic3r::layer_height > $Slic3r::nozzle_diameter;
|
||||||
|
$Slic3r::flow_width = $Slic3r::layer_height * ($Slic3r::nozzle_diameter**2);
|
||||||
|
|
||||||
# --perimeters
|
# --perimeters
|
||||||
die "Invalid value for --perimeters\n"
|
die "Invalid value for --perimeters\n"
|
||||||
@ -101,35 +115,47 @@ sub usage {
|
|||||||
Usage: slic3r.pl [ OPTIONS ] file.stl
|
Usage: slic3r.pl [ OPTIONS ] file.stl
|
||||||
|
|
||||||
--help Output this usage screen and exit
|
--help Output this usage screen and exit
|
||||||
--layer-height Layer height in mm (default: $Slic3r::layer_height)
|
|
||||||
--resolution Print resolution in mm (default: $Slic3r::resolution)
|
Printer options:
|
||||||
--perimeters Number of perimeters/horizontal skins
|
--nozzle-diameter Diameter of nozzle in mm (default: $Slic3r::nozzle_diameter)
|
||||||
(range: 1+, default: $Slic3r::perimeter_offsets)
|
--print-center Coordinates of the point to center the print around
|
||||||
--fill-density Infill density (range: 0-1, default: $Slic3r::fill_density)
|
(default: 100,100)
|
||||||
|
--use-relative-e-distances
|
||||||
|
Use relative distances for extrusion in GCODE output
|
||||||
|
|
||||||
|
Filament options:
|
||||||
--filament-diameter Diameter of your raw filament (default: $Slic3r::filament_diameter)
|
--filament-diameter Diameter of your raw filament (default: $Slic3r::filament_diameter)
|
||||||
--filament-packing-density
|
--filament-packing-density
|
||||||
Ratio of the extruded volume over volume pushed into
|
Ratio of the extruded volume over volume pushed
|
||||||
the extruder (default: $Slic3r::filament_packing_density)
|
into the extruder (default: $Slic3r::filament_packing_density)
|
||||||
--flow-width Width of extruded flow in mm (default: $Slic3r::flow_width)
|
|
||||||
|
Speed options:
|
||||||
--print-feed-rate Speed of print moves in mm/sec (default: $Slic3r::print_feed_rate)
|
--print-feed-rate Speed of print moves in mm/sec (default: $Slic3r::print_feed_rate)
|
||||||
--travel-feed-rate Speed of non-print moves in mm/sec (default: $Slic3r::travel_feed_rate)
|
--travel-feed-rate Speed of non-print moves in mm/sec (default: $Slic3r::travel_feed_rate)
|
||||||
--bottom-layer-speed-ratio
|
--bottom-layer-speed-ratio
|
||||||
Factor to increase/decrease speeds on bottom layer by
|
Factor to increase/decrease speeds on bottom
|
||||||
(default: $Slic3r::bottom_layer_speed_ratio)
|
layer by (default: $Slic3r::bottom_layer_speed_ratio)
|
||||||
|
|
||||||
|
Accuracy options:
|
||||||
|
--layer-height Layer height in mm (default: $Slic3r::layer_height)
|
||||||
|
|
||||||
|
Print options:
|
||||||
|
--perimeters Number of perimeters/horizontal skins (range: 1+,
|
||||||
|
default: $Slic3r::perimeter_offsets)
|
||||||
|
--fill-density Infill density (range: 0-1, default: $Slic3r::fill_density)
|
||||||
|
--temperature Extrusion temperature (default: $Slic3r::temperature)
|
||||||
|
|
||||||
|
Retraction options:
|
||||||
--retract-length Length of retraction in mm when pausing extrusion
|
--retract-length Length of retraction in mm when pausing extrusion
|
||||||
(default: $Slic3r::retract_length)
|
(default: $Slic3r::retract_length)
|
||||||
--retract-speed Speed for retraction in mm/sec (default: $Slic3r::retract_speed)
|
--retract-speed Speed for retraction in mm/sec (default: $Slic3r::retract_speed)
|
||||||
--retract-restart-extra
|
--retract-restart-extra
|
||||||
Additional amount of filament in mm to push after compensating
|
Additional amount of filament in mm to push after
|
||||||
retraction (default: $Slic3r::retract_restart_extra)
|
compensating retraction (default: $Slic3r::retract_restart_extra)
|
||||||
|
Skirt options:
|
||||||
--skirts Number of skirts to draw (default: $Slic3r::skirts)
|
--skirts Number of skirts to draw (default: $Slic3r::skirts)
|
||||||
--skirt-distance Distance in mm between innermost skirt and object
|
--skirt-distance Distance in mm between innermost skirt and object
|
||||||
(default: $Slic3r::skirt_distance)
|
(default: $Slic3r::skirt_distance)
|
||||||
--use-relative-e-distances
|
|
||||||
Use relative distances for extrusion in GCODE output
|
|
||||||
--print-center Coordinates of the point to center the print around
|
|
||||||
(default: 100,100)
|
|
||||||
--temperature Extrusion temperature (default: $Slic3r::temperature)
|
|
||||||
-o, --output File to output gcode to (default: <inputfile>.gcode)
|
-o, --output File to output gcode to (default: <inputfile>.gcode)
|
||||||
|
|
||||||
EOF
|
EOF
|
||||||
|
Loading…
Reference in New Issue
Block a user