Fine tune bed ACD parameters
-
Do you have B0 on that M307 line to disable bang-bang mode too?
-
Yes, my complete settings are:
M307 H${HEATER_PIN} A-1 C-1 D-1 ; Disable Heater pin used by probe
M307 H0 B0 ${HEATER_H0} ; Disable bang-bang and tune heating parameters
M307 H1 B0 ${HEATER_H1} ; Disable bang-bang and tune heating parametersAnd also:
; Heaters Tunning
HEATER_H0="A102.1 C36.8 D0.4 S0.75 V12.3"
HEATER_H1="A674.5 C185.7 D4.8 S1.00 V12.3" -
@token47 Those commands don't look much like RepRap firmware commands.
https://duet3d.dozuki.com/Wiki/Gcode#Section_M307_Set_or_report_heating_process_parameters
-
@deckingman they are compiled to raw gcode doing variable substitutions and sent by ftp to the duet, automatically. For the case in question, just imagine the substituted command. They are below for easier reading, this is what is actually on the config.g file:
M307 H0 B0 A102.1 C36.8 D0.4 S0.75 V12.3
M307 H1 B0 A674.5 C185.7 D4.8 S1.00 V12.3For the record, the config generator is at https://github.com/token47/duetcfgen
thanks
-
@token47 said in Fine tune bed ACD parameters:
@deckingman they are compiled to raw gcode doing variable substitutions and sent by ftp to the duet, automatically. ................................
You are talking to a 65 year old retired mechanical engineer. I have no idea what that means (but it sounds very clever)
Edit. FTP to me means Federal Test Procedure, as in Ftp75 which is/was a type of exhaust emission test.
-
@token47 said in Fine tune bed ACD parameters:
M307 H0 B0 A102.1 C36.8 D0.4 S0.75 V12.3
Try a larger D value to increase deadtime.
-
I agree, D0.4 is unfeasibly low for a bed heater. 5 to 10 is more usual. We already know that with some types of bed heater, tuning is unable to establish the dead time, and finding a better way to measure it is on my todo list.
-
@deckingman LOL. Not exactly, but good to know that, heheh. BTW, very nice project your printer, following every move. Congrats!
-
@dc42 Hummm, that explains why I upped the value until more than double and it still would not make a difference. Will try that. Thanks!
-
Yes! D8.0 was perfect for my bed. I was afraid of going too high compared to the original 0.4 value and wouldn't go past 1.0. Thank you for the information that 5 to 10 were more usual values!