Direct drive slipping March 11, 2014 04:15PM |
Registered: 10 years ago Posts: 16 |
Quote
#define NUM_AXIS 4 // The axis order in all axis related arrays is X, Y, Z, E
#define HOMING_FEEDRATE {50*60, 50*60, 3*60, 0} // set the homing speeds (mm/min){50*60, 50*60, 4*60, 0}
// default settings
#define DEFAULT_AXIS_STEPS_PER_UNIT {80, 80,3200,151.111}; // default steps per unit for Ultimaker {78.7402,78.7402,200.0*8/3,760*1.1} {100,100,3200,836}
#define DEFAULT_MAX_FEEDRATE {500, 500, 5, 10000} // (mm/sec)
#define DEFAULT_MAX_ACCELERATION {3000,3000,100,10000} // X, Y, Z, E maximum start speed for accelerated moves. E default values are good for skeinforge 40+, for older versions raise them a lot.
#define DEFAULT_ACCELERATION 3000 // X, Y, Z and E max acceleration in mm/s^2 for printing moves
#define DEFAULT_RETRACT_ACCELERATION 3000 // X, Y, Z and E max acceleration in mm/s^2 for retracts
#define DEFAULT_XYJERK 5.0 // (mm/sec)
#define DEFAULT_ZJERK 0.1 // (mm/sec)
#define DEFAULT_EJERK 2.0 // (mm/sec)
Re: Direct drive slipping March 11, 2014 05:45PM |
Registered: 11 years ago Posts: 198 |
Re: Direct drive slipping March 11, 2014 06:51PM |
Admin Registered: 16 years ago Posts: 1,470 |
Honestly, I'm surprised this worked at all. Usually direct-drive extruders just don't have enough torque to drive 3mm filament at any reasonable speed.Quote
krakadu
... direct drive gear ... using 3mm filament ...
Yep. The firmware doesn't care what the filament diameter is, only how many steps it takes to drive 1mm of filament into the extruder.Quote
krakadu
The guy who's firmware I'm using said he had it set for 1.75mm filament but I'm not sure where it shows. Is it even in the firmware? Isn't it slic3r's job to calculate that?
This is indicative of a problem that is separate from the firmware or extruder drive. Perhaps, as Ralf mentioned, your temperatures aren't accurate? Or maybe the problem is with your hot end? Those Chinese J Head clones tend to be of poor quality, and replacing the hot end with another one doesn't rule out the possibility of the hot end being the problem.Quote
krakadu
It gets hard to push the filament even manually...
Help improve the RepRap wiki!
Just click "Edit" in the top-right corner of the page and start typing. Anyone can edit the wiki! |
Re: Direct drive slipping March 13, 2014 02:31AM |
Registered: 10 years ago Posts: 16 |