Choppy printing Delta
I have delta with Mega/Ramps electronics. When I print cylindrical object I get
choppy print movements every second or so.
my #define DELTA_SEGMENTS_PER_SECOND_PRINT
is set to 120
I switched from MArlin to get beter performance, but this is even vorse.
Print speed is 35.
Any suggestions ?
Mario
choppy print movements every second or so.
my #define DELTA_SEGMENTS_PER_SECOND_PRINT
is set to 120
I switched from MArlin to get beter performance, but this is even vorse.
Print speed is 35.
Any suggestions ?
Mario
Comments
size from 16, because of memory limitations. At the moment I dont have Due and Radds Combination.
Stuttering is the most obvious if I load Gcode generated in Simlify3d, but only in Skirt portion at the begining of print.
After Skirt being lay down, movement seems almost normal.
I dont know why only Skirt produces such Stutter ?
I even disabled Display completely but Skirt printing remains interruped almost every 10 mm
I have Quad Stepping enabled as this was a default in Configurator, should I turn it of ?
What software do you use to send the gcode? Please try repetier-server without Ping-Pong mode. That will use the fastest possible communication over usb, just in case it is the number of commands send over usb causing the problem. As I said this happens if buffer gets too low which can be a result of the sender being too slow. And repetier-server uses binary protocol for compression and sends several commands at once which can drastically improve throughput.
Have you tried printing a simple cube? Just to rule out one of the reasons I told you - models with many small segments.
printing is smooth.
#define DOUBLE_STEP_DELAY 0 // time in microseconds
#define MAX_ACCELERATION_UNITS_PER_SQ_SECOND_X 1000
#define MAX_ACCELERATION_UNITS_PER_SQ_SECOND_Y 1000
#define MAX_ACCELERATION_UNITS_PER_SQ_SECOND_Z 1000
#define MAX_TRAVEL_ACCELERATION_UNITS_PER_SQ_SECOND_X 2000
#define MAX_TRAVEL_ACCELERATION_UNITS_PER_SQ_SECOND_Y 2000
#define MAX_TRAVEL_ACCELERATION_UNITS_PER_SQ_SECOND_Z 2000
#define INTERPOLATE_ACCELERATION_WITH_Z 0
#define ACCELERATION_FACTOR_TOP 100
#define MAX_JERK 20
#define MAX_ZJERK 20
#define PRINTLINE_CACHE_SIZE 16
#define MOVE_CACHE_LOW 10
print speed was 35.
Should I increase acceleration ?