mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-15 02:37:51 -06:00
New extrusion math
This commit is contained in:
parent
ea88cad8e3
commit
55f2247cd9
4 changed files with 13 additions and 10 deletions
|
@ -26,7 +26,7 @@ use Slic3r::Surface;
|
|||
use Slic3r::Surface::Collection;
|
||||
|
||||
# printer options
|
||||
our $nozzle_diameter = 0.45;
|
||||
our $nozzle_diameter = 0.5;
|
||||
our $print_center = [100,100]; # object will be centered around this point
|
||||
our $use_relative_e_distances = 0;
|
||||
our $z_offset = 0;
|
||||
|
@ -38,11 +38,12 @@ our $filament_packing_density = 0.85;
|
|||
# speed options
|
||||
our $print_feed_rate = 60; # mm/sec
|
||||
our $travel_feed_rate = 130; # mm/sec
|
||||
our $bottom_layer_speed_ratio = 0.6;
|
||||
our $bottom_layer_speed_ratio = 0.3;
|
||||
|
||||
# accuracy options
|
||||
our $resolution = 0.001;
|
||||
our $layer_height = 0.4;
|
||||
our $thickness_ratio = 1;
|
||||
our $flow_width;
|
||||
|
||||
# print options
|
||||
|
@ -50,10 +51,10 @@ our $perimeter_offsets = 3;
|
|||
our $solid_layers = 3;
|
||||
our $fill_density = 0.4; # 1 = 100%
|
||||
our $fill_angle = 0;
|
||||
our $temperature = 195;
|
||||
our $temperature = 200;
|
||||
|
||||
# retraction options
|
||||
our $retract_length = 2; # mm
|
||||
our $retract_length = 1; # mm
|
||||
our $retract_restart_extra = 0; # mm
|
||||
our $retract_speed = 40; # mm/sec
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue