Skip to main content

Understanding the K-Factor of Your Nozzle

 As familiar as the subject of water flow may be to some, there are still those that do not have the opportunity to apply it daily. As a result, they may not be as familiar with water flow as those of us who do.  

One comment that I often hear is that fixed and selectable gallonage nozzles are limited to the rating or setting. This is far from true. Any fixed or selectable gallonage nozzle can be under or over-pumped depending on what the desired outcome is.  

Now, obviously you would not want to go to extremes and generate too much nozzle reaction or have too low of a pressure, but there is some wiggle room for deviation from actual flow and pressure ratings. 

Let’s explore this concept a little further. 

What is a Nozzle’s K-Factor or K-Value? 

The flow rating on a fixed or selectable gallonage nozzle is simply how much flow it will deliver at that base nozzle pressure. This flow rating is a minimum, but not to exceed 10% above the flow rating at the rated base nozzle pressure..  

For example, a 150 GPM nozzle can flow anywhere between 150 GPM and 165 GPM at its rated base pressure and be compliant with the NFPA (National Fire Protection Association) 1964 standard. You can figure this out by finding 10% of your nozzle’s flow rating and adding that value to the flow rating. So, for a 150 GPM nozzle: 

  • 10% of 150 = 15 

  • 150 + 15 = 165 

The flow and pressure rating are indicated by what is known as a K-factor or K-value. This value can determine flow at any given pressure or vice versa, pressure at any given flow. This information is illustrated on the flow curve found in the technical support materials for your nozzle.  

Finding the K-Factor of Your Nozzle 

Finding the K-Factor of your nozzle is quite easy. You can use the following formula:  

K = flow/√NP  

In this equation, NP stands for nozzle pressure. 

Let’s work through an example with a 150 at 50 nozzle. 

  • K = 150/√50 

  • K = 150/7.07 

  • K = 21.21 

Now, you can take the K-value of 21.21 and multiply it by the square root of 75 (representing a nozzle pressure of 75). 21.21 * 8.66 = 184 GPM. We get this value by working the formula to solve for flow instead of the K-value. 

  • K = flow/ √NP 

  • 21.21 = flow/ √75 

  • 21.21 = flow/8.66 

  • Flow = 21.21 * 8.66 

  • Flow = 184 

What this shows is that a 150 at 50 nozzle and a 185 at 75 nozzle are essentially the same give or take a few GPM and PSI. If you work the formula for them, you will also find that a 160 at 50 and 200 at 75 nozzle are essentially the same. 

K-Value in the Real World 

Understanding the K-value can help you develop discharge pressures for various flows based on the conditions you face. If two 150 GPM handlines is your standard, you can easily deliver at an almost 25% higher application rate if needed by understanding what your nozzles are capable of and figuring out the required pump discharge pressure for the additional flow and nozzle pressure.  

Keep in mind that over pumping any given nozzle will increase your nozzle reaction. You and your crew should be mindful of this as it increases strain on the firefighter at the nozzle and can increase the risk of injury. 

Wondering how to choose the right nozzle for your crew? Read more about the nozzle selection process in this article

Comments

Popular posts from this blog

Hướng dẫn các bước lập trình trung tâm báo cháy Hochiki HCP 1000 seris

   1. Đèn trạng thái báo động ngõ ra Continuous:  Bật 100% thời gian. Temporal Code : Đèn 0.5s sáng, 0.5s tắt trong 3 lần, tạm ngừng 1.5s. March Cod e:  Đèn 0.5s sáng, 0.5s tắt liên tục. California Code : Đèn 5s sáng, 10s tắt. Two-stage codes: Alert Code:  Đèn 0.5s sáng, 2.75s tắt. General Alarm: Đèn được cài đặt riêng.  2.   Mô tả cài đặt hệ thống, Lập trình TTBC HCP 1000 Cấu hình của  bảng điều khiển  trung tâm báo cháy HCP 1000 được thực hiện bởi sự kết hợp của cấu hình cài đặt công tắc DIP và nhấn nút   ACKNOW-  LEDGE  (nút vàng),  RENERAL ALRM  ( nút đỏ). Có thể truy cập các công tắc DIP cấu hình từ module hiển thị chính sau khi gỡ bỏ vỏ bảo vệ. Các công tắc DIP được dán nhãn CONFIG. 1 đến 8 Hoạt động bình thường của hệ thống bị tạm ngắt  trong khi chế độ cấu hình được kích hoạt. Truy cập chế độ cấu hình bất cứ khi nào công tắc DIP cấu hình được đặt theo các mã được liệt kê trong bên dưới...

Cảm biến MQ2 cảnh báo khói qua điện thoại với ESP8266 và ứng dụng Blynk

1. Chuẩn bị: + NodeMCU ESP8266 + Cảm biến Khói, Gas (MQ-2 Smoke Gas Sensor) + BreadBoard + Jumpers 2. Kết nối: MQ2   <kết nối>  NodeMCU             A0  <--->  A0 GND  <--->  GND VCC  <--->  3.3V 3. Code Blynk: // youtube.com/c/nnchau // Blynk MQ-2 Smoke Detector #include <ESP8266WiFi.h> #include <BlynkSimpleEsp8266.h> #include <SimpleTimer.h> #define BLYNK_PRINT Serial char auth[] = "mã Blynk"; char ssid[] = "tên WiFi"; char pass[] = "mật khẩu WiFi"; SimpleTimer timer; int mq2 = A0; int data = 0; void setup() { Serial.begin(115200); Blynk.begin(auth, ssid, pass); timer.setInterval(1000L, getSendData); } void loop() { timer.run(); Blynk.run(); } void getSendData() { data = analogRead(mq2); Blynk.virtualWrite(V2, data); if (data > 700) { Blynk.notify("Smoke Detected!"); } }

Cảm biến nhiệt độ ẩm DHT11 với ESP8266 và ứng dụng BLYNK

  1. Chuẩn bị:      + NodeMcu ESP8266      + DHT11 Temperature Sensor      + BreadBoard      + Jumpers 2. Kết nối: 3. Code Blynk:   //www.youtube.com/c/nnchau //Cảm biến nhiệt, độ ẩm DHT11 /************************************************************** * App project setup: * Value Display widget attached to V5 * Value Display widget attached to V6 * **************************************************************/ #define BLYNK_PRINT Serial #include <SPI.h> #include <ESP8266WiFi.h> #include <BlynkSimpleEsp8266.h> #include <SimpleTimer.h> #include <DHT.h> // You should get Auth Token in the Blynk App. // Go to the Project Settings (nut icon). char auth[] = ""; //Enter the Auth code which was send by Blink // Your WiFi credentials. // Set password to "" for open networks. char ssid[] = ""; //Enter your WIFI Name char pass[] = ""; //Enter your WIFI Password #define DHTPIN 2 ...