Use SI units consistently.
This commit is contained in:
parent
de88144649
commit
c20fd8a596
@ -94,7 +94,7 @@ The author is Alessandro Ranellucci (me).
|
|||||||
|
|
||||||
Printer options:
|
Printer options:
|
||||||
--nozzle-diameter Diameter of nozzle in mm (default: 0.5)
|
--nozzle-diameter Diameter of nozzle in mm (default: 0.5)
|
||||||
--print-center Coordinates of the point to center the print around
|
--print-center Coordinates in mm of the point to center the print around
|
||||||
(default: 100,100)
|
(default: 100,100)
|
||||||
--use-relative-e-distances
|
--use-relative-e-distances
|
||||||
Use relative distances for extrusion in GCODE output
|
Use relative distances for extrusion in GCODE output
|
||||||
@ -114,16 +114,16 @@ The author is Alessandro Ranellucci (me).
|
|||||||
Change this to alter the amount of plastic extruded. There should be
|
Change this to alter the amount of plastic extruded. There should be
|
||||||
very little need to change this value, which is only useful to
|
very little need to change this value, which is only useful to
|
||||||
compensate for filament packing (default: 1)
|
compensate for filament packing (default: 1)
|
||||||
--temperature Extrusion temperature, set 0 to disable (default: 200)
|
--temperature Extrusion temperature in degree Celsius, set 0 to disable (default: 200)
|
||||||
|
|
||||||
Speed options:
|
Speed options:
|
||||||
--travel-speed Speed of non-print moves in mm/sec (default: 130)
|
--travel-speed Speed of non-print moves in mm/s (default: 130)
|
||||||
--perimeter-speed Speed of print moves for perimeters in mm/sec (default: 30)
|
--perimeter-speed Speed of print moves for perimeters in mm/s (default: 30)
|
||||||
--small-perimeter-speed
|
--small-perimeter-speed
|
||||||
Speed of print moves for small perimeters in mm/sec (default: 30)
|
Speed of print moves for small perimeters in mm/s (default: 30)
|
||||||
--infill-speed Speed of print moves in mm/sec (default: 60)
|
--infill-speed Speed of print moves in mm/s (default: 60)
|
||||||
--solid-infill-speed Speed of print moves for solid surfaces in mm/sec (default: 60)
|
--solid-infill-speed Speed of print moves for solid surfaces in mm/s (default: 60)
|
||||||
--bridge-speed Speed of bridge print moves in mm/sec (default: 60)
|
--bridge-speed Speed of bridge print moves in mm/s (default: 60)
|
||||||
--bottom-layer-speed-ratio
|
--bottom-layer-speed-ratio
|
||||||
Factor to increase/decrease speeds on bottom
|
Factor to increase/decrease speeds on bottom
|
||||||
layer by (default: 0.3)
|
layer by (default: 0.3)
|
||||||
@ -154,12 +154,12 @@ The author is Alessandro Ranellucci (me).
|
|||||||
Retraction options:
|
Retraction options:
|
||||||
--retract-length Length of retraction in mm when pausing extrusion
|
--retract-length Length of retraction in mm when pausing extrusion
|
||||||
(default: 1)
|
(default: 1)
|
||||||
--retract-speed Speed for retraction in mm/sec (default: 30)
|
--retract-speed Speed for retraction in mm/s (default: 30)
|
||||||
--retract-restart-extra
|
--retract-restart-extra
|
||||||
Additional amount of filament in mm to push after
|
Additional amount of filament in mm to push after
|
||||||
compensating retraction (default: 0)
|
compensating retraction (default: 0)
|
||||||
--retract-before-travel
|
--retract-before-travel
|
||||||
Only retract before travel moves of this length (default: 2)
|
Only retract before travel moves of this length in mm (default: 2)
|
||||||
--retract-lift Lift Z by the given distance in mm when retracting (default: 0)
|
--retract-lift Lift Z by the given distance in mm when retracting (default: 0)
|
||||||
|
|
||||||
Skirt options:
|
Skirt options:
|
||||||
|
@ -60,18 +60,18 @@ our $extrusion_multiplier = 1;
|
|||||||
our $temperature = 200;
|
our $temperature = 200;
|
||||||
|
|
||||||
# speed options
|
# speed options
|
||||||
our $travel_speed = 130; # mm/sec
|
our $travel_speed = 130; # mm/s
|
||||||
our $perimeter_speed = 30; # mm/sec
|
our $perimeter_speed = 30; # mm/s
|
||||||
our $small_perimeter_speed = 30; # mm/sec
|
our $small_perimeter_speed = 30; # mm/s
|
||||||
our $infill_speed = 60; # mm/sec
|
our $infill_speed = 60; # mm/s
|
||||||
our $solid_infill_speed = 60; # mm/sec
|
our $solid_infill_speed = 60; # mm/s
|
||||||
our $bridge_speed = 60; # mm/sec
|
our $bridge_speed = 60; # mm/s
|
||||||
our $bottom_layer_speed_ratio = 0.3;
|
our $bottom_layer_speed_ratio = 0.3;
|
||||||
|
|
||||||
# acceleration options
|
# acceleration options
|
||||||
our $acceleration = 0;
|
our $acceleration = 0;
|
||||||
our $perimeter_acceleration = 25; # mm/sec^2
|
our $perimeter_acceleration = 25; # mm/s^2
|
||||||
our $infill_acceleration = 50; # mm/sec^2
|
our $infill_acceleration = 50; # mm/s^2
|
||||||
|
|
||||||
# accuracy options
|
# accuracy options
|
||||||
our $resolution = 0.00000001;
|
our $resolution = 0.00000001;
|
||||||
@ -105,7 +105,7 @@ END
|
|||||||
# retraction options
|
# retraction options
|
||||||
our $retract_length = 1; # mm
|
our $retract_length = 1; # mm
|
||||||
our $retract_restart_extra = 0; # mm
|
our $retract_restart_extra = 0; # mm
|
||||||
our $retract_speed = 30; # mm/sec
|
our $retract_speed = 30; # mm/s
|
||||||
our $retract_before_travel = 2; # mm
|
our $retract_before_travel = 2; # mm
|
||||||
our $retract_lift = 0; # mm
|
our $retract_lift = 0; # mm
|
||||||
|
|
||||||
|
@ -140,12 +140,12 @@ our $Options = {
|
|||||||
type => 'bool',
|
type => 'bool',
|
||||||
},
|
},
|
||||||
'perimeter_acceleration' => {
|
'perimeter_acceleration' => {
|
||||||
label => 'Perimeters (mm/s^2)',
|
label => 'Perimeters (mm/s²)',
|
||||||
cli => 'perimeter-acceleration',
|
cli => 'perimeter-acceleration',
|
||||||
type => 'f',
|
type => 'f',
|
||||||
},
|
},
|
||||||
'infill_acceleration' => {
|
'infill_acceleration' => {
|
||||||
label => 'Infill (mm/s^2)',
|
label => 'Infill (mm/s²)',
|
||||||
cli => 'infill-acceleration',
|
cli => 'infill-acceleration',
|
||||||
type => 'f',
|
type => 'f',
|
||||||
},
|
},
|
||||||
|
20
slic3r.pl
20
slic3r.pl
@ -111,7 +111,7 @@ Usage: slic3r.pl [ OPTIONS ] file.stl
|
|||||||
|
|
||||||
Printer options:
|
Printer options:
|
||||||
--nozzle-diameter Diameter of nozzle in mm (default: $Slic3r::nozzle_diameter)
|
--nozzle-diameter Diameter of nozzle in mm (default: $Slic3r::nozzle_diameter)
|
||||||
--print-center Coordinates of the point to center the print around
|
--print-center Coordinates in mm of the point to center the print around
|
||||||
(default: $Slic3r::print_center->[0],$Slic3r::print_center->[1])
|
(default: $Slic3r::print_center->[0],$Slic3r::print_center->[1])
|
||||||
--use-relative-e-distances
|
--use-relative-e-distances
|
||||||
Use relative distances for extrusion in GCODE output
|
Use relative distances for extrusion in GCODE output
|
||||||
@ -131,16 +131,16 @@ Usage: slic3r.pl [ OPTIONS ] file.stl
|
|||||||
Change this to alter the amount of plastic extruded. There should be
|
Change this to alter the amount of plastic extruded. There should be
|
||||||
very little need to change this value, which is only useful to
|
very little need to change this value, which is only useful to
|
||||||
compensate for filament packing (default: $Slic3r::extrusion_multiplier)
|
compensate for filament packing (default: $Slic3r::extrusion_multiplier)
|
||||||
--temperature Extrusion temperature, set 0 to disable (default: $Slic3r::temperature)
|
--temperature Extrusion temperature in degree Celsius, set 0 to disable (default: $Slic3r::temperature)
|
||||||
|
|
||||||
Speed options:
|
Speed options:
|
||||||
--travel-speed Speed of non-print moves in mm/sec (default: $Slic3r::travel_speed)
|
--travel-speed Speed of non-print moves in mm/s (default: $Slic3r::travel_speed)
|
||||||
--perimeter-speed Speed of print moves for perimeters in mm/sec (default: $Slic3r::perimeter_speed)
|
--perimeter-speed Speed of print moves for perimeters in mm/s (default: $Slic3r::perimeter_speed)
|
||||||
--small-perimeter-speed
|
--small-perimeter-speed
|
||||||
Speed of print moves for small perimeters in mm/sec (default: $Slic3r::small_perimeter_speed)
|
Speed of print moves for small perimeters in mm/s (default: $Slic3r::small_perimeter_speed)
|
||||||
--infill-speed Speed of print moves in mm/sec (default: $Slic3r::infill_speed)
|
--infill-speed Speed of print moves in mm/s (default: $Slic3r::infill_speed)
|
||||||
--solid-infill-speed Speed of print moves for solid surfaces in mm/sec (default: $Slic3r::solid_infill_speed)
|
--solid-infill-speed Speed of print moves for solid surfaces in mm/s (default: $Slic3r::solid_infill_speed)
|
||||||
--bridge-speed Speed of bridge print moves in mm/sec (default: $Slic3r::bridge_speed)
|
--bridge-speed Speed of bridge print moves in mm/s (default: $Slic3r::bridge_speed)
|
||||||
--bottom-layer-speed-ratio
|
--bottom-layer-speed-ratio
|
||||||
Factor to increase/decrease speeds on bottom
|
Factor to increase/decrease speeds on bottom
|
||||||
layer by (default: $Slic3r::bottom_layer_speed_ratio)
|
layer by (default: $Slic3r::bottom_layer_speed_ratio)
|
||||||
@ -171,12 +171,12 @@ Usage: slic3r.pl [ OPTIONS ] file.stl
|
|||||||
Retraction options:
|
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/s (default: $Slic3r::retract_speed)
|
||||||
--retract-restart-extra
|
--retract-restart-extra
|
||||||
Additional amount of filament in mm to push after
|
Additional amount of filament in mm to push after
|
||||||
compensating retraction (default: $Slic3r::retract_restart_extra)
|
compensating retraction (default: $Slic3r::retract_restart_extra)
|
||||||
--retract-before-travel
|
--retract-before-travel
|
||||||
Only retract before travel moves of this length (default: $Slic3r::retract_before_travel)
|
Only retract before travel moves of this length in mm (default: $Slic3r::retract_before_travel)
|
||||||
--retract-lift Lift Z by the given distance in mm when retracting (default: $Slic3r::retract_lift)
|
--retract-lift Lift Z by the given distance in mm when retracting (default: $Slic3r::retract_lift)
|
||||||
|
|
||||||
Skirt options:
|
Skirt options:
|
||||||
|
Loading…
Reference in New Issue
Block a user