Welcome! Log In Create A New Profile

Advanced

Stepper motors Z axis move very very slow

Posted by bulldogbob 
Stepper motors Z axis move very very slow
April 15, 2017 12:04PM
Hello all ,

I have a slight problem with my stepper motors of the z axis , they turn very very very slow when the axis goes down or up ( it takes 8 sec to move 10mm ) . There's no banding in the rod's , when i connect the motors on the x and y connections they work just fine . I just upgraded to these lead screws and all worked fine before , i have replaced the stepper driver but that did not help , i checked my configuration.h file but i cant see it there .Sorry for my english but i hope some one can help me out here . I post my configuration.h file to . I hope it is not the ramps board.


/**
* Default Axis Steps Per Unit (steps/mm)
* Override with M92
* X, Y, Z, E0 [, E1[, E2[, E3]]]
*/
#define DEFAULT_AXIS_STEPS_PER_UNIT { 158.6357, 158.6357, 800, 239.077 }

/**
* Default Max Feed Rate (mm/s)
* Override with M203
* X, Y, Z, E0 [, E1[, E2[, E3]]]
*/
#define DEFAULT_MAX_FEEDRATE {300, 300, 3.5, 25 }

/**
* Default Max Acceleration (change/s) change = mm/s
* (Maximum start speed for accelerated moves)
* Override with M201
* X, Y, Z, E0 [, E1[, E2[, E3]]]
*/
#define DEFAULT_MAX_ACCELERATION { 1500,1500,100,1000 }

/**
* 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 3000 // E acceleration for retracts
#define DEFAULT_TRAVEL_ACCELERATION 3000 // X, Y, Z acceleration for travel (non printing) moves

/**
* Default Jerk (mm/s)
*
* "Jerk" specifies the minimum speed change that requires acceleration.
* When changing speed and direction, if the difference is less than the
* value set here, it may happen instantaneously.
*/
#define DEFAULT_XJERK 10.0
#define DEFAULT_YJERK 10.0
#define DEFAULT_ZJERK 0.4
#define DEFAULT_EJERK 5.0
Re: Stepper motors Z axis move very very slow
April 15, 2017 12:23PM
Try Z feedrate to 15 and Z acceleration to 800

If you change them in config, after uploading firmware send to printer
M502
M500

to update the eeprom

Edited 1 time(s). Last edit at 04/15/2017 12:24PM by obewan.
Re: Stepper motors Z axis move very very slow
April 15, 2017 03:57PM
Thanks for the advice Obewan , i wil try that tomorrow.
Re: Stepper motors Z axis move very very slow
April 16, 2017 02:08AM
Quote

#define DEFAULT_MAX_FEEDRATE {300, 300, 3.5, 25 }

...didn't know it was possible to use decimals for max. speed? I had to use 2 mm/s for my i3 z-axis, because 3mm wasn't reliably working.
Re: Stepper motors Z axis move very very slow
April 16, 2017 03:29AM
Quote
o_lampe
Quote

#define DEFAULT_MAX_FEEDRATE {300, 300, 3.5, 25 }

...didn't know it was possible to use decimals for max. speed? I had to use 2 mm/s for my i3 z-axis, because 3mm wasn't reliably working.

Yes decimals work , i had no problem with that . I think my ramps is the problem. When i set max feedrate like x axis it does not make a diverence but when i connect it to x axis they work fine so the motors are good.
Sorry, only registered users may post in this forum.

Click here to login