DIY/Gas Stove

From Chorke Wiki
Revision as of 06:06, 1 March 2026 by Shahed (talk | contribs) (Created page with "{|class='wikitable' |valign='top' style='width:50%'| '''The Chamber Setup''' * '''Chamber 1 (Water):''' Acts as a primary filter or bubbler. * '''Chamber 2 (Water + Humidifier):''' Creates water vapor to mix with the fuel. * '''Chamber 3 (Petrol + Humidifier):''' Creates the flammable gasoline mist. * '''Chamber 4 (Water):''' Acts as a Flashback Arrestor. The gas bubbles through water so that if a flame travels back down the pipe, the water stops it from reaching the pet...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

The Chamber Setup

  • Chamber 1 (Water): Acts as a primary filter or bubbler.
  • Chamber 2 (Water + Humidifier): Creates water vapor to mix with the fuel.
  • Chamber 3 (Petrol + Humidifier): Creates the flammable gasoline mist.
  • Chamber 4 (Water): Acts as a Flashback Arrestor. The gas bubbles through water so that if a flame travels back down the pipe, the water stops it from reaching the petrol tank.

Diagram

Digraph

digraph G {
    rankdir=LR;
    node [shape=box, style=filled, fillcolor=lightgrey];

    Inlet [label="Air Inlet",          shape=circle];
    C1    [label="Chamber 1\n(Water Filter)",               fillcolor=lightblue];
    C2    [label="Chamber 2\n(Water + Humidifier)",         fillcolor=lightblue];
    C3    [label="Chamber 3\n(Petrol + Humidifier)",        fillcolor=orange   ];
    C4    [label="Chamber 4\n(Water Seal / Arrestor)",      fillcolor=lightblue];
    Stove [label="Gas Stove / Burner", shape=doubleoctagon, fillcolor=red      ];

    Inlet -> C1    [label="Bottom Feed"     ];
    C1    -> C2    [label="Top to Bottom"   ];
    C2    -> C3    [label="Top to Bottom"   ];
    C3    -> C4    [label="Top to Bottom"   ];
    C4    -> Stove [label="Final Gas Output"];

    {rank=same; C2 C3}
}