How Do You Calculate Salary Increase Percentage

Freight Density & Class Calculator

Estimate LTL Freight Class based on Shipment Density

Calculated Density: 0 PCF

Class

Estimated NMFC Class based on standard density guidelines.

How Freight Class is Calculated

Freight class is a standardized pricing classification established by the National Motor Freight Traffic Association (NMFTA). It ensures that consumers have a uniform pricing structure when shipping different types of goods. The primary factor in determining freight class is density.

The Density Formula

Density is measured in pounds per cubic foot (PCF). To calculate it:

  1. Multiply Length x Width x Height in inches to get total cubic inches.
  2. Divide the total cubic inches by 1,728 to convert to cubic feet.
  3. Divide the total weight of the shipment by the cubic feet.

Example Calculation

If you have a standard pallet that is 48″L x 40″W x 48″H and weighs 500 lbs:

  • Volume = (48 x 40 x 48) = 92,160 cubic inches
  • Cubic Feet = 92,160 / 1,728 = 53.33 cubic feet
  • Density = 500 lbs / 53.33 cu ft = 9.37 PCF
  • Resulting Class: Class 92.5

Why Freight Class Matters

Lower freight classes (like Class 50 or 60) are for very dense, sturdy items that are difficult to damage and easy to handle. Higher classes (like Class 400 or 500) are for items that are very light relative to their size (like ping pong balls) or extremely fragile. Generally, the lower the freight class, the lower the shipping cost per hundred pounds (CWT).

function calculateFreightClass() { var length = parseFloat(document.getElementById('shipmentLength').value); var width = parseFloat(document.getElementById('shipmentWidth').value); var height = parseFloat(document.getElementById('shipmentHeight').value); var weight = parseFloat(document.getElementById('shipmentWeight').value); var resultDiv = document.getElementById('freightResult'); if (isNaN(length) || isNaN(width) || isNaN(height) || isNaN(weight) || length <= 0 || width <= 0 || height <= 0 || weight <= 0) { alert("Please enter valid positive numbers for all fields."); return; } var cubicInches = length * width * height; var cubicFeet = cubicInches / 1728; var density = weight / cubicFeet; var freightClass = ""; // NMFC Density Brackets if (density = 1 && density = 2 && density = 4 && density = 6 && density = 8 && density = 9 && density = 10.5 && density = 12 && density = 13.5 && density = 15 && density = 22.5 && density < 30) { freightClass = "60"; } else { freightClass = "55"; } document.getElementById('densityVal').innerText = density.toFixed(2); document.getElementById('classVal').innerText = freightClass; resultDiv.style.display = "block"; resultDiv.scrollIntoView({ behavior: 'smooth', block: 'nearest' }); }

Leave a Comment