Inbetriebnahme

From RepRap
Revision as of 04:22, 30 July 2010 by Peer (talk | contribs) (Created page with '{{Template:Mendel Documentation Header}} == Kalibrieren des Extruders == In der Firmware des Motherboards musst Du die Datei configuration.h anpassen, damit Dein RepRap/RepS…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
Mendel Build Documentation




Kalibrieren des Extruders

In der Firmware des Motherboards musst Du die Datei configuration.h anpassen, damit Dein RepRap/RepStrap korrekt arbeitet.

  • (Wenn Du nur die Datei configuration.h.dist siehst, kopiere sie in eine Datei configuration.h, die Du neu anlegst.)

E_STEPS_PER_MM

Diese Einstellung ist auf 0.706 gesetzt, dieser Wert ist für die 5mm Zahlwelle ohne Getriebe, wenn das Deinem Extruder entspricht, dann ändere den Wert nicht. Wenn Du jedoch einen anders arbeitenden Extruder verwendest, musst Du ein paar Messungen vornehmen und notieren:

  • Durchmesser des Kunststoffdrahts (Filament)
  • Düsendurchmesser
  • Klemmraddurchmesser
  • Schrittzahl des Schrittmotors


Adrian B. verwendete diese Formel:


<math>\frac{1}{\frac{\pi\varnothing_{pw}}{Steps_{360}}.Ratio_{Nozzle to Filament}}</math>


Where as in the recent blog post the formula is


<math>\frac{\varnothing _{Nozzle}^2 . Steps_{360}.Ratio_{gearbox}}{\varnothing _{Filament}^2. \pi . \varnothing_{pw}}</math>


Both of which are confusing, so Grogyan came up with


<math>(\frac{Steps_{360} . Ratio_{gearbox}} { \pi . \varnothing_{pw}}) . (\frac{\varnothing _{Filament}}{ \varnothing_{Nozzle}})^2</math>


Essentially what is happening is having the ratio of filament and nozzle squared, multiplied by the arc of one step of the stepper motor.


Note to self add a method of putting values on this page and output the correct value.



Personal thanks to for enabling formulas to be put into wiki's

sitmo for their equation editor

Formula Help for the correct syntax