Problema motori Prusa I3 [RISOLTO] April 03, 2014 04:51AM |
Registered: 10 years ago Posts: 41 |
Re: Problema motori Prusa I3 April 03, 2014 06:15AM |
Registered: 10 years ago Posts: 417 |
Re: Problema motori Prusa I3 April 03, 2014 07:49AM |
Registered: 10 years ago Posts: 6,409 |
Re: Problema motori Prusa I3 April 03, 2014 07:54AM |
Registered: 10 years ago Posts: 41 |
Re: Problema motori Prusa I3 April 03, 2014 07:56AM |
Registered: 10 years ago Posts: 313 |
Re: Problema motori Prusa I3 April 03, 2014 08:46AM |
Registered: 11 years ago Posts: 289 |
Re: Problema motori Prusa I3 April 03, 2014 10:26AM |
Registered: 10 years ago Posts: 41 |
//// Calibration variables // X, Y, Z, E steps per unit - Metric Prusa Mendel with Wade extruder: #define _AXIS_STEP_PER_UNIT {32, 32, 1000,700} // Metric Prusa Mendel with Makergear geared stepper extruder: //#define _AXIS_STEP_PER_UNIT {80,80,3200/1.25,1380} // MakerGear Hybrid Prusa Mendel: // Z axis value is for .9 stepper(if you have 1.8 steppers for Z, you need to use 2272.7272) //#define _AXIS_STEP_PER_UNIT {104.987, 104.987, 4545.4544, 1487}
//----------------------------------------------------------------------- //// MOVEMENT SETTINGS //----------------------------------------------------------------------- const int NUM_AXIS = 4; // The axis order in all axis related arrays is X, Y, Z, E #define _MAX_FEEDRATE {500, 500, 5, 45} // (mm/sec) #define _HOMING_FEEDRATE {1500,1500,50} // (mm/min) !! #define _AXIS_RELATIVE_MODES {false, false, false, false} #define MAX_STEP_FREQUENCY 30000 // Max step frequency //For the retract (negative Extruder) move this maxiumum Limit of Feedrate is used //The next positive Extruder move use also this Limit, //then for the next (second after retract) move the original Maximum (_MAX_FEEDRATE) Limit is used #define MAX_RETRACT_FEEDRATE 100 //mm/sec
//----------------------------------------------------------------------- //// Acceleration settings //----------------------------------------------------------------------- // 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 _ACCELERATION 1000 // Axis Normal acceleration mm/s^2 #define _RETRACT_ACCELERATION 2000 // Extruder Normal acceleration mm/s^2 #define _MAX_XY_JERK 20.0 #define _MAX_Z_JERK 0.4 #define _MAX_E_JERK 5.0 // (mm/sec) //#define _MAX_START_SPEED_UNITS_PER_SECOND {25.0,25.0,0.2,10.0} #define _MAX_ACCELERATION_UNITS_PER_SQ_SECOND {3000,3000,50,3000} // X, Y, Z and E max acceleration in mm/s^2 for printing moves or retracts // Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end // of the buffer and all stops. This should not be much greater than zero and should only be changed // if unwanted behavior is observed on a user's machine when running at very slow speeds. #define MINIMUM_PLANNER_SPEED 0.05 // (mm/sec) #define DEFAULT_MINIMUMFEEDRATE 0.0 // minimum feedrate #define DEFAULT_MINTRAVELFEEDRATE 0.0 #define _MIN_SEG_TIME 20000 // If defined the movements slow down when the look ahead buffer is only half full #define SLOWDOWN const int dropsegments=5; //everything with less than this number of steps will be ignored as move and joined with the next movement
Re: Problema motori Prusa I3 April 03, 2014 11:20AM |
Registered: 11 years ago Posts: 289 |
Questi sono valori assoluti, che vuol dire superiore a 1000?Quote
#define _AXIS_STEP_PER_UNIT {32, 32, 1000,700}
puoi provare a variarla da 5 a 2, per provare se va meglio, ma solo dopo aver settato i giusti step per X Y e ZQuote
#define _MAX_FEEDRATE {500, 500, 5, 45} // (mm/sec)
Re: Problema motori Prusa I3 April 03, 2014 11:25AM |
Registered: 10 years ago Posts: 6,409 |
Re: Problema motori Prusa I3 April 03, 2014 11:38AM |
Registered: 10 years ago Posts: 41 |
Re: Problema motori Prusa I3 April 03, 2014 11:43AM |
Registered: 10 years ago Posts: 41 |
Re: Problema motori Prusa I3 April 03, 2014 11:47AM |
Registered: 10 years ago Posts: 6,409 |
Re: Problema motori Prusa I3 April 03, 2014 11:53AM |
Registered: 10 years ago Posts: 41 |
Re: Problema motori Prusa I3 April 03, 2014 11:58AM |
Registered: 10 years ago Posts: 6,409 |
Re: Problema motori Prusa I3 April 03, 2014 12:04PM |
Registered: 10 years ago Posts: 41 |
Re: Problema motori Prusa I3 April 03, 2014 12:20PM |
Registered: 10 years ago Posts: 41 |
Re: Problema motori Prusa I3 April 03, 2014 12:26PM |
Registered: 10 years ago Posts: 6,409 |
Re: Problema motori Prusa I3 April 03, 2014 12:33PM |
Registered: 10 years ago Posts: 41 |
Re: Problema motori Prusa I3 April 03, 2014 12:45PM |
Registered: 10 years ago Posts: 6,409 |
Re: Problema motori Prusa I3 April 03, 2014 01:34PM |
Registered: 10 years ago Posts: 74 |
#define _MAX_Z_JERK 0.4 // portalo a 0.2
Re: Problema motori Prusa I3 April 03, 2014 01:37PM |
Registered: 10 years ago Posts: 41 |
Re: Problema motori Prusa I3 April 03, 2014 01:41PM |
Registered: 10 years ago Posts: 41 |
Re: Problema motori Prusa I3 April 04, 2014 03:36AM |
Registered: 11 years ago Posts: 289 |
Re: Problema motori Prusa I3 April 04, 2014 05:33AM |
Registered: 10 years ago Posts: 41 |
Re: Problema motori Prusa I3 April 04, 2014 08:49AM |
Registered: 11 years ago Posts: 289 |
Re: Problema motori Prusa I3 [RISOLTO] April 04, 2014 11:49AM |
Registered: 10 years ago Posts: 41 |
Re: Problema motori Prusa I3 [RISOLTO] April 04, 2014 12:00PM |
Registered: 10 years ago Posts: 6,409 |