Willkommen! Anmelden Ein neues Profil erzeugen

Erweiterte Suche

THERMAL_RUNAWAY Heatbed

geschrieben von Kebbo 
THERMAL_RUNAWAY Heatbed
24. November 2015 09:01
Hallo
ich habe vor bei meinem selbst gebauten 3d Drucker ABS zu drucken (PLA Druckt er wunderbar) aber ich bekomme immer eine Meldung beim aufheizen auf dem Display
THERMAL_RUNAWAY

Ich denke das kommt vom Heizbett da er das immer macht wenn das heizbett 2 grad unter soll ist (bei PLA 60 grad Läuft es super)
Ich habe ein silikon Heizbett rund 250 mm laut hersteller kann es 190 grad ich habe aber zum testen nur 120 und 100 grad verwendet

Kann man das irgendwie einstellen? (PID autotune habe ich schon gemacht)

Gruß Kebbo
Re: THERMAL_RUNAWAY Heatbed
24. November 2015 09:13
Ich glaube es liegt an einem zu geringen Temperaturanstieg in den oberen Temperaturbereichen. Dann greift die unten kopierte Sicherheitsfunktion in den CONFIGURATION.h



/*================== Thermal Runaway Protection ==============================
226 This is a feature to protect your printer from burn up in flames if it has
227 a thermistor coming off place (this happened to a friend of mine recently and
228 motivated me writing this feature).
229
230 The issue: If a thermistor come off, it will read a lower temperature than actual.
231 The system will turn the heater on forever, burning up the filament and anything
232 else around.
233
234 After the temperature reaches the target for the first time, this feature will
235 start measuring for how long the current temperature stays below the target
236 minus _HYSTERESIS (set_temperature - THERMAL_RUNAWAY_PROTECTION_HYSTERESIS).
237
238 If it stays longer than _PERIOD, it means the thermistor temperature
239 cannot catch up with the target, so something *may be* wrong. Then, to be on the
240 safe side, the system will he halt.
241
242 Bear in mind the count down will just start AFTER the first time the
243 thermistor temperature is over the target, so you will have no problem if
244 your extruder heater takes 2 minutes to hit the target on heating.
245
246 */
247 // If you want to enable this feature for all your extruder heaters,
248 // uncomment the 2 defines below:
249

250 // Parameters for all extruder heaters
251 //#define THERMAL_RUNAWAY_PROTECTION_PERIOD 40 //in seconds
252 //#define THERMAL_RUNAWAY_PROTECTION_HYSTERESIS 4 // in degree Celsius
253

254 // If you want to enable this feature for your bed heater,
255 // uncomment the 2 defines below:
256

257 // Parameters for the bed heater
258 //#define THERMAL_RUNAWAY_PROTECTION_BED_PERIOD 20 //in seconds
259 //#define THERMAL_RUNAWAY_PROTECTION_BED_HYSTERESIS 2 // in degree Celsius
260 //===========================================================================
Re: THERMAL_RUNAWAY Heatbed
24. November 2015 12:26
Ich habe das gar nicht in der Configuration.h

ich habe nur
//===========================================================================
//======================== Thermal Runaway Protection =======================
//===========================================================================

/**
* Thermal Runaway Protection protects your printer from damage and fire if a
* thermistor falls out or temperature sensors fail in any way.
*
* The issue: If a thermistor falls out or a temperature sensor fails,
* Marlin can no longer sense the actual temperature. Since a disconnected
* thermistor reads as a low temperature, the firmware will keep the heater on.
*
* The solution: Once the temperature reaches the target, start observing.
* If the temperature stays too far below the target (hysteresis) for too long,
* the firmware will halt as a safety precaution.
*/

#define THERMAL_PROTECTION_HOTENDS // Enable thermal protection for all extruders
#define THERMAL_PROTECTION_BED // Enable thermal protection for the heated bed



Kann ich das einfach reinkopieren?

Ich habe zusätzlich mal die Datei Hinzugefügt

1-mal bearbeitet. Zuletzt am 24.11.15 12:28.
Anhänge:
Öffnen | Download - Configuration.h (40.4 KB)
Re: THERMAL_RUNAWAY Heatbed
24. November 2015 15:32
Die Einstellungen dazu sind in der config_adv.h.


Triffid Hunter's Calibration Guide --> X <-- Drill for new Monitor Most important Gcode.
Re: THERMAL_RUNAWAY Heatbed
24. November 2015 16:51
achso ok danke
In diesem Forum dürfen leider nur registrierte Teilnehmer schreiben.

Klicke hier, um Dich einzuloggen