What is Thermal Runaway Protection?Are there printers that don't have thermal runaway protection?Anet A8...

Freedom of speech and where it applies

Rising and falling intonation

Creating nested elements dynamically

Electoral considerations aside, what are potential benefits, for the US, of policy changes proposed by the tweet recognizing Golan annexation?

Has any country ever had 2 former presidents in jail simultaneously?

Store Credit Card Information in Password Manager?

Melting point of aspirin, contradicting sources

New brakes for 90s road bike

Does a 'pending' US visa application constitute a denial?

How could a planet have erratic days?

Why Shazam when there is already Superman?

Does an advisor owe his/her student anything? Will an advisor keep a PhD student only out of pity?

What changes for testers when they are testing in agile environments?

Temporarily disable WLAN internet access for children, but allow it for adults

When were female captains banned from Starfleet?

Multiplicative persistence

How do you respond to a colleague from another team when they're wrongly expecting that you'll help them?

How can I block email signup overlays or javascript popups in Safari?

Why is it that I can sometimes guess the next note?

What is going wrong in this circuit which supposedly should step down AC to arduino friendly voltage?

What is Cash Advance APR?

Is aluminum electrical wire used on aircraft?

What if a revenant (monster) gains fire resistance?

Is there any references on the tensor product of presentable (1-)categories?



What is Thermal Runaway Protection?


Are there printers that don't have thermal runaway protection?Anet A8 Wrong Hotend TempRCBugFix what is it?What does Marlin's G30 code do?How can I add auto bed leveling before print?Auto leveling with Marlin and RAMPS 1.4 does not workTMC2208 drivers - Microsteps configured incorrectlyPositioning Extruders after Tool change : Marlin 1.1.6Bed heating from Pronterface works, but not from LCD menu nor from SD printHow to enable EMERGENCY_PARSER in Marlin firmware?Marlin Firmware Manual Mesh LevelingAre there printers that don't have thermal runaway protection?













4












$begingroup$


What is Thermal Runaway Protection (TRP) and why should I enable it?



How does one do so in Marlin?










share|improve this question











$endgroup$

















    4












    $begingroup$


    What is Thermal Runaway Protection (TRP) and why should I enable it?



    How does one do so in Marlin?










    share|improve this question











    $endgroup$















      4












      4








      4





      $begingroup$


      What is Thermal Runaway Protection (TRP) and why should I enable it?



      How does one do so in Marlin?










      share|improve this question











      $endgroup$




      What is Thermal Runaway Protection (TRP) and why should I enable it?



      How does one do so in Marlin?







      marlin safety knowledgebase






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 14 at 15:51









      0scar

      12.9k31750




      12.9k31750










      asked Mar 14 at 12:58









      TrishTrish

      6,35221241




      6,35221241






















          2 Answers
          2






          active

          oldest

          votes


















          8












          $begingroup$

          What is TRP and how does it work?



          Thermal runaway protection is basically self-explaining; it is protection against the temperature getting out of control. Essentially, the firmware checks whether the measured output of the thermistor (What is a thermistor? A thermistor is basically a temperature sensor; it is an electrical component (more specific: a resistor) that has a large reduction of its resistance when heated; it is frequently used for measurement and control as you can link the resistance to the temperature via a table or a curve) is within an expected range for a certain target value within a certain timeframe when heating the hotend or the heated bed.



          E.g. When you request the hotend or heated bed to a certain temperature, the heater elements are being scheduled/switched on to increase the temperature. If the temperature increase as a result of scheduling the hotend or heated bed are not met in time (settings in the firmware configuration), the printer will halt and heating of the heater elements will stop. The printer needs to be reset after such a failure.



          What triggers TRP?



          Common problems that trigger the thermal runaway protection are:




          • a faulty thermistor,

          • an incorrectly placed thermistor (e.g. not making good enough contact with the heater block),


            • including falling out



          • a loose heater cartridge,


            • including falling out



          • faulty connectors,

          • faulty or partially broken wires,

          • basically, anything that interrupts either heating or the measurement of the signal.


          Why should TRP be active?



          Thermal runaway protection is mainly meant to prevent fire hazards by stopping the heater cartridge when it might have fallen out of the heater block and is trying to set the whole surroundings on fire.



          To illustrate the point: This happens if Thermal Runaway Protection is disabled, and the associated story. Luckily this one did not result in a loss of life and home, but it could have - and the owner was able to do some forensic examination on what caused the fire.



          Anet A8 that has caught fire



          How to activate TRP in Marlin firmware?



          Please make sure that you have the configuration lines in the Thermal Runaway Protection section (466-485) of your Configuration.h file uncommented (no // in front of the lines starting with #define THERMAL_...).




          //===========================================================================
          //======================== Thermal Runaway Protection =======================
          //===========================================================================

          /**
          * Thermal Protection provides additional protection to your printer from damage
          * and fire. Marlin always includes safe min and max temperature ranges which
          * protect against a broken or disconnected thermistor wire.
          *
          * The issue: If a thermistor falls out, it will report the much lower
          * temperature of the air in the room, and the the firmware will keep
          * the heater on.
          *
          * If you get "Thermal Runaway" or "Heating failed" errors the
          * details can be tuned in Configuration_adv.h
          */

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


          This should generally be enough to enable TRP on your printer, fine tuning can be done by changing the time constant and the temperature increase in the file Configuration_adv.h in the section:




          //===========================================================================
          //=============================Thermal Settings ============================
          //===========================================================================


          However, it is advised to not change these values unless you are absolutely certain; e.g. if your heating cartridge is not powerful enough and you are getting printer halts. When getting false-positive printer halts according to the Marlin firmware you could:




          * If you get false positives for "Thermal Runaway", increase

          * THERMAL_PROTECTION_HYSTERESIS and/or THERMAL_PROTECTION_PERIOD



          How to test if TRP is active on my printer?



          To test if thermal runaway protection is enabled on your printer, you can disconnect the heater element of the hotend or the heated bed while printing a print or sending temperature commands to the printer over USB using a terminal to send commands directly to the printer. You can disconnect the heater element while the printer is cold (before start) and also when the heater element is heating up. No heating of the nozzle will take place, so after the period defined by the time constant set in the firmware, the printer will halt if thermal runaway protection is enabled. Power down the machine and reconnect the wires, it is not advised to put them back in; when the printer halted, you should power down or reset the printer anyways. If the printer did not halt, power it down as quickly as possible.



          Further Considerations



          Besides activating thermal runaway protection, it is always a good idea to install a smoke detector and a fire extinguisher in the surroundings of the 3D printer: the smoke detector over it, the extinguisher within arms reach of the door leading to the room.






          share|improve this answer











          $endgroup$









          • 2




            $begingroup$
            A common special case of "incorrectly placed thermistor" is when it literally falls out of the hole in the heater block....
            $endgroup$
            – TextGeek
            Mar 14 at 13:58






          • 2




            $begingroup$
            @TextGeek that, of the heater cartridge.
            $endgroup$
            – Trish
            Mar 14 at 14:16










          • $begingroup$
            Your first paragraph is wrong. Checking whether the reported temperature is within range is handled by the "over-temperature" and "under-temperature" checks. TRP is about making sure the temperature is doing the right thing: specifically, that if electricity is being applied to the heating element, the temperature is going up. If the temperature isn't increasing, it might mean that the heating element is broken, but more often, it means the temperature sensor isn't reporting what the heating element is doing.
            $endgroup$
            – Mark
            Mar 14 at 22:28












          • $begingroup$
            @Mark No it is not, I'm not referring to min and max temperature, but the measured temperature is checked to fall in the expected range for a certain target value within a period of time. I'll make it more clear.
            $endgroup$
            – 0scar
            Mar 14 at 23:07












          • $begingroup$
            @Mark a broken heat element (just like thermosensor) should always trigger TRP (as in the "I can't reach temperature, I would power so much into it it might cause a fire, so I stop! or "I heat up way too hot, that thing must be defective, so I stop before I set it on fire!)
            $endgroup$
            – Trish
            Mar 16 at 15:16





















          2












          $begingroup$

          What is Thermal Runaway?



          Let's look at a Thermal Runaway Test (#2) performed by some Chris Bate.



          In this video the experimenter drove the heating element non-stop until disaster. The Nichrome wire in the heating element melts at about 1,400 °C. Only once it melts the circuit will break and the current will stop. The aluminum heating block however, melts at 660.3 °C, far before that is reached.



          Thermal Runaway Protection



          Thermal runaway protection is a piece of code in the firmware of the printer that checks to make sure that once power is being applied to the heater, the thermistor's resistance is changing within a specified frame (time and amount). This is the basic form of a control loop.



          If the control system is implemented mechanically then it is called a thermostat, usually via a bimetal strip.






          share|improve this answer











          $endgroup$













          • $begingroup$
            A good basic primer. You might enhance the answer a little by providing how TRP can be activated - iirc it is just flipping the correct bit.
            $endgroup$
            – Trish
            Mar 14 at 14:31











          Your Answer





          StackExchange.ifUsing("editor", function () {
          return StackExchange.using("mathjaxEditing", function () {
          StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix) {
          StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
          });
          });
          }, "mathjax-editing");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "640"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: false,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          noCode: true, onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2f3dprinting.stackexchange.com%2fquestions%2f8466%2fwhat-is-thermal-runaway-protection%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          2 Answers
          2






          active

          oldest

          votes








          2 Answers
          2






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          8












          $begingroup$

          What is TRP and how does it work?



          Thermal runaway protection is basically self-explaining; it is protection against the temperature getting out of control. Essentially, the firmware checks whether the measured output of the thermistor (What is a thermistor? A thermistor is basically a temperature sensor; it is an electrical component (more specific: a resistor) that has a large reduction of its resistance when heated; it is frequently used for measurement and control as you can link the resistance to the temperature via a table or a curve) is within an expected range for a certain target value within a certain timeframe when heating the hotend or the heated bed.



          E.g. When you request the hotend or heated bed to a certain temperature, the heater elements are being scheduled/switched on to increase the temperature. If the temperature increase as a result of scheduling the hotend or heated bed are not met in time (settings in the firmware configuration), the printer will halt and heating of the heater elements will stop. The printer needs to be reset after such a failure.



          What triggers TRP?



          Common problems that trigger the thermal runaway protection are:




          • a faulty thermistor,

          • an incorrectly placed thermistor (e.g. not making good enough contact with the heater block),


            • including falling out



          • a loose heater cartridge,


            • including falling out



          • faulty connectors,

          • faulty or partially broken wires,

          • basically, anything that interrupts either heating or the measurement of the signal.


          Why should TRP be active?



          Thermal runaway protection is mainly meant to prevent fire hazards by stopping the heater cartridge when it might have fallen out of the heater block and is trying to set the whole surroundings on fire.



          To illustrate the point: This happens if Thermal Runaway Protection is disabled, and the associated story. Luckily this one did not result in a loss of life and home, but it could have - and the owner was able to do some forensic examination on what caused the fire.



          Anet A8 that has caught fire



          How to activate TRP in Marlin firmware?



          Please make sure that you have the configuration lines in the Thermal Runaway Protection section (466-485) of your Configuration.h file uncommented (no // in front of the lines starting with #define THERMAL_...).




          //===========================================================================
          //======================== Thermal Runaway Protection =======================
          //===========================================================================

          /**
          * Thermal Protection provides additional protection to your printer from damage
          * and fire. Marlin always includes safe min and max temperature ranges which
          * protect against a broken or disconnected thermistor wire.
          *
          * The issue: If a thermistor falls out, it will report the much lower
          * temperature of the air in the room, and the the firmware will keep
          * the heater on.
          *
          * If you get "Thermal Runaway" or "Heating failed" errors the
          * details can be tuned in Configuration_adv.h
          */

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


          This should generally be enough to enable TRP on your printer, fine tuning can be done by changing the time constant and the temperature increase in the file Configuration_adv.h in the section:




          //===========================================================================
          //=============================Thermal Settings ============================
          //===========================================================================


          However, it is advised to not change these values unless you are absolutely certain; e.g. if your heating cartridge is not powerful enough and you are getting printer halts. When getting false-positive printer halts according to the Marlin firmware you could:




          * If you get false positives for "Thermal Runaway", increase

          * THERMAL_PROTECTION_HYSTERESIS and/or THERMAL_PROTECTION_PERIOD



          How to test if TRP is active on my printer?



          To test if thermal runaway protection is enabled on your printer, you can disconnect the heater element of the hotend or the heated bed while printing a print or sending temperature commands to the printer over USB using a terminal to send commands directly to the printer. You can disconnect the heater element while the printer is cold (before start) and also when the heater element is heating up. No heating of the nozzle will take place, so after the period defined by the time constant set in the firmware, the printer will halt if thermal runaway protection is enabled. Power down the machine and reconnect the wires, it is not advised to put them back in; when the printer halted, you should power down or reset the printer anyways. If the printer did not halt, power it down as quickly as possible.



          Further Considerations



          Besides activating thermal runaway protection, it is always a good idea to install a smoke detector and a fire extinguisher in the surroundings of the 3D printer: the smoke detector over it, the extinguisher within arms reach of the door leading to the room.






          share|improve this answer











          $endgroup$









          • 2




            $begingroup$
            A common special case of "incorrectly placed thermistor" is when it literally falls out of the hole in the heater block....
            $endgroup$
            – TextGeek
            Mar 14 at 13:58






          • 2




            $begingroup$
            @TextGeek that, of the heater cartridge.
            $endgroup$
            – Trish
            Mar 14 at 14:16










          • $begingroup$
            Your first paragraph is wrong. Checking whether the reported temperature is within range is handled by the "over-temperature" and "under-temperature" checks. TRP is about making sure the temperature is doing the right thing: specifically, that if electricity is being applied to the heating element, the temperature is going up. If the temperature isn't increasing, it might mean that the heating element is broken, but more often, it means the temperature sensor isn't reporting what the heating element is doing.
            $endgroup$
            – Mark
            Mar 14 at 22:28












          • $begingroup$
            @Mark No it is not, I'm not referring to min and max temperature, but the measured temperature is checked to fall in the expected range for a certain target value within a period of time. I'll make it more clear.
            $endgroup$
            – 0scar
            Mar 14 at 23:07












          • $begingroup$
            @Mark a broken heat element (just like thermosensor) should always trigger TRP (as in the "I can't reach temperature, I would power so much into it it might cause a fire, so I stop! or "I heat up way too hot, that thing must be defective, so I stop before I set it on fire!)
            $endgroup$
            – Trish
            Mar 16 at 15:16


















          8












          $begingroup$

          What is TRP and how does it work?



          Thermal runaway protection is basically self-explaining; it is protection against the temperature getting out of control. Essentially, the firmware checks whether the measured output of the thermistor (What is a thermistor? A thermistor is basically a temperature sensor; it is an electrical component (more specific: a resistor) that has a large reduction of its resistance when heated; it is frequently used for measurement and control as you can link the resistance to the temperature via a table or a curve) is within an expected range for a certain target value within a certain timeframe when heating the hotend or the heated bed.



          E.g. When you request the hotend or heated bed to a certain temperature, the heater elements are being scheduled/switched on to increase the temperature. If the temperature increase as a result of scheduling the hotend or heated bed are not met in time (settings in the firmware configuration), the printer will halt and heating of the heater elements will stop. The printer needs to be reset after such a failure.



          What triggers TRP?



          Common problems that trigger the thermal runaway protection are:




          • a faulty thermistor,

          • an incorrectly placed thermistor (e.g. not making good enough contact with the heater block),


            • including falling out



          • a loose heater cartridge,


            • including falling out



          • faulty connectors,

          • faulty or partially broken wires,

          • basically, anything that interrupts either heating or the measurement of the signal.


          Why should TRP be active?



          Thermal runaway protection is mainly meant to prevent fire hazards by stopping the heater cartridge when it might have fallen out of the heater block and is trying to set the whole surroundings on fire.



          To illustrate the point: This happens if Thermal Runaway Protection is disabled, and the associated story. Luckily this one did not result in a loss of life and home, but it could have - and the owner was able to do some forensic examination on what caused the fire.



          Anet A8 that has caught fire



          How to activate TRP in Marlin firmware?



          Please make sure that you have the configuration lines in the Thermal Runaway Protection section (466-485) of your Configuration.h file uncommented (no // in front of the lines starting with #define THERMAL_...).




          //===========================================================================
          //======================== Thermal Runaway Protection =======================
          //===========================================================================

          /**
          * Thermal Protection provides additional protection to your printer from damage
          * and fire. Marlin always includes safe min and max temperature ranges which
          * protect against a broken or disconnected thermistor wire.
          *
          * The issue: If a thermistor falls out, it will report the much lower
          * temperature of the air in the room, and the the firmware will keep
          * the heater on.
          *
          * If you get "Thermal Runaway" or "Heating failed" errors the
          * details can be tuned in Configuration_adv.h
          */

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


          This should generally be enough to enable TRP on your printer, fine tuning can be done by changing the time constant and the temperature increase in the file Configuration_adv.h in the section:




          //===========================================================================
          //=============================Thermal Settings ============================
          //===========================================================================


          However, it is advised to not change these values unless you are absolutely certain; e.g. if your heating cartridge is not powerful enough and you are getting printer halts. When getting false-positive printer halts according to the Marlin firmware you could:




          * If you get false positives for "Thermal Runaway", increase

          * THERMAL_PROTECTION_HYSTERESIS and/or THERMAL_PROTECTION_PERIOD



          How to test if TRP is active on my printer?



          To test if thermal runaway protection is enabled on your printer, you can disconnect the heater element of the hotend or the heated bed while printing a print or sending temperature commands to the printer over USB using a terminal to send commands directly to the printer. You can disconnect the heater element while the printer is cold (before start) and also when the heater element is heating up. No heating of the nozzle will take place, so after the period defined by the time constant set in the firmware, the printer will halt if thermal runaway protection is enabled. Power down the machine and reconnect the wires, it is not advised to put them back in; when the printer halted, you should power down or reset the printer anyways. If the printer did not halt, power it down as quickly as possible.



          Further Considerations



          Besides activating thermal runaway protection, it is always a good idea to install a smoke detector and a fire extinguisher in the surroundings of the 3D printer: the smoke detector over it, the extinguisher within arms reach of the door leading to the room.






          share|improve this answer











          $endgroup$









          • 2




            $begingroup$
            A common special case of "incorrectly placed thermistor" is when it literally falls out of the hole in the heater block....
            $endgroup$
            – TextGeek
            Mar 14 at 13:58






          • 2




            $begingroup$
            @TextGeek that, of the heater cartridge.
            $endgroup$
            – Trish
            Mar 14 at 14:16










          • $begingroup$
            Your first paragraph is wrong. Checking whether the reported temperature is within range is handled by the "over-temperature" and "under-temperature" checks. TRP is about making sure the temperature is doing the right thing: specifically, that if electricity is being applied to the heating element, the temperature is going up. If the temperature isn't increasing, it might mean that the heating element is broken, but more often, it means the temperature sensor isn't reporting what the heating element is doing.
            $endgroup$
            – Mark
            Mar 14 at 22:28












          • $begingroup$
            @Mark No it is not, I'm not referring to min and max temperature, but the measured temperature is checked to fall in the expected range for a certain target value within a period of time. I'll make it more clear.
            $endgroup$
            – 0scar
            Mar 14 at 23:07












          • $begingroup$
            @Mark a broken heat element (just like thermosensor) should always trigger TRP (as in the "I can't reach temperature, I would power so much into it it might cause a fire, so I stop! or "I heat up way too hot, that thing must be defective, so I stop before I set it on fire!)
            $endgroup$
            – Trish
            Mar 16 at 15:16
















          8












          8








          8





          $begingroup$

          What is TRP and how does it work?



          Thermal runaway protection is basically self-explaining; it is protection against the temperature getting out of control. Essentially, the firmware checks whether the measured output of the thermistor (What is a thermistor? A thermistor is basically a temperature sensor; it is an electrical component (more specific: a resistor) that has a large reduction of its resistance when heated; it is frequently used for measurement and control as you can link the resistance to the temperature via a table or a curve) is within an expected range for a certain target value within a certain timeframe when heating the hotend or the heated bed.



          E.g. When you request the hotend or heated bed to a certain temperature, the heater elements are being scheduled/switched on to increase the temperature. If the temperature increase as a result of scheduling the hotend or heated bed are not met in time (settings in the firmware configuration), the printer will halt and heating of the heater elements will stop. The printer needs to be reset after such a failure.



          What triggers TRP?



          Common problems that trigger the thermal runaway protection are:




          • a faulty thermistor,

          • an incorrectly placed thermistor (e.g. not making good enough contact with the heater block),


            • including falling out



          • a loose heater cartridge,


            • including falling out



          • faulty connectors,

          • faulty or partially broken wires,

          • basically, anything that interrupts either heating or the measurement of the signal.


          Why should TRP be active?



          Thermal runaway protection is mainly meant to prevent fire hazards by stopping the heater cartridge when it might have fallen out of the heater block and is trying to set the whole surroundings on fire.



          To illustrate the point: This happens if Thermal Runaway Protection is disabled, and the associated story. Luckily this one did not result in a loss of life and home, but it could have - and the owner was able to do some forensic examination on what caused the fire.



          Anet A8 that has caught fire



          How to activate TRP in Marlin firmware?



          Please make sure that you have the configuration lines in the Thermal Runaway Protection section (466-485) of your Configuration.h file uncommented (no // in front of the lines starting with #define THERMAL_...).




          //===========================================================================
          //======================== Thermal Runaway Protection =======================
          //===========================================================================

          /**
          * Thermal Protection provides additional protection to your printer from damage
          * and fire. Marlin always includes safe min and max temperature ranges which
          * protect against a broken or disconnected thermistor wire.
          *
          * The issue: If a thermistor falls out, it will report the much lower
          * temperature of the air in the room, and the the firmware will keep
          * the heater on.
          *
          * If you get "Thermal Runaway" or "Heating failed" errors the
          * details can be tuned in Configuration_adv.h
          */

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


          This should generally be enough to enable TRP on your printer, fine tuning can be done by changing the time constant and the temperature increase in the file Configuration_adv.h in the section:




          //===========================================================================
          //=============================Thermal Settings ============================
          //===========================================================================


          However, it is advised to not change these values unless you are absolutely certain; e.g. if your heating cartridge is not powerful enough and you are getting printer halts. When getting false-positive printer halts according to the Marlin firmware you could:




          * If you get false positives for "Thermal Runaway", increase

          * THERMAL_PROTECTION_HYSTERESIS and/or THERMAL_PROTECTION_PERIOD



          How to test if TRP is active on my printer?



          To test if thermal runaway protection is enabled on your printer, you can disconnect the heater element of the hotend or the heated bed while printing a print or sending temperature commands to the printer over USB using a terminal to send commands directly to the printer. You can disconnect the heater element while the printer is cold (before start) and also when the heater element is heating up. No heating of the nozzle will take place, so after the period defined by the time constant set in the firmware, the printer will halt if thermal runaway protection is enabled. Power down the machine and reconnect the wires, it is not advised to put them back in; when the printer halted, you should power down or reset the printer anyways. If the printer did not halt, power it down as quickly as possible.



          Further Considerations



          Besides activating thermal runaway protection, it is always a good idea to install a smoke detector and a fire extinguisher in the surroundings of the 3D printer: the smoke detector over it, the extinguisher within arms reach of the door leading to the room.






          share|improve this answer











          $endgroup$



          What is TRP and how does it work?



          Thermal runaway protection is basically self-explaining; it is protection against the temperature getting out of control. Essentially, the firmware checks whether the measured output of the thermistor (What is a thermistor? A thermistor is basically a temperature sensor; it is an electrical component (more specific: a resistor) that has a large reduction of its resistance when heated; it is frequently used for measurement and control as you can link the resistance to the temperature via a table or a curve) is within an expected range for a certain target value within a certain timeframe when heating the hotend or the heated bed.



          E.g. When you request the hotend or heated bed to a certain temperature, the heater elements are being scheduled/switched on to increase the temperature. If the temperature increase as a result of scheduling the hotend or heated bed are not met in time (settings in the firmware configuration), the printer will halt and heating of the heater elements will stop. The printer needs to be reset after such a failure.



          What triggers TRP?



          Common problems that trigger the thermal runaway protection are:




          • a faulty thermistor,

          • an incorrectly placed thermistor (e.g. not making good enough contact with the heater block),


            • including falling out



          • a loose heater cartridge,


            • including falling out



          • faulty connectors,

          • faulty or partially broken wires,

          • basically, anything that interrupts either heating or the measurement of the signal.


          Why should TRP be active?



          Thermal runaway protection is mainly meant to prevent fire hazards by stopping the heater cartridge when it might have fallen out of the heater block and is trying to set the whole surroundings on fire.



          To illustrate the point: This happens if Thermal Runaway Protection is disabled, and the associated story. Luckily this one did not result in a loss of life and home, but it could have - and the owner was able to do some forensic examination on what caused the fire.



          Anet A8 that has caught fire



          How to activate TRP in Marlin firmware?



          Please make sure that you have the configuration lines in the Thermal Runaway Protection section (466-485) of your Configuration.h file uncommented (no // in front of the lines starting with #define THERMAL_...).




          //===========================================================================
          //======================== Thermal Runaway Protection =======================
          //===========================================================================

          /**
          * Thermal Protection provides additional protection to your printer from damage
          * and fire. Marlin always includes safe min and max temperature ranges which
          * protect against a broken or disconnected thermistor wire.
          *
          * The issue: If a thermistor falls out, it will report the much lower
          * temperature of the air in the room, and the the firmware will keep
          * the heater on.
          *
          * If you get "Thermal Runaway" or "Heating failed" errors the
          * details can be tuned in Configuration_adv.h
          */

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


          This should generally be enough to enable TRP on your printer, fine tuning can be done by changing the time constant and the temperature increase in the file Configuration_adv.h in the section:




          //===========================================================================
          //=============================Thermal Settings ============================
          //===========================================================================


          However, it is advised to not change these values unless you are absolutely certain; e.g. if your heating cartridge is not powerful enough and you are getting printer halts. When getting false-positive printer halts according to the Marlin firmware you could:




          * If you get false positives for "Thermal Runaway", increase

          * THERMAL_PROTECTION_HYSTERESIS and/or THERMAL_PROTECTION_PERIOD



          How to test if TRP is active on my printer?



          To test if thermal runaway protection is enabled on your printer, you can disconnect the heater element of the hotend or the heated bed while printing a print or sending temperature commands to the printer over USB using a terminal to send commands directly to the printer. You can disconnect the heater element while the printer is cold (before start) and also when the heater element is heating up. No heating of the nozzle will take place, so after the period defined by the time constant set in the firmware, the printer will halt if thermal runaway protection is enabled. Power down the machine and reconnect the wires, it is not advised to put them back in; when the printer halted, you should power down or reset the printer anyways. If the printer did not halt, power it down as quickly as possible.



          Further Considerations



          Besides activating thermal runaway protection, it is always a good idea to install a smoke detector and a fire extinguisher in the surroundings of the 3D printer: the smoke detector over it, the extinguisher within arms reach of the door leading to the room.







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Mar 14 at 23:23

























          answered Mar 14 at 13:14









          0scar0scar

          12.9k31750




          12.9k31750








          • 2




            $begingroup$
            A common special case of "incorrectly placed thermistor" is when it literally falls out of the hole in the heater block....
            $endgroup$
            – TextGeek
            Mar 14 at 13:58






          • 2




            $begingroup$
            @TextGeek that, of the heater cartridge.
            $endgroup$
            – Trish
            Mar 14 at 14:16










          • $begingroup$
            Your first paragraph is wrong. Checking whether the reported temperature is within range is handled by the "over-temperature" and "under-temperature" checks. TRP is about making sure the temperature is doing the right thing: specifically, that if electricity is being applied to the heating element, the temperature is going up. If the temperature isn't increasing, it might mean that the heating element is broken, but more often, it means the temperature sensor isn't reporting what the heating element is doing.
            $endgroup$
            – Mark
            Mar 14 at 22:28












          • $begingroup$
            @Mark No it is not, I'm not referring to min and max temperature, but the measured temperature is checked to fall in the expected range for a certain target value within a period of time. I'll make it more clear.
            $endgroup$
            – 0scar
            Mar 14 at 23:07












          • $begingroup$
            @Mark a broken heat element (just like thermosensor) should always trigger TRP (as in the "I can't reach temperature, I would power so much into it it might cause a fire, so I stop! or "I heat up way too hot, that thing must be defective, so I stop before I set it on fire!)
            $endgroup$
            – Trish
            Mar 16 at 15:16
















          • 2




            $begingroup$
            A common special case of "incorrectly placed thermistor" is when it literally falls out of the hole in the heater block....
            $endgroup$
            – TextGeek
            Mar 14 at 13:58






          • 2




            $begingroup$
            @TextGeek that, of the heater cartridge.
            $endgroup$
            – Trish
            Mar 14 at 14:16










          • $begingroup$
            Your first paragraph is wrong. Checking whether the reported temperature is within range is handled by the "over-temperature" and "under-temperature" checks. TRP is about making sure the temperature is doing the right thing: specifically, that if electricity is being applied to the heating element, the temperature is going up. If the temperature isn't increasing, it might mean that the heating element is broken, but more often, it means the temperature sensor isn't reporting what the heating element is doing.
            $endgroup$
            – Mark
            Mar 14 at 22:28












          • $begingroup$
            @Mark No it is not, I'm not referring to min and max temperature, but the measured temperature is checked to fall in the expected range for a certain target value within a period of time. I'll make it more clear.
            $endgroup$
            – 0scar
            Mar 14 at 23:07












          • $begingroup$
            @Mark a broken heat element (just like thermosensor) should always trigger TRP (as in the "I can't reach temperature, I would power so much into it it might cause a fire, so I stop! or "I heat up way too hot, that thing must be defective, so I stop before I set it on fire!)
            $endgroup$
            – Trish
            Mar 16 at 15:16










          2




          2




          $begingroup$
          A common special case of "incorrectly placed thermistor" is when it literally falls out of the hole in the heater block....
          $endgroup$
          – TextGeek
          Mar 14 at 13:58




          $begingroup$
          A common special case of "incorrectly placed thermistor" is when it literally falls out of the hole in the heater block....
          $endgroup$
          – TextGeek
          Mar 14 at 13:58




          2




          2




          $begingroup$
          @TextGeek that, of the heater cartridge.
          $endgroup$
          – Trish
          Mar 14 at 14:16




          $begingroup$
          @TextGeek that, of the heater cartridge.
          $endgroup$
          – Trish
          Mar 14 at 14:16












          $begingroup$
          Your first paragraph is wrong. Checking whether the reported temperature is within range is handled by the "over-temperature" and "under-temperature" checks. TRP is about making sure the temperature is doing the right thing: specifically, that if electricity is being applied to the heating element, the temperature is going up. If the temperature isn't increasing, it might mean that the heating element is broken, but more often, it means the temperature sensor isn't reporting what the heating element is doing.
          $endgroup$
          – Mark
          Mar 14 at 22:28






          $begingroup$
          Your first paragraph is wrong. Checking whether the reported temperature is within range is handled by the "over-temperature" and "under-temperature" checks. TRP is about making sure the temperature is doing the right thing: specifically, that if electricity is being applied to the heating element, the temperature is going up. If the temperature isn't increasing, it might mean that the heating element is broken, but more often, it means the temperature sensor isn't reporting what the heating element is doing.
          $endgroup$
          – Mark
          Mar 14 at 22:28














          $begingroup$
          @Mark No it is not, I'm not referring to min and max temperature, but the measured temperature is checked to fall in the expected range for a certain target value within a period of time. I'll make it more clear.
          $endgroup$
          – 0scar
          Mar 14 at 23:07






          $begingroup$
          @Mark No it is not, I'm not referring to min and max temperature, but the measured temperature is checked to fall in the expected range for a certain target value within a period of time. I'll make it more clear.
          $endgroup$
          – 0scar
          Mar 14 at 23:07














          $begingroup$
          @Mark a broken heat element (just like thermosensor) should always trigger TRP (as in the "I can't reach temperature, I would power so much into it it might cause a fire, so I stop! or "I heat up way too hot, that thing must be defective, so I stop before I set it on fire!)
          $endgroup$
          – Trish
          Mar 16 at 15:16






          $begingroup$
          @Mark a broken heat element (just like thermosensor) should always trigger TRP (as in the "I can't reach temperature, I would power so much into it it might cause a fire, so I stop! or "I heat up way too hot, that thing must be defective, so I stop before I set it on fire!)
          $endgroup$
          – Trish
          Mar 16 at 15:16













          2












          $begingroup$

          What is Thermal Runaway?



          Let's look at a Thermal Runaway Test (#2) performed by some Chris Bate.



          In this video the experimenter drove the heating element non-stop until disaster. The Nichrome wire in the heating element melts at about 1,400 °C. Only once it melts the circuit will break and the current will stop. The aluminum heating block however, melts at 660.3 °C, far before that is reached.



          Thermal Runaway Protection



          Thermal runaway protection is a piece of code in the firmware of the printer that checks to make sure that once power is being applied to the heater, the thermistor's resistance is changing within a specified frame (time and amount). This is the basic form of a control loop.



          If the control system is implemented mechanically then it is called a thermostat, usually via a bimetal strip.






          share|improve this answer











          $endgroup$













          • $begingroup$
            A good basic primer. You might enhance the answer a little by providing how TRP can be activated - iirc it is just flipping the correct bit.
            $endgroup$
            – Trish
            Mar 14 at 14:31
















          2












          $begingroup$

          What is Thermal Runaway?



          Let's look at a Thermal Runaway Test (#2) performed by some Chris Bate.



          In this video the experimenter drove the heating element non-stop until disaster. The Nichrome wire in the heating element melts at about 1,400 °C. Only once it melts the circuit will break and the current will stop. The aluminum heating block however, melts at 660.3 °C, far before that is reached.



          Thermal Runaway Protection



          Thermal runaway protection is a piece of code in the firmware of the printer that checks to make sure that once power is being applied to the heater, the thermistor's resistance is changing within a specified frame (time and amount). This is the basic form of a control loop.



          If the control system is implemented mechanically then it is called a thermostat, usually via a bimetal strip.






          share|improve this answer











          $endgroup$













          • $begingroup$
            A good basic primer. You might enhance the answer a little by providing how TRP can be activated - iirc it is just flipping the correct bit.
            $endgroup$
            – Trish
            Mar 14 at 14:31














          2












          2








          2





          $begingroup$

          What is Thermal Runaway?



          Let's look at a Thermal Runaway Test (#2) performed by some Chris Bate.



          In this video the experimenter drove the heating element non-stop until disaster. The Nichrome wire in the heating element melts at about 1,400 °C. Only once it melts the circuit will break and the current will stop. The aluminum heating block however, melts at 660.3 °C, far before that is reached.



          Thermal Runaway Protection



          Thermal runaway protection is a piece of code in the firmware of the printer that checks to make sure that once power is being applied to the heater, the thermistor's resistance is changing within a specified frame (time and amount). This is the basic form of a control loop.



          If the control system is implemented mechanically then it is called a thermostat, usually via a bimetal strip.






          share|improve this answer











          $endgroup$



          What is Thermal Runaway?



          Let's look at a Thermal Runaway Test (#2) performed by some Chris Bate.



          In this video the experimenter drove the heating element non-stop until disaster. The Nichrome wire in the heating element melts at about 1,400 °C. Only once it melts the circuit will break and the current will stop. The aluminum heating block however, melts at 660.3 °C, far before that is reached.



          Thermal Runaway Protection



          Thermal runaway protection is a piece of code in the firmware of the printer that checks to make sure that once power is being applied to the heater, the thermistor's resistance is changing within a specified frame (time and amount). This is the basic form of a control loop.



          If the control system is implemented mechanically then it is called a thermostat, usually via a bimetal strip.







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Mar 14 at 14:29









          Trish

          6,35221241




          6,35221241










          answered Mar 14 at 14:24









          user77232user77232

          3925




          3925












          • $begingroup$
            A good basic primer. You might enhance the answer a little by providing how TRP can be activated - iirc it is just flipping the correct bit.
            $endgroup$
            – Trish
            Mar 14 at 14:31


















          • $begingroup$
            A good basic primer. You might enhance the answer a little by providing how TRP can be activated - iirc it is just flipping the correct bit.
            $endgroup$
            – Trish
            Mar 14 at 14:31
















          $begingroup$
          A good basic primer. You might enhance the answer a little by providing how TRP can be activated - iirc it is just flipping the correct bit.
          $endgroup$
          – Trish
          Mar 14 at 14:31




          $begingroup$
          A good basic primer. You might enhance the answer a little by providing how TRP can be activated - iirc it is just flipping the correct bit.
          $endgroup$
          – Trish
          Mar 14 at 14:31


















          draft saved

          draft discarded




















































          Thanks for contributing an answer to 3D Printing Stack Exchange!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          Use MathJax to format equations. MathJax reference.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2f3dprinting.stackexchange.com%2fquestions%2f8466%2fwhat-is-thermal-runaway-protection%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          is 'sed' thread safeWhat should someone know about using Python scripts in the shell?Nexenta bash script uses...

          How do i solve the “ No module named 'mlxtend' ” issue on Jupyter?

          Pilgersdorf Inhaltsverzeichnis Geografie | Geschichte | Bevölkerungsentwicklung | Politik | Kultur...