Circular Duct Weight Calculator

Circular Duct Weight Calculator

The weight of the circular duct is approximately: ' + weight.toFixed(2) + ' pounds.

'; }); function calculateDuctWeight(diameter, length) { // Assuming the duct is made of galvanized steel with a density of 0.284 lb/in^3 var density = 0.284; // in lb/in^3 var radius = diameter / 2; // in inches var volume = Math.PI * Math.pow(radius, 2) * length; // in cubic inches var weight = volume * density; // in pounds return weight; }
Diameter (inches)Thickness (inches)MaterialWeight per foot (lbs/ft)
60.024Galvanized Steel0.48
80.024Galvanized Steel0.64
100.024Galvanized Steel0.80
120.024Galvanized Steel0.96
140.024Galvanized Steel1.12
160.024Galvanized Steel1.28
180.024Galvanized Steel1.44
200.024Galvanized Steel1.60

Leave a Comment