2

I have a TEVO Tarantula printer, recently I have upgraded it's firmware from the stock firmware to marlin 2.0 using this configuration repo.

Since upgrading my prints take 2x the time they used to (and the time Cura says they should take). I have tried to increase the printer's acceleration and jerk maximum configuration, but it did not help.

In addition, another symptom that is new is that whenever a straight line is printed (for example an infill line) instead of the motors moving in one swift motion, I can see (and better yet, hear) them moving in a different speed. Specifically, it looks like the motors slow down midway and start again.

How can I address those issues?

0scar
  • 37,708
  • 12
  • 68
  • 156
AlonMln
  • 193
  • 3

1 Answers1

3

First, Ultimaker Cura estimated printing times are not necessarily accurate for non Ultimaker printers. For Ultimaker printers this is perfectly tuned, Cura estimates the printing times from experience for the UM3E correctly. Please look into question "How to determine real printing speed (tarantula/cura)?" which is relevant to this question and has an interesting accepted answer.

Second, changing the MAX accelerations will not work, you should increase the default acceleration:

From the TEVO Tarantula Marlin fork you read from the Configuration.h file:

/**
 * Default Acceleration (change/s) change = mm/s
 * Override with M204
 *
 *   M204 P    Acceleration
 *   M204 R    Retract Acceleration
 *   M204 T    Travel Acceleration
 */
#define DEFAULT_ACCELERATION          1000    // X, Y, Z and E acceleration for printing moves
#define DEFAULT_RETRACT_ACCELERATION  2000    // E acceleration for retracts
#define DEFAULT_TRAVEL_ACCELERATION   3000    // X, Y, Z acceleration for travel (non printing) moves

From the main Marlin source you will find:

/**
 * Default Acceleration (change/s) change = mm/s
 * Override with M204
 *
 *   M204 P    Acceleration
 *   M204 R    Retract Acceleration
 *   M204 T    Travel Acceleration
 */
#define DEFAULT_ACCELERATION          3000    // X, Y, Z and E acceleration for printing moves
#define DEFAULT_RETRACT_ACCELERATION  3000    // E acceleration for retracts
#define DEFAULT_TRAVEL_ACCELERATION   3000    // X, Y, Z acceleration for travel (non printing) moves

The TEVO Tarantula sources have lower default acceleration values, you could try to increase those.

0scar
  • 37,708
  • 12
  • 68
  • 156