Weight Distribution Calculator - Ford-Trucks.com

Weight Distribution Calculator

[insert_php]
//===============================================
//—————————————-
//percent of weight on wheels = weight on wheels / overweight x 100
if($_POST[‘a’] == “wwp”)
{
$wwp_weight_on_wheels = $_POST[‘wwp_weight_on_wheels’];
$wwp_overall_weight = $_POST[‘wwp_overall_weight’];
$wwp_errors = 0;
if($_POST[‘wwp_weight_on_wheels’] == “”) {$wwp_errors++;}
else { if(!is_numeric($_POST[‘wwp_weight_on_wheels’])) {$wwp_errors++;} }

if($_POST[‘wwp_overall_weight’] == “”) {$wwp_errors++;}
else { if(!is_numeric($_POST[‘wwp_overall_weight’])) {$wwp_errors++;} }

if($wwp_errors != 0) {$wwp_error_msg = “Please enter proper values!”;}
else
{
$total_wheel_weight_percentage = $_POST[‘wwp_weight_on_wheels’] / $_POST[‘wwp_overall_weight’] * 100;
$view_total_wheel_weight_percentage = ”   Wheel Weight Percentage = “.$total_wheel_weight_percentage.”%”;
}
}
//—————————————-
//increased weight on wheels = [ distance of cg from wheels / wheelbase x weight ] + weight
if($_POST[‘a’] == “iww”)
{
$iww_distance = $_POST[‘iww_distance’];
$iww_weight = $_POST[‘iww_weight’];
$iww_wheelbase = $_POST[‘iww_wheelbase’];
$iww_errors = 0;
if($_POST[‘iww_distance’] == “”) {$iww_errors++;}
else { if(!is_numeric($_POST[‘iww_distance’])) {$iww_errors++;} }

if($_POST[‘iww_weight’] == “”) {$iww_errors++;}
else { if(!is_numeric($_POST[‘iww_weight’])) {$iww_errors++;} }

if($_POST[‘iww_wheelbase’] == “”) {$iww_errors++;}
else { if(!is_numeric($_POST[‘iww_wheelbase’])) {$iww_errors++;} }

if($iww_errors != 0) {$iww_error_msg = “Please enter proper values!”;}
else
{
$total_increased_weight_on_wheels = ($_POST[‘iww_distance’] / $_POST[‘iww_wheelbase’] * $_POST[‘iww_weight’]) + $_POST[‘iww_weight’];
$view_total_increased_weight_on_wheels = ”   Increased Weight on Wheels = “.$total_increased_weight_on_wheels;
}
}
//===============================================
$content = ‘



Wheel Weight Percentage Calculators
$wwp_error_msg
Weight on Wheels:
Overall Weight:
$view_total_wheel_weight_percentage



Increased Weight on Wheels Calculators
$iww_error_msg
Distance of cg from Wheels:
Weight:
Wheelbase:
$view_total_increased_weight_on_wheels

 

‘;

$content = addslashes($content);
$content = “\$result=\””.$content.”\”;”;
eval($content);
print stripslashes($result);
[/insert_php]

How to Guides

Top 10 Fords at 2026 Carlisle Ford Nationals
Slideshow: Top 10 Fords at 2026 Ford Nationals
Read It
3 Best / 3 Worst Parts of Modern Ford Ownership
Based on years of owning multiple modern Ford products.
Read It
10 Amazing Upgrades That Solve Common Ford Truck Owner Headaches
SPONSORED: From muddy boots to rain-soaked cargo, these upgrades address some of the most common frustrations Ford truck owners face every day.
Read It
Every 2026 Ford Engine Explained
Here's everything you need to know about every Ford engine available for the 2026 model year.
Read It

All times are GMT -5. The time now is 02:01 PM.