0

Heated chambers, especially homebrew ones, might pose a fire risk if the printer inside has a really bad day and its TRP is defective or - oh horror - deactivated. We are dealing with a class A fire if it ever starts to smolder, so water is out. Many other firefighting measures - like an ABC extinguisher might destroy the printer. On a ferry, I saw signs that they had Halon firefighting in the machine room. But that stuff is near unavailable, the more fancy replacements expensive and a typical, pre made deployment system costs thousands.

Is there a way how one might set up a firefighting solution oneselves, using somewhat readily available parts?

Trish
  • 20,169
  • 10
  • 43
  • 92

1 Answers1

1

Firefighting Agent

One Halon alternative is the rather simple and cheap gas CO2. It is neither toxic nor hard to get: "60 liter" water-carbonation bottles are readily available over the counter to create soda water and contain some 200-300 liters CO2

Alternatives are Argon and Nitrogen, but those don't come in these small canisters and dissipate more quickly, but they also need the chamber to be gas-sealed.

Because non-flammable gases act by smothering the flames, it is vital that rooms in which such a gas firefighting system is installed are not rooms in which people are usually, and in case of a workshop, it might be required to disarm the automatic trigger while the door is opened!

Deployment System

Such a soda water machine also would deliver the most crucial parts of a deployment system: the valve. To activate it, a solenoid can be used - once current flows through the solenoid, the valve is pushed open and the CO2 will shoot out into tubing or piping leading into the build chamber.

The gas canister should under no circumstances be inside the build chamber's heated compartment but somewhat close.

Release System

Now we need a way to trigger the solenoid. I propose to use at least some redundancy in construction.

  • Manual Mechanical Override. This can be as simple as a lever that bypasses the solenoid and activates the valve manually. Also useful for functionality tests.
  • Manual Electric Override. Using a 9V block battery and some sort of latching switch/button. The solenoid is directly powered from the "reserve" battery now.
  • Automatic via a microcontroller. Using a small programmable chip, one could use a spare thermosensor inside the chamber to detect temperatures of dangerous levels. As a direct response, it triggers the solenoid to release the gas into the chamber and continue to do so for at least long enough to fully flush the chamber, even as the temperature drops with the injected firefighting agent. It might be best to also trigger an alarm, for example, a repurposed doorbell. If one goes for such a solution, an output of the current chamber temperature could also be integrated, though I strongly discourage from integrating the fire suppression as a part of the printer board!
  • Automatic via a thermal switch. More simple in design, a Normally Open Thermostat Switch could be used instead of a whole microcontroller. Such a switch could use the same power source as a manual electric override switch, and indeed, be mounted parallel to the same switch. The downside of a hard-wired thermostat switch is, that it sets a hardwired maximum chamber temperature. It'd be best to choose a switch with a reset-temperature that is as far from the trigger temperature as possible to ensure that the chamber contains as little O2 as possible. The availability of switch types here dictates the voltage of the system.

What about the chamber heat control?

Once the firefighting system engages, the chamber should no longer get access to fresh air. This could possibly be made by having a different solenoid push a shutter in front of the air intakes and/or by de-powering any chamber cooling fans.

Door Safety

A magnetic switch in the door should cut power to the solenoid, ensuring that only the mechanical manual override can fire the system.

Trish
  • 20,169
  • 10
  • 43
  • 92
  • Why not use the same type of valve as in sprinkler systems, activated by heat with no electronics? – R.. GitHub STOP HELPING ICE Jan 12 '21 at 16:44
  • 1
    @R..GitHubSTOPHELPINGICE because those are crazy expensive, one-use items, require water pressure behind them and are not available - unlike thermostat switches, thermosensors or... a stick of wax for the most simple version of a thermostat switch. – Trish Jan 12 '21 at 16:45
  • Aren't they just wax block under spring tension or similar? – R.. GitHub STOP HELPING ICE Jan 12 '21 at 17:19
  • @R..GitHubSTOPHELPINGICE no, the typical sprinkler is a glass vial filled with alcohol, explodes when heated beyond a point and then the water rushes through as a spring valve opens. They are not made for gas and are not easy to acquire. – Trish Jan 12 '21 at 18:31
  • 1
    @R..GitHubSTOPHELPINGICE another benefit of the electric is, it *shuts down* after the temperature dropped enough, unlike a one-use glass vial. 60 liters of air could displace the whole air in a room - shutting the valve automatically is a safety thing in this case. CO2 comes at a benefit here: it is so much heavier than air, that it keeps a breathable atmosphere above it. – Trish Jan 12 '21 at 19:15
  • 1
    The commonly available CO2 bottles actually contain ~230 L of room-temperature CO2. The "60 liters" refers to the amount of water you can carbonate with one bottle. – Tom van der Zanden Jan 12 '21 at 20:15
  • 1
    Is there any risk of the system freezing shut with solid CO2? – Tom van der Zanden Jan 12 '21 at 20:17
  • CO2 fire extinguishers are traditional for electronics when you don't what to mess them up. They don't conduct electricity or leave a messy residue. When the liquid CO2 expands out of the extinguisher, it causes dry ice crystals that cool the fire. – Perry Webb Jan 12 '21 at 20:20
  • 1
    You probably want a motion sensor in the room to help prevent locking someone in the room to suffocate. Ideally you want one that distinguishes people motion from hardware. – Perry Webb Jan 12 '21 at 20:28
  • 1
    @PerryWebb the setup is not to flood a full room but intended to flood the chamber. Much less room in there, more contained, but a motion sensor might be an idea. – Trish Jan 12 '21 at 21:10
  • Yes, I was thinking of a room filled with nitrogen. The main advantage of a CO2 extinguisher is it is more than a inert gas. It can cool the materials below their flashpoint. Thus, it can extinguish the fire very quickly. – Perry Webb Jan 13 '21 at 14:25