Skip to content

Instantly share code, notes, and snippets.

@a0s
Created May 5, 2015 21:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save a0s/8b257e287f8ea43a0386 to your computer and use it in GitHub Desktop.
Save a0s/8b257e287f8ea43a0386 to your computer and use it in GitHub Desktop.
Calculate optimal layer heights accordingly screw pitch and stepper motor #reprap
# Prints the value of the layer height corresponds to a whole number of steps
pitch = 1.25 # mm; 0.8mm for M5, 1.25mm for M8
substeps = 32 # 1,2,4,8,16 for A4988; 1,2,4,8,16,32 for DRV8825
motor_step = 1.8 # deg/step; 0.9 or 1.8 degrees/step
from = 0.00 # mm
to = 0.41 # mm; nozzle size
by = 0.01 # mm
accurate = 4 # decimal digits
steps_by_mm = 360/motor_step*substeps/pitch
prev_layer_height = 0
best_layer_height = to*0.6 # 60% of nozzle size
height_steps = []
puts "Steps by 1mm: #{steps_by_mm}"
puts "Best layer height: #{best_layer_height}mm (60% of #{to}mm)"
((steps_by_mm*from).round..(steps_by_mm*to).round).to_a.each do |i|
layer_height = i.to_f/steps_by_mm
height_steps << [layer_height, i] if layer_height.to_s.split('.')[1].size <= accurate
end
best_height, best_steps = height_steps.sort {|a, b| (a[0] - best_layer_height).abs <=> (b[0] - best_layer_height).abs }.first
height_steps.each do |height, steps|
puts "#{height}\t(#{steps}) #{'<= best' if steps == best_steps}"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment