|
Anonymous User
PID Autotune failed! timeout My heat cartridge cannot heat up. January 11, 2015 04:41AM |
// Comment the following line to disable PID and enable bang-bang.
#define PIDTEMP
#define BANG_MAX 255 // limits current to nozzle while in bang-bang mode; 255=full current
#define PID_MAX 255 // limits current to nozzle while PID is active (see PID_FUNCTIONAL_RANGE below); 255=full current
#ifdef PIDTEMP
//#define PID_DEBUG // Sends debug data to the serial port.
//#define PID_OPENLOOP 1 // Puts PID in open loop. M104/M140 sets the output power from 0 to PID_MAX
#define PID_FUNCTIONAL_RANGE 10 // If the temperature difference between the target temperature and the actual temperature
// is more then PID_FUNCTIONAL_RANGE then the PID will be shut off and the heater will be set to min/max.
#define PID_INTEGRAL_DRIVE_MAX 255 //limit for the integral term
#define K1 0.95 //smoothing factor within the PID
#define PID_dT ((OVERSAMPLENR * 10.0)/(F_CPU / 64.0 / 256.0)) //sampling period of the temperature routine
// If you are using a pre-configured hotend then you can use one of the value sets by uncommenting it
// Ultimaker
#define DEFAULT_Kp 45
#define DEFAULT_Ki 4.2
#define DEFAULT_Kd 120
// MakerGear
// #define DEFAULT_Kp 7.f
// #define DEFAULT_Ki 0.1
// #define DEFAULT_Kd 12
// Mendel Parts V9 on 12V
// #define DEFAULT_Kp 63.0
// #define DEFAULT_Ki 2.25
// #define DEFAULT_Kd 440
#endif // PIDTEMP
Can any one help me?
|
Anonymous User
Re: PID Autotune failed! timeout My heat cartridge cannot heat up. January 11, 2015 07:58PM |
|
Re: PID Autotune failed! timeout My heat cartridge cannot heat up. January 11, 2015 10:01PM |
Registered: 12 years ago Posts: 770 |
|
Re: PID Autotune failed! timeout My heat cartridge cannot heat up. January 12, 2015 12:37AM |
Admin Registered: 14 years ago Posts: 7,286 |
|
Re: PID Autotune failed! timeout My heat cartridge cannot heat up. May 10, 2015 03:58AM |
Registered: 10 years ago Posts: 9 |
|
Re: PID Autotune failed! timeout My heat cartridge cannot heat up. May 11, 2015 02:51PM |
Registered: 10 years ago Posts: 46 |
|
Re: PID Autotune failed! timeout My heat cartridge cannot heat up. September 06, 2015 06:32PM |
Registered: 10 years ago Posts: 367 |
Quote
milkypostman
Do you have a fan blowing on the nozzle by chance?
|
Re: PID Autotune failed! timeout My heat cartridge cannot heat up. September 07, 2015 02:23AM |
Registered: 10 years ago Posts: 5,232 |
|
Re: PID Autotune failed! timeout My heat cartridge cannot heat up. September 07, 2015 12:22PM |
Registered: 10 years ago Posts: 367 |
|
Re: PID Autotune failed! timeout My heat cartridge cannot heat up. September 07, 2015 12:26PM |
Registered: 10 years ago Posts: 46 |
|
Re: PID Autotune failed! timeout My heat cartridge cannot heat up. September 07, 2015 12:30PM |
Registered: 10 years ago Posts: 367 |