Have some issues with the heater E0 faulting..
I have tuned the heater 4 or 5 time to 240c and it never errors it finishes and i get the tuned values and enter them in the config.g ...
but when i try to run a print and set the heater to 240 it faults before it reaches 50 to 70C
i re tune the heated it go's right up to 240C i enter the values again into config.g
let it cool down and try setting the heater to 240C and it faults again
i get the message not heating fast enough
It was working good with a pt100 therm, but wire broke and i had to replace with the standard ed3 therm, only thing i had on hand... changed all the config.g settings for the correct therm..
duet2 and firmware 3.1.1
any suggestions
heres my config.g and i put the autotune values at the top just to show what it came up with
code_text
heater tune
9/14/2020, 9:48:15 AM M307 H1
Heater 1 model: gain 426.3, time constant 274.4, dead time 0.7, max PWM 1.00, calibration voltage 23.0, mode PID
Computed PID parameters for setpoint change: P157.8, I11.161, D80.4
Computed PID parameters for load change: P157.8, I43.139, D80.4
end tune
; Configuration file for Duet WiFi (firmware version 3)
; executed by the firmware on start-up
;
; generated by RepRapFirmware Configuration Tool v3.1.4 on Sun Jul 19 2020 16:48:57 GMT-0400 (Eastern Daylight Time)
; General preferences
G90 ; send absolute coordinates...
M83 ; ...but relative extruder moves
M550 P"My Printer" ; set printer name
M665 R176.402 L288 B85 H317.498 X0.000 Y0.000 Z0.000 ; Set delta radius, diagonal rod length, printable radius and homed height
M666 X-0.06 Y0.07 Z-0.01 ; put your endstop adjustments here, or let auto calibration find them
; Network
M551 P"gorf" ; set password
M552 S1 ; enable network
M586 P0 S1 ; enable HTTP
M586 P1 S0 ; disable FTP
M586 P2 S0 ; disable Telnet
; Drives
M569 P0 S0 ; physical drive 0 goes forwards
M569 P1 S0 ; physical drive 1 goes forwards
M569 P2 S0 ; physical drive 2 goes forwards
M569 P3 S1 ; physical drive 3 goes forwards
M584 X0 Y1 Z2 E3 ; set drive mapping
M350 X32 Y32 Z32 E32 I0 ; configure microstepping without interpolation
M92 X200.00 Y200.00 Z200.00 E173.5 ; set steps per mm
M566 X900.00 Y900.00 Z12.00 E800.00 ; set maximum instantaneous speed changes (mm/min)
M203 X4000.00 Y4000.00 Z4000.00 E1200.00 ; set maximum speeds (mm/min)
M201 X1000.00 Y1000.00 Z1000.00 E500.00 ; set accelerations (mm/s^2)
M906 X800 Y800 Z800 E800 I30 ; set motor currents (mA) and motor idle factor in per cent
M84 S30 ; Set idle timeout
; Axis Limits
M208 Z0 S1 ; set minimum Z
; Endstops
M574 X2 S1 P"!xstop" ; configure active-high endstop for high end on X via pin xstop
M574 Y2 S1 P"!ystop" ; configure active-high endstop for high end on Y via pin ystop
M574 Z2 S1 P"!zstop" ; configure active-high endstop for high end on Z via pin zstop
; Z-Probe
;M558 P8 R0.6 C"!^zprobe.in" H2.5 A10 F400 T4000 ; set Z probe type to effector and the dive height + speeds
;G31 P250 X0 Y0 Z-0.306 ; set Z probe trigger value, offset and trigger height
M558 P0 C"!zprobe.in" R2 H6 F2800 4000 A4
G31 X0 Y0 Z-0.306 P492
M557 R65 S20 ; define mesh grid
; Heaters
M308 S0 P"bedtemp" Y"thermistor" T100000 B4138 ; configure sensor 0 as thermistor on pin bedtemp
M950 H0 C"bedheat" T0 ; create bed heater output on bedheat and map it to sensor 0
M307 H0 B0 A113.8 C611.3 D0.4 V23.0 ; Disable bang-bang mode for the bed heater and set PWM
M140 H0 ; map heated bed to heater 0
M143 H0 S120 ; set temperature limit for heater 0 to 120C
M308 S1 P"e0temp" Y"thermistor" T100000 B4725 C7.06e-8 ; configure sensor 1 as thermocouple via CS pin spi.cs1
M950 H1 C"e0heat" T1 ; create nozzle heater output on e0heat and map it to sensor 1
M307 H1 B0 A426.3 C274.4 D0.7 V23.0 ; disable bang-bang mode for heater and set PWM limit
; Fans
M950 F0 C"fan0" Q500 ; create fan 0 on pin fan0 and set its frequency
M106 P0 S0.25 H-1 ; set fan 0 value. Thermostatic control is turned off
M950 F1 C"fan1" Q35 ; create fan 1 on pin fan1 and set its frequency
M106 P1 S1 H-1 ; set fan 1 value. Thermostatic control is turned off
; Tools
M563 P0 D0 H1 F0 ; define tool 0
G10 P0 X0 Y0 Z0 ; set tool 0 axis offsets
G10 P0 R0 S0 ; set initial tool 0 active and standby temperatures to 0C
; Custom settings are not defined
Thanks gary