Welcome to Kerala Project Center.

360 Degree Rotating Fire Protection System

360 Degree Rotating Fire Protection System

360 Degree Rotating Fire Protection System project diagram

Large factories and warehouses carry real fire risk, but conventional fixed-pattern sprinklers spray in one direction only, leaving blind spots that a fire in the wrong position can spread through undetected before enough water reaches it.

This project replaces a fixed sprinkler head with a motor-driven rotating head, connected through a gearbox and pivot assembly, that sweeps the water jet through a full 360 degrees. Instead of relying on a static spray pattern, the head continuously (or sensor-triggered) rotates so every angle around the mounting point gets coverage over each rotation cycle, closing the blind spots a fixed sprinkler leaves.

How It Works

  • A DC gear motor or stepper motor drives a worm/spur gearbox connected to the pivot assembly holding the nozzle head.
  • The gearbox reduction lets a small motor rotate the (heavier, water-fed) head steadily and with enough torque to sweep reliably.
  • A rotary union (swivel joint) feeds pressurized water into the rotating head from a fixed supply line without the hose twisting as the head turns.
  • An IR flame/heat sensor can trigger automatic activation — starting rotation and opening a solenoid valve — the moment a fire signature is detected, rather than requiring manual activation.
  • The head sweeps through its full rotation repeatedly while active, so no single angle around the mount goes uncovered for more than one sweep cycle.

Components



DC gear motor or stepper motor
Worm/spur gearbox (rotation drive)
Rotary union / swivel pipe joint
Pivot mount assembly + nozzle head
IR flame/heat sensor (automatic trigger)
Solenoid valve (water on/off)
Relay module + Arduino/microcontroller
Pressurized water supply line


Applications

  • Factories and industrial warehouses
  • Large storage and distribution facilities
  • Server rooms and equipment bays
  • Parking garages and large open indoor spaces

Advantages

  • Eliminates the blind spots left by fixed-pattern sprinklers
  • Sensor-triggered automatic activation reacts faster than manual response
  • Gearbox-driven design retrofits onto existing sprinkler supply lines
  • One rotating head can cover the area several fixed heads would otherwise be needed for

Sample Code — Flame-Triggered Rotation and Valve Control



// Simplified flame-trigger -> rotate + valve control - Arduino
int flameSensor = 2;
int rotationMotor = 5;
int solenoidValveRelay = 7;

void setup() {
  pinMode(flameSensor, INPUT);
  pinMode(rotationMotor, OUTPUT);
  pinMode(solenoidValveRelay, OUTPUT);
  Serial.begin(9600);
}

void loop() {
  bool fireDetected = digitalRead(flameSensor) == HIGH;

  if (fireDetected) {
    digitalWrite(solenoidValveRelay, HIGH); // open water supply
    digitalWrite(rotationMotor, HIGH);      // start 360-degree sweep
    Serial.println("Fire detected - rotating sprinkler activated");
  } else {
    digitalWrite(solenoidValveRelay, LOW);
    digitalWrite(rotationMotor, LOW);
  }
  delay(200);
}


Related Research


Hours

Monday - Saturday: 9:00 AM - 5:00 PM
Sunday: Not Working

Location

2nd Floor, Comptron Arcade, Kallattumukku,
Thiruvananthapuram, Kerala 695012

Book Now

+91 9633118080