Accurately calculate your Cessna 182's weight and balance to ensure safe flight operations.
Weight & Balance Inputs
Weight of the aircraft with unusable fuel, full operating fluids, but no crew, passengers, or baggage.
The Center of Gravity (CG) of the aircraft in its empty configuration, typically in inches from the datum.
The most forward allowable Center of Gravity for the aircraft in inches from the datum.
The most aft allowable Center of Gravity for the aircraft in inches from the datum.
Weight of the pilot in lbs.
Moment arm for the pilot (inches from datum).
Weight of the front passenger in lbs.
Moment arm for the front passenger (inches from datum).
Weight of the first rear passenger in lbs.
Moment arm for the first rear passenger (inches from datum).
Weight of the second rear passenger in lbs.
Moment arm for the second rear passenger (inches from datum).
Weight in lbs for baggage compartment 1.
Moment arm for baggage compartment 1 (inches from datum).
Weight in lbs for baggage compartment 2 (if applicable).
Moment arm for baggage compartment 2 (inches from datum).
Enter usable fuel in gallons (Cessna 182 typically has 48 or 62 gallons usable).
Moment arm for fuel tanks (inches from datum). This can vary based on fuel load.
Calculation Results
Total Moment:— inch-lbs
Actual Takeoff Weight:— lbs
Actual Takeoff CG:— inches
Maximum Useful Load:— lbs
—
The weight and balance calculation involves summing the moments (Weight x Arm) of all items, then dividing the total moment by the total weight to find the aircraft's center of gravity (CG).
Weight & Balance Envelope
■ CG Limits | ● Actual CG | ▲ Empty CG
Itemized Weight & Moment Schedule
Item
Weight (lbs)
Arm (inches)
Moment (inch-lbs)
var fuelDensity = 6.0; // lbs per gallon for avgas
function validateInput(id, min, max, isEmptyAllowed) {
var input = document.getElementById(id);
var value = parseFloat(input.value);
var errorElement = document.getElementById(id + "Error");
errorElement.style.display = 'none'; // Hide previous error
if (isNaN(value) || (value === 0 && !isEmptyAllowed)) {
errorElement.innerText = "Please enter a valid number.";
errorElement.style.display = 'block';
return false;
}
if (value max) {
errorElement.innerText = "Value cannot exceed " + max + ".";
errorElement.style.display = 'block';
return false;
}
return true;
}
function clearErrors() {
var inputs = document.querySelectorAll('.loan-calc-container input[type="number"], .loan-calc-container input[type="text"], .loan-calc-container select');
for (var i = 0; i 0) {
actualTakeoffCG = totalMoment / actualTakeoffWeight;
}
// Calculate Max Useful Load (approximate, based on empty weight and typical max gross weight of 2950 lbs for C182)
// NOTE: This is an approximation. The actual Max Useful Load is determined by manufacturer specs and individual aircraft weighing.
var maxGrossWeight = 2950; // Typical Max Gross Weight for Cessna 182
var maxUsefulLoad = maxGrossWeight – emptyWeight;
// Display Results
document.getElementById('totalMoment').innerText = totalMoment.toFixed(2);
document.getElementById('actualTakeoffWeight').innerText = actualTakeoffWeight.toFixed(2);
document.getElementById('actualTakeoffCG').innerText = actualTakeoffCG.toFixed(2);
document.getElementById('maxUsefulLoad').innerText = maxUsefulLoad.toFixed(2);
var mainResultText = "Weight and Balance Status: ";
if (actualTakeoffCG aftCGLimit) {
mainResultText += "Aft CG Limit Exceeded!";
document.getElementById('mainResult').style.color = var(–error-color);
document.getElementById('mainResult').style.borderColor = var(–error-color);
document.getElementById('mainResult').style.backgroundColor = '#f8d7da';
} else if (actualTakeoffWeight > maxGrossWeight) {
mainResultText += "Over Maximum Gross Weight!";
document.getElementById('mainResult').style.color = var(–error-color);
document.getElementById('mainResult').style.borderColor = var(–error-color);
document.getElementById('mainResult').style.backgroundColor = '#f8d7da';
}
else {
mainResultText += "Within Limits";
document.getElementById('mainResult').style.color = var(–success-color);
document.getElementById('mainResult').style.borderColor = var(–success-color);
document.getElementById('mainResult').style.backgroundColor = '#d4edda';
}
document.getElementById('mainResult').innerText = mainResultText;
updateChart(emptyWeightCG, actualTakeoffCG, forwardCGLimit, aftCGLimit);
populateMomentTable(emptyWeight, emptyWeightMoment,
frontSeatPilot, frontSeatPilotMoment,
frontSeatPax, frontSeatPaxMoment,
rearSeatPax1, rearSeatPax1Moment,
rearSeatPax2, rearSeatPax2Moment,
baggage1Weight, baggage1Moment,
baggage2Weight, baggage2Moment,
fuelWeight, fuelMoment);
}
function resetForm() {
document.getElementById('emptyWeight').value = "1600";
document.getElementById('emptyWeightCG').value = "70.5";
document.getElementById('forwardCGStation').value = "69.2";
document.getElementById('aftCGStation').value = "79.0";
document.getElementById('frontSeatPilot').value = "170";
document.getElementById('frontSeatPilotCG').value = "38.0";
document.getElementById('frontSeatPax').value = "160";
document.getElementById('frontSeatPaxCG').value = "38.0";
document.getElementById('rearSeatPax1').value = "150";
document.getElementById('rearSeatPax1CG').value = "48.5";
document.getElementById('rearSeatPax2').value = "140";
document.getElementById('rearSeatPax2CG').value = "48.5";
document.getElementById('baggage1Weight').value = "50";
document.getElementById('baggage1CG').value = "56.0";
document.getElementById('baggage2Weight').value = "0";
document.getElementById('baggage2CG').value = "76.0";
document.getElementById('fuelGallons').value = "48";
document.getElementById('fuelCG').value = "41.0";
clearErrors();
calculateWeightAndBalance(); // Recalculate after reset
}
function copyResults() {
var resultsText = "Cessna 182 Weight & Balance Calculation\n\n";
resultsText += "— Inputs —\n";
resultsText += "Empty Weight: " + document.getElementById('emptyWeight').value + " lbs\n";
resultsText += "Empty Weight CG: " + document.getElementById('emptyWeightCG').value + " inches\n";
resultsText += "Forward CG Limit: " + document.getElementById('forwardCGStation').value + " inches\n";
resultsText += "Aft CG Limit: " + document.getElementById('aftCGStation').value + " inches\n";
resultsText += "Pilot Weight: " + document.getElementById('frontSeatPilot').value + " lbs\n";
resultsText += "Pilot CG: " + document.getElementById('frontSeatPilotCG').value + " inches\n";
resultsText += "Front Passenger Weight: " + document.getElementById('frontSeatPax').value + " lbs\n";
resultsText += "Front Passenger CG: " + document.getElementById('frontSeatPaxCG').value + " inches\n";
resultsText += "Rear Passenger 1 Weight: " + document.getElementById('rearSeatPax1').value + " lbs\n";
resultsText += "Rear Passenger 1 CG: " + document.getElementById('rearSeatPax1CG').value + " inches\n";
resultsText += "Rear Passenger 2 Weight: " + document.getElementById('rearSeatPax2').value + " lbs\n";
resultsText += "Rear Passenger 2 CG: " + document.getElementById('rearSeatPax2CG').value + " inches\n";
resultsText += "Baggage 1 Weight: " + document.getElementById('baggage1Weight').value + " lbs\n";
resultsText += "Baggage 1 CG: " + document.getElementById('baggage1CG').value + " inches\n";
resultsText += "Baggage 2 Weight: " + document.getElementById('baggage2Weight').value + " lbs\n";
resultsText += "Baggage 2 CG: " + document.getElementById('baggage2CG').value + " inches\n";
resultsText += "Fuel (Gallons): " + document.getElementById('fuelGallons').value + "\n";
resultsText += "Fuel CG: " + document.getElementById('fuelCG').value + " inches\n\n";
resultsText += "— Calculated Results —\n";
resultsText += "Total Moment: " + document.getElementById('totalMoment').innerText + " inch-lbs\n";
resultsText += "Actual Takeoff Weight: " + document.getElementById('actualTakeoffWeight').innerText + " lbs\n";
resultsText += "Actual Takeoff CG: " + document.getElementById('actualTakeoffCG').innerText + " inches\n";
resultsText += "Max Useful Load (Approx): " + document.getElementById('maxUsefulLoad').innerText + " lbs\n";
resultsText += "Status: " + document.getElementById('mainResult').innerText + "\n";
resultsText += "\n— Key Assumptions —\n";
resultsText += "Fuel Density: " + fuelDensity + " lbs/gallon\n";
resultsText += "Max Gross Weight: 2950 lbs (Typical for C182)\n";
// Use a temporary textarea to copy text
var textArea = document.createElement("textarea");
textArea.value = resultsText;
textArea.style.position = "fixed";
textArea.style.left = "-9999px";
document.body.appendChild(textArea);
textArea.focus();
textArea.select();
try {
var successful = document.execCommand('copy');
var msg = successful ? 'Results copied!' : 'Copying failed!';
console.log(msg); // Optionally show user feedback
} catch (err) {
console.log('Oops, unable to copy');
}
document.body.removeChild(textArea);
}
function updateChart(emptyCG, actualCG, forwardLimit, aftLimit) {
var ctx = document.getElementById('cgChart').getContext('2d');
// Destroy previous chart instance if it exists
if (window.cgChartInstance) {
window.cgChartInstance.destroy();
}
// Determine dynamic chart y-axis range based on limits and actual CG
var minY = Math.min(emptyCG, forwardLimit, aftLimit) – 5;
var maxY = Math.max(emptyCG, forwardLimit, aftLimit) + 5;
if (minY 0 ? weight.toFixed(1) : '-';
row.insertCell(2).innerText = arm > 0 ? arm.toFixed(1) : '-';
row.insertCell(3).innerText = moment.toFixed(2);
};
addRow("Empty Aircraft", emptyWeight, parseFloat(document.getElementById('emptyWeightCG').value), emptyMoment);
if (parseFloat(document.getElementById('frontSeatPilot').value) > 0)
addRow("Pilot", pilotWeight, parseFloat(document.getElementById('frontSeatPilotCG').value), pilotMoment);
if (parseFloat(document.getElementById('frontSeatPax').value) > 0)
addRow("Front Passenger", paxWeight, parseFloat(document.getElementById('frontSeatPaxCG').value), paxMoment);
if (parseFloat(document.getElementById('rearSeatPax1').value) > 0)
addRow("Rear Passenger 1", rearPax1Weight, parseFloat(document.getElementById('rearSeatPax1CG').value), rearPax1Moment);
if (parseFloat(document.getElementById('rearSeatPax2').value) > 0)
addRow("Rear Passenger 2", rearPax2Weight, parseFloat(document.getElementById('rearSeatPax2CG').value), rearPax2Moment);
if (parseFloat(document.getElementById('baggage1Weight').value) > 0)
addRow("Baggage 1", bag1Weight, parseFloat(document.getElementById('baggage1CG').value), bag1Moment);
if (parseFloat(document.getElementById('baggage2Weight').value) > 0)
addRow("Baggage 2", bag2Weight, parseFloat(document.getElementById('baggage2CG').value), bag2Moment);
if (parseFloat(document.getElementById('fuelGallons').value) > 0)
addRow("Usable Fuel", fuelWeight, parseFloat(document.getElementById('fuelCG').value), fuelMoment);
// Add total row
var totalRow = tableBody.insertRow();
totalRow.style.fontWeight = 'bold';
totalRow.insertCell(0).innerText = "Total";
totalRow.insertCell(1).innerText = parseFloat(document.getElementById('actualTakeoffWeight').innerText).toFixed(2);
totalRow.insertCell(2).innerText = "-";
totalRow.insertCell(3).innerText = parseFloat(document.getElementById('totalMoment').innerText).toFixed(2);
}
// Initialize chart on page load
document.addEventListener('DOMContentLoaded', function() {
// Add Chart.js library dynamically – assuming it's available globally or will be loaded.
// For a self-contained file, you'd typically embed Chart.js or use a different charting method.
// Since native is requested, and Chart.js is common for it, we'll assume its availability.
// If Chart.js is not available, this will fail. A pure SVG or custom canvas drawing would be an alternative.
// For this example, let's assume Chart.js is included in the HTML via a CDN or local file.
// If not, you'd need to add:
// Initial calculation on page load
calculateWeightAndBalance();
document.getElementById('currentYear').innerText = new Date().getFullYear();
// Toggle FAQ answers
var faqQuestions = document.querySelectorAll('.faq-question');
faqQuestions.forEach(function(question) {
question.addEventListener('click', function() {
var answer = this.nextElementSibling;
if (answer.style.display === 'block') {
answer.style.display = 'none';
} else {
answer.style.display = 'block';
}
});
});
});
// Temporary replacement for Chart.js if not available.
// In a real scenario, you'd either include Chart.js or use pure SVG/Canvas API.
// This is a placeholder to make the HTML valid even without Chart.js.
// A REAL implementation would use Chart.js or a similar library for the canvas.
if (typeof Chart === 'undefined') {
console.warn("Chart.js library not found. Chart will not render.");
// You could add fallback drawing logic here using Canvas API if needed.
}
What is Cessna 182 Weight and Balance?
The Cessna 182 weight and balance calculation is a critical process for ensuring the safe and legal operation of this popular single-engine aircraft. It determines whether the aircraft's total weight and the location of its center of gravity (CG) fall within the approved limits specified by the manufacturer. Failing to maintain the aircraft within these parameters can lead to reduced aerodynamic performance, decreased stability, and potentially loss of control. This makes understanding and performing accurate Cessna 182 weight and balance checks non-negotiable for every pilot.
Who should use it?
Any pilot operating a Cessna 182, whether for personal travel, flight training, or commercial purposes, must perform a weight and balance calculation before each flight. This includes student pilots, private pilots, commercial pilots, and Certified Flight Instructors (CFIs). It's also essential for aircraft owners and maintenance personnel during annual inspections or when modifications are made. Accurate Cessna 182 weight and balance is fundamental to flight safety.
Common Misconceptions:
One common misconception is that if the total weight is below the maximum gross weight, the aircraft is automatically within CG limits. This is false; a very light aircraft can still be out of CG limits if the weight is concentrated too far forward or aft. Another misconception is that once an aircraft is weighed, its weight and balance status remains constant. However, changes in paint, installed equipment, or even routine maintenance can alter the aircraft's empty weight and CG, necessitating re-evaluation. Accurate Cessna 182 weight and balance requires attention to detail.
Cessna 182 Weight and Balance Formula and Mathematical Explanation
The core principle of aircraft weight and balance revolves around two key factors: total weight and the location of the center of gravity (CG). The CG is the point where the aircraft would balance if suspended. It's typically expressed in inches from a designated "datum line" – an arbitrary reference point established by the manufacturer.
The fundamental formula used is:
Moment = Weight × Arm
Where:
Weight is the mass of an item or the aircraft itself.
Arm is the horizontal distance from the datum to the item's center of gravity.
Moment is the turning effect of the weight about the datum, measured in pound-inches (lb-in) or inch-pounds (in-lbs).
To determine the aircraft's overall CG, we sum the moments of all individual components (including the empty aircraft, fuel, passengers, and baggage) and then divide by the total weight of all components.
Overall CG = Total Moment / Total Weight
Step-by-step Derivation:
Determine the Aircraft's Empty Weight and Empty Weight CG (EWCG): This is established through a certified weighing of the aircraft and is typically found in the aircraft's Weight and Balance Manual or FAA-approved data.
Calculate the Moment for Each Item: For every item added to the aircraft (pilot, passengers, baggage, fuel), multiply its weight by its respective arm (distance from the datum).
Sum All Moments: Add the moment of the empty aircraft to the moments of all added items (passengers, baggage, fuel). This gives you the Total Moment.
Sum All Weights: Add the empty weight of the aircraft to the weights of all added items. This gives you the Total Takeoff Weight.
Calculate the Actual CG: Divide the Total Moment by the Total Takeoff Weight.
Compare with Limits: Check if the calculated Actual CG falls within the Forward and Aft CG Limits specified for the aircraft. Also, ensure the Total Takeoff Weight does not exceed the Maximum Gross Weight.
Variables Table:
Variable
Meaning
Unit
Typical Range (Cessna 182)
Empty Weight (E.W.)
Weight of the aircraft without occupants, baggage, or usable fuel. Includes fixed equipment.
lbs
1500 – 1750 lbs
Empty Weight CG (EWCG)
Center of Gravity of the aircraft in its empty configuration.
inches from datum
68 – 72 inches
Arm
Horizontal distance from the datum to the CG of an item or the aircraft.
inches
Variable (e.g., 38″ for front seats, 48.5″ for rear, 56″ for baggage)
Moment
Result of multiplying weight by its arm.
lb-in (pound-inches)
Variable (calculated)
Total Moment
Sum of moments of all items in the aircraft.
lb-in
Calculated based on load
Total Weight
Sum of weights of the aircraft, fuel, occupants, and baggage.
lbs
Calculated based on load
Actual CG
The calculated CG of the loaded aircraft.
inches from datum
Calculated based on load
Forward CG Limit
The most forward allowable CG position.
inches from datum
Typically around 69.2 inches
Aft CG Limit
The most aft allowable CG position.
inches from datum
Typically around 79.0 inches
Maximum Gross Weight (MGW)
The maximum allowable takeoff weight.
lbs
Typically 2950 lbs
Fuel Weight
Weight of usable fuel.
lbs
~288 lbs for 48 gallons (avgas)
Practical Examples (Real-World Use Cases)
Example 1: Standard Flight (Pilot + Passenger + Baggage + Full Fuel)
Scenario: A pilot planning a trip with one passenger and some baggage. The aircraft's empty weight is 1600 lbs with an EWCG of 70.5 inches. The CG limits are 69.2″ (forward) and 79.0″ (aft). Maximum gross weight is 2950 lbs.
Actual CG: 139,948 lb-in / 2268 lbs = 61.70 inches
Interpretation: The actual CG of 61.70 inches is well within the forward limit of 69.2 inches and the aft limit of 79.0 inches. The total weight of 2268 lbs is also significantly below the maximum gross weight of 2950 lbs. This configuration is safe.
Example 2: Maximum Load Scenario (Four Adults + Max Baggage + Fuel)
Scenario: A flight with four adults, maximum allowed baggage, and full fuel.
Inputs:
Empty Weight: 1600 lbs
Empty Weight CG: 70.5 inches
Pilot: 180 lbs at 38 inches
Passenger 1 (Front): 170 lbs at 38 inches
Passenger 2 (Rear): 190 lbs at 48.5 inches
Passenger 3 (Rear): 200 lbs at 48.5 inches
Baggage 1: 120 lbs (Max for Baggage 1) at 56 inches
Baggage 2: 70 lbs (Max for Baggage 2) at 76 inches
Actual CG: 168,863 lb-in / 2818 lbs = 59.93 inches
Interpretation: The actual CG of 59.93 inches is significantly forward of the limit (69.2 inches). The total weight of 2818 lbs is below the maximum gross weight of 2950 lbs. While the weight is acceptable, the CG is too far forward. To correct this, weight would need to be shifted aft (e.g., moving baggage to the rearmost possible position if allowable by its own CG limits, or potentially reducing passenger weight if feasible). This highlights how even within weight limits, CG can become a limiting factor.
How to Use This Cessna 182 Weight and Balance Calculator
Using this Cessna 182 weight and balance calculator is straightforward. Follow these steps to ensure your flight is properly balanced:
Enter Aircraft Details: Input your Cessna 182's specific Empty Weight and its corresponding Empty Weight CG. These values are crucial and can be found in your aircraft's Weight and Balance Manual or POH (Pilot's Operating Handbook).
Define CG Limits: Enter the Forward CG Limit and Aft CG Limit for your specific Cessna 182 model. These are also found in the POH.
Input Load Details: Carefully enter the weights and their respective CG arms (distances from the datum) for all items that will be onboard:
Pilot
Passengers (Front and Rear)
Baggage (in the appropriate compartments)
Usable Fuel (in gallons)
Ensure you use the correct CG arm for each item/seat/compartment as per your aircraft's manual.
Click Calculate: Once all inputs are entered, click the "Calculate" button.
How to Read Results:
Total Moment & Actual Takeoff Weight: These are intermediate values showing the combined effect of your load.
Actual Takeoff CG: This is the most critical calculated value. It shows where the aircraft's center of gravity will be at takeoff.
Maximum Useful Load: An approximation based on typical Max Gross Weight, indicating how much weight (passengers, baggage, fuel) your aircraft can carry.
Main Result (Status): This will clearly state if your aircraft is "Within Limits," "Forward CG Limit Exceeded!," "Aft CG Limit Exceeded!," or "Over Maximum Gross Weight!". Look for the colored indicator.
Itemized Table & Chart: Review the table for a breakdown of each item's contribution to the total moment. The chart visually displays your actual CG relative to the aircraft's CG limits.
Decision-Making Guidance:
If the status indicates "Within Limits," your aircraft is balanced correctly for takeoff.
If the status indicates an exceeded limit (Forward or Aft CG, or Max Gross Weight), you MUST adjust the load. This might involve removing weight, shifting baggage, or carrying less fuel. Re-calculate after making changes. Never take off with an out-of-limits weight and balance configuration.
Use the "Copy Results" button to save or share your calculation details.
Use the "Reset Defaults" button to start over with the typical Cessna 182 values.
Key Factors That Affect Cessna 182 Weight and Balance Results
Several factors significantly influence the Cessna 182 weight and balance calculation and the resulting flight safety. Understanding these is crucial for pilots:
Empty Weight and CG Changes: Any modification, repair, or addition of equipment (like avionics upgrades, de-icing boots, or interior changes) permanently alters the aircraft's empty weight and CG. These changes necessitate a re-weighing and updating of the aircraft's Weight and Balance data. Small changes can have cumulative effects.
Passenger and Baggage Loading: The distribution of weight is paramount. Placing heavier items or passengers in forward seats or at the forward edge of baggage compartments will shift the CG forward. Conversely, placing weight aft shifts the CG aft. Even seemingly small amounts of baggage can affect the CG if placed in compartments with arms far from the datum.
Fuel Load: Fuel is a significant consumable weight. As fuel burns off during flight, the total weight decreases, and the CG also shifts. The CG of the fuel itself depends on the tank design and where the fuel is located relative to the datum. In most aircraft, fuel burn causes the CG to move forward as fuel is consumed (if tanks are forward of the CG), or aft (if tanks are aft of the CG). The calculation typically uses *usable* fuel.
Datum Reference Point: The choice of datum by the manufacturer is arbitrary but fixed. All arms are measured from this point. A datum located ahead of the aircraft's nose is common. Understanding the datum's location is key to correctly interpreting arm measurements.
Seat and Baggage Compartment Limitations: Aircraft POHs specify maximum weights for individual seats and baggage compartments, and often define CG range limits *within* those compartments. Exceeding these can be unsafe even if the overall aircraft CG is within limits, due to structural stress or door operation issues.
Aircraft Model Variations: Different Cessna 182 models (e.g., Skylane, Turbo Skylane, RG models) have different empty weights, CG ranges, and maximum gross weights. Always use the data specific to your aircraft's registration and model. Relying on generic data can be dangerous.
Unusable Fuel: While calculations typically use *usable* fuel, pilots must ensure they don't rely on the weight of unusable fuel for balance. In very forward CG situations, taking off with minimum fuel might be necessary, but pilots must remain aware of fuel endurance.
Frequently Asked Questions (FAQ)
What is the datum in a Cessna 182?
The datum is an arbitrary reference point chosen by the manufacturer from which all horizontal distances (arms) are measured. For the Cessna 182, the datum is typically located at a specific point forward of the aircraft's nose, often defined in inches. Always refer to your specific aircraft's POH for the exact datum location.
How often should a Cessna 182 be re-weighed?
A Cessna 182 should be re-weighed and its weight and balance data updated whenever the aircraft's empty weight changes by more than 1% of its maximum gross weight (typically around 30 lbs for a 2950 lb MGW aircraft), or after significant modifications like installing new avionics, major repairs, or changes to fixed equipment. It's also good practice to re-evaluate if there are suspicions about the accuracy of current data.
Can I carry more passengers if I reduce baggage?
Yes, potentially. If you are close to the maximum gross weight or nearing the aft CG limit, reducing baggage weight might allow you to carry heavier passengers or vice-versa, as long as the total weight and CG remain within limits. Always recalculate after making load changes.
What happens if my Cessna 182 is out of CG limits?
Flying an aircraft outside its CG limits is extremely dangerous. It can lead to reduced controllability, decreased maneuverability, and potential loss of control, especially during critical phases of flight like takeoff, landing, or in turbulent conditions. You must adjust the load to bring the CG within limits before flight.
Does the calculator account for unusable fuel?
This calculator uses the weight of *usable* fuel. Unusable fuel is not typically included in weight and balance calculations for takeoff because it cannot be safely consumed or used for balancing. Pilots must ensure their flight plan accounts for endurance based on usable fuel.
What are typical CG arms for different locations in a Cessna 182?
Typical CG arms vary by specific 182 model and modifications. However, common ranges are:
Forward Seats (Pilot/Co-pilot): Around 38 inches
Rear Seats: Around 48.5 inches
Baggage Compartment 1: Around 56 inches
Baggage Compartment 2: Around 76 inches
Fuel Tanks: Often forward, around 41 inches.
Always consult the aircraft's POH or Weight and Balance Manual for exact figures.
Can I use this calculator for other aircraft?
While the *principles* of weight and balance apply to all aircraft, the specific inputs (empty weight, EWCG, CG limits, arm locations, maximum gross weight) are unique to each make and model. This calculator is specifically calibrated for a typical Cessna 182. For other aircraft, you must use a calculator or manual specific to that aircraft type.
What is the difference between Moment and CG?
Moment (Weight x Arm) represents the *turning effect* of a weight about the datum. Center of Gravity (CG) is the calculated point where the aircraft would balance, found by dividing the Total Moment by the Total Weight. CG is expressed as a distance (e.g., inches from datum), while Moment is a value used in the calculation.
These resources can help enhance your aviation knowledge and flight preparation. From flight planning tools to essential safety checks, we aim to provide comprehensive support for pilots.