How to Calculate Cd Interest Rate per Month

.freight-calc-container { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; max-width: 800px; margin: 20px auto; padding: 25px; border: 1px solid #e0e0e0; border-radius: 12px; background-color: #ffffff; box-shadow: 0 4px 15px rgba(0,0,0,0.05); } .freight-calc-header { text-align: center; margin-bottom: 30px; } .freight-calc-header h2 { color: #1a237e; margin-bottom: 10px; } .freight-input-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 25px; } .freight-input-group { display: flex; flex-direction: column; } .freight-input-group label { font-weight: 600; margin-bottom: 8px; color: #333; font-size: 14px; } .freight-input-group input { padding: 12px; border: 2px solid #ddd; border-radius: 6px; font-size: 16px; transition: border-color 0.3s; } .freight-input-group input:focus { border-color: #1a237e; outline: none; } .freight-calc-btn { width: 100%; background-color: #1a237e; color: white; border: none; padding: 15px; font-size: 18px; font-weight: bold; border-radius: 6px; cursor: pointer; transition: background 0.3s; margin-bottom: 25px; } .freight-calc-btn:hover { background-color: #283593; } .freight-result-box { padding: 20px; border-radius: 8px; background-color: #f8f9fa; border-left: 5px solid #1a237e; display: none; } .freight-result-box h3 { margin-top: 0; color: #1a237e; } .freight-metric { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #eee; } .freight-metric:last-child { border-bottom: none; } .freight-value { font-weight: bold; color: #d32f2f; font-size: 1.1em; } .freight-article { margin-top: 40px; line-height: 1.6; color: #444; } .freight-article h2, .freight-article h3 { color: #1a237e; } .freight-table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14px; } .freight-table th, .freight-table td { border: 1px solid #ddd; padding: 10px; text-align: left; } .freight-table th { background-color: #f1f3f9; } @media (max-width: 600px) { .freight-input-grid { grid-template-columns: 1fr; } }

Freight Class & Density Calculator

Accurately determine your LTL freight class based on shipment density.

Shipment Analysis

Total Cubic Feet: 0.00
Density (lbs/cu ft): 0.00
Estimated Freight Class:

*Estimation based on standard density. Actual NMFC class may vary based on commodity type, stowability, and liability.

Understanding Freight Class and Density

In the world of Less-Than-Truckload (LTL) shipping, the National Motor Freight Classification (NMFC) system is the standard used to categorize commodities. Freight class is a numerical value ranging from 50 to 500 that helps carriers determine shipping rates. While there are four primary factors (Density, Stowability, Handling, and Liability), Density is often the most critical factor for freight that doesn't have a fixed NMFC code.

How Freight Density is Calculated

To calculate density, you must determine the total cubic feet of your shipment. The formula used by our calculator is:

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

Freight Class Density Table

Density (lbs per cubic foot) Freight Class Typical Commodity Examples
Over 5050Bricks, cement, steel nuts/bolts
35 to 5055Bricks, floor tiling, hardwood flooring
30 to 3560Car parts, ceramic tiles, beverages
22.5 to 3065Books, bottled water, boxed paper
15 to 22.570Auto engines, machinery, food items
13.5 to 1577.5Tires, bathroom fixtures, snowmobiles
12 to 13.585Crated machinery, cast iron stoves
10.5 to 1292.5Computers, monitors, refrigerators
9 to 10.5100Boat covers, wine cases, kayak kits
8 to 9110Cabinets, table saws, framed artwork
7 to 8125Small appliances, aircraft parts
6 to 7150Unassembled furniture, plastics
5 to 6175Clothing, couches, finished furniture
4 to 5200Boxed furniture, mattresses
3 to 4250Plasma TVs, bamboo furniture
2 to 3300Model airplanes, wood carvings
1 to 2400Deer antlers, light fixtures
Less than 1500Ping pong balls, bags of gold dust

Real-World Example Calculation

Imagine you are shipping a standard pallet of boxed electronics. The dimensions are 48″L x 40″W x 45″H and the total weight is 450 lbs.

  • Volume: (48 x 40 x 45) / 1728 = 50 cubic feet.
  • Density: 450 lbs / 50 cubic feet = 9 lbs per cubic foot.
  • Freight Class: Referring to the table, a density of 9 pcf falls into Class 110.

Why Freight Class Accuracy Matters

Providing an incorrect freight class on your Bill of Lading (BOL) can lead to Re-weigh and Re-classification fees. Carriers use dimensioning machines at hubs to verify every shipment. If your density doesn't match the class provided, the carrier will adjust the invoice, often adding a significant administrative fee on top of the rate difference.

function calculateFreightClass() { var l = parseFloat(document.getElementById("f_length").value); var w = parseFloat(document.getElementById("f_width").value); var h = parseFloat(document.getElementById("f_height").value); var weight = parseFloat(document.getElementById("f_weight").value); var qty = parseInt(document.getElementById("f_quantity").value); if (isNaN(l) || isNaN(w) || isNaN(h) || isNaN(weight) || l <= 0 || w <= 0 || h <= 0 || weight <= 0) { alert("Please enter valid positive numbers for dimensions and weight."); return; } if (isNaN(qty) || qty = 50) { freightClass = "50"; } else if (density >= 35) { freightClass = "55"; } else if (density >= 30) { freightClass = "60"; } else if (density >= 22.5) { freightClass = "65"; } else if (density >= 15) { freightClass = "70"; } else if (density >= 13.5) { freightClass = "77.5"; } else if (density >= 12) { freightClass = "85"; } else if (density >= 10.5) { freightClass = "92.5"; } else if (density >= 9) { freightClass = "100"; } else if (density >= 8) { freightClass = "110"; } else if (density >= 7) { freightClass = "125"; } else if (density >= 6) { freightClass = "150"; } else if (density >= 5) { freightClass = "175"; } else if (density >= 4) { freightClass = "200"; } else if (density >= 3) { freightClass = "250"; } else if (density >= 2) { freightClass = "300"; } else if (density >= 1) { freightClass = "400"; } else { freightClass = "500"; } document.getElementById("res_cubic_ft").innerText = totalCubicFeet.toFixed(2) + " ft³"; document.getElementById("res_density").innerText = density.toFixed(2) + " pcf"; document.getElementById("res_class").innerText = "Class " + freightClass; document.getElementById("freightResult").style.display = "block"; }

Leave a Comment