I am having extensive problems with my parts coming out shifted. I am using ponterface with Slic3r 8.4. I have checked everything mechanically on the machine and it is sound as far as I can tell and the electrical connections seem good. The baseline is shifting multiple times in multiple directions during the print. Any ideas would be greatly appreciated. Just or reference, the part i the photo should be cylindrical in shape. You can see there was a major shift after only a few layers. thanks
For me it was two things that I did and the shifting and banding is gone.
First thing was I had my belt too tight on my x, it could also be to tight on the y, which I had already adjusted before this.
The other thing was my acceleration and jerk settings were off. I did a search on the RepRap forums and found an awesome link on how to do some tuning on your printer. Here's the relevant post http://forums.reprap.org/read.php?1,131740,131740. And here is the section for fine tuning your printer :
tbfleming [ PM ]
Re: Y axis stutter on MendelMax
May 07, 2012 06:11PM Registered: 2 years ago
Posts: 72
It sounds like you're past the hardest part (alignment). Here's the technique I used to tune acceleration (I assume you're using Marlin). I created a simple g-code file:
G1 Y100 F5400
G1 Y100.7 F5400
(repeat these two lines hundreds of times)
Your numbers will probably be different. I started with different numbers then adjusted them until I hit the worst case: the motor and bed stood still (this is a form of resonance). The goal is to reduce acceleration to the point where it can't resonate.
While it's resonating, paste commands into Pronterface to adjust the acceleration (Pronterface interjects manual commands into the running gcode )
M204 S1000.00
You want the highest value that allows it to move back and forth the full distance without overshooting. Once you've found it, use the following to permanently store the adjustment:
M500
If you still get stuttering on real gcode files then you might need to reduce it farther. When you're using Marlin and a heavy bed, the most important number isn't the top speed, it's the acceleration. Acceleration controls the forces on the machine.
Todd
Reply Quote Report
One thing I would highly recommend, change only one thing at a time and test it. The reason I say this is because if you introduce another issue while trying to fix this and you've made multiple changes it'll be nearly impossible to figure out which of the changes you made are causing another issue. Small steps when troubleshooting.