General Cargo (Dry)
Perishable Goods
Live Animals / Dangerous Goods
Valuable Cargo
Estimated Quotation Details
Actual Weight:0 kg
Volumetric Weight (Divisor 3500):0 kg
Chargeable Weight:0 kg
Base Freight Rate (approx.):₱ 0.00
Fuel Surcharge (~15%):₱ 0.00
Valuation Charge (Insurance):₱ 0.00
AWB / Handling Fee:₱ 0.00
VAT (12%):₱ 0.00
TOTAL ESTIMATED COST:₱ 0.00
* This calculator is for estimation purposes only based on standard domestic air freight computations in the Philippines. Actual Cebu Pacific Cargo rates may vary depending on spot rates, specific AWB fees, and terminal charges. The volumetric divisor used is 3500 (Domestic Standard).
function calculateCargoRate() {
// 1. Get Inputs
var origin = document.getElementById('origin').value;
var destination = document.getElementById('destination').value;
var actualWeight = parseFloat(document.getElementById('actualWeight').value);
var length = parseFloat(document.getElementById('length').value);
var width = parseFloat(document.getElementById('width').value);
var height = parseFloat(document.getElementById('height').value);
var declaredValue = parseFloat(document.getElementById('declaredValue').value);
var commodityMultiplier = parseFloat(document.getElementById('commodity').value);
// 2. Validate Inputs
if (isNaN(actualWeight) || actualWeight <= 0) {
alert("Please enter a valid Actual Weight.");
return;
}
if (isNaN(declaredValue)) {
declaredValue = 0; // Optional, assume 0 if empty
}
// Handle dimensions if empty, assume 0 volume
if (isNaN(length)) length = 0;
if (isNaN(width)) width = 0;
if (isNaN(height)) height = 0;
// 3. Logic: Volumetric Weight
// Domestic PH Air Freight often uses divisor 3500 for cm
var volWeight = (length * width * height) / 3500;
// 4. Logic: Chargeable Weight
var chargeableWeight = Math.max(actualWeight, volWeight);
// Round up to nearest 0.5 or 1 is standard, let's stick to simple math for now, just ceil to nearest 1kg for pricing safety
chargeableWeight = Math.ceil(chargeableWeight);
// 5. Logic: Determine Base Rate (Simulated Matrix)
// In a real scenario, this fetches from an API. Here we simulate typical domestic zones.
var ratePerKg = 0;
// Simple logic for simulation:
// Intra-Visayas/Mindanao or Short Range: ~25-30
// Manila to Vis/Min (Long Range): ~40-60
if ((origin === 'MNL' && (destination === 'CEB' || destination === 'ILO')) ||
(origin === 'CEB' && destination === 'MNL')) {
ratePerKg = 35;
} else if ((origin === 'MNL' && (destination === 'DVO' || destination === 'GES' || destination === 'ZAM')) ||
(destination === 'MNL' && (origin === 'DVO' || origin === 'GES' || origin === 'ZAM'))) {
ratePerKg = 55;
} else if (origin === destination) {
alert("Origin and Destination cannot be the same.");
return;
} else {
// Default inter-island rate
ratePerKg = 45;
}
// Apply Commodity Multiplier (e.g., Perishables are more expensive)
ratePerKg = ratePerKg * commodityMultiplier;
// Calculate Base Freight
var baseFreight = chargeableWeight * ratePerKg;
// Minimum Freight Charge (Standard carrier minimum, e.g., 300 PHP)
if (baseFreight < 300) {
baseFreight = 300;
}
// 6. Logic: Add-ons
// Fuel Surcharge: varies monthly, estimated at 18% of base freight
var fuelSurcharge = baseFreight * 0.18;
// Valuation Charge: usually 0.75% to 1% of declared value, minimum ~20 PHP
var valuationCharge = declaredValue * 0.0075;
if (valuationCharge 0) valuationCharge = 20;
// AWB / Handling Fee (Fixed)
var handlingFee = 150;
// 7. Logic: VAT
// VAT is usually 12% of (Base + Fuel + Handling + Valuation)
var subTotal = baseFreight + fuelSurcharge + valuationCharge + handlingFee;
var vat = subTotal * 0.12;
var totalCost = subTotal + vat;
// 8. Output Display
document.getElementById('resActual').innerText = actualWeight.toFixed(2) + " kg";
document.getElementById('resVolume').innerText = volWeight.toFixed(2) + " kg";
document.getElementById('resChargeable').innerText = chargeableWeight.toFixed(2) + " kg";
document.getElementById('resBaseRate').innerText = "₱ " + baseFreight.toLocaleString('en-PH', {minimumFractionDigits: 2, maximumFractionDigits: 2});
document.getElementById('resFuel').innerText = "₱ " + fuelSurcharge.toLocaleString('en-PH', {minimumFractionDigits: 2, maximumFractionDigits: 2});
document.getElementById('resValuation').innerText = "₱ " + valuationCharge.toLocaleString('en-PH', {minimumFractionDigits: 2, maximumFractionDigits: 2});
document.getElementById('resHandling').innerText = "₱ " + handlingFee.toLocaleString('en-PH', {minimumFractionDigits: 2, maximumFractionDigits: 2});
document.getElementById('resVat').innerText = "₱ " + vat.toLocaleString('en-PH', {minimumFractionDigits: 2, maximumFractionDigits: 2});
document.getElementById('resTotal').innerText = "₱ " + totalCost.toLocaleString('en-PH', {minimumFractionDigits: 2, maximumFractionDigits: 2});
// Show result area
document.getElementById('resultsArea').style.display = "block";
}
Understanding Cebu Pacific Cargo Rates: A Comprehensive Guide
When shipping logistics in the Philippines, Cebu Pacific Cargo (often referred to as CEB Cargo) is a top choice due to its extensive domestic network and frequency of flights. However, calculating the shipping cost is not as simple as multiplying weight by a price tag. Several factors, including volumetric weight, commodity type, and auxiliary fees, play a crucial role in the final quotation.
1. Chargeable Weight vs. Actual Weight
The most critical concept in air freight is determining the Chargeable Weight. Airlines do not simply bill you based on how heavy the package is; they also consider how much space it occupies.
Actual Weight: The gross weight of the cargo as shown on a weighing scale.
Volumetric Weight: A calculation based on dimensions. For domestic air freight in the Philippines, the standard formula is usually (Length x Width x Height in cm) / 3500.
Cebu Pacific, like most carriers, will charge based on whichever is higher between the Actual Weight and the Volumetric Weight.
2. Key Components of the Shipping Cost
Using the estimator above helps you predict the total cost, but understanding the breakdown is essential for budgeting logistics.
Base Freight Rate
This is the cost of transport from airport to airport. It varies depending on the zone (distance between origin and destination) and the commodity. General cargo (dry goods) has the lowest rate, while perishables (seafood, vegetables) or live animals often carry a surcharge or a higher base rate multiplier.
Fuel Surcharge (FSC)
Fuel prices fluctuate globally. To mitigate this, airlines add a Fuel Surcharge, which is a percentage of the Base Freight. This rate changes monthly based on aviation fuel indices.
Valuation Charge
This acts as a basic insurance fee. It is calculated based on the Declared Value of your goods. If your cargo is lost or damaged, the airline's liability is often limited unless a higher value is declared and the corresponding valuation charge is paid.
Value Added Tax (VAT)
In the Philippines, a 12% VAT is applicable to the total shipping charges, including the base rate, fuel surcharge, and handling fees.
3. Tips for Lowering Your Cargo Rates
If you are a frequent shipper with Cebu Pacific, consider these tips to optimize your costs:
Pack tightly: Since volumetric weight can increase your costs significantly, minimize empty space in your boxes.
Consolidate shipments: Most airlines have a minimum charge (e.g., minimum 10kg or a fixed peso amount). Shipping one large batch is cheaper per kilogram than sending multiple small parcels.
Accurate Declaration: Always declare the correct value. While under-declaring saves on Valuation Charges, it puts you at risk of low compensation in case of cargo loss.
4. CEB Cargo Commodity Types
The nature of your goods dictates the handling requirements and price:
General Cargo (GEN): Textiles, electronics, documents, dry goods.
Perishables (PER): Fresh fish, fruits, vegetables, frozen meat. Requires immediate release and specific handling.
Vulnerable Cargo (VUN): High-value electronics or luxury items requiring extra security.
Dangerous Goods (DG): Chemicals, batteries, or flammable items. These require strict documentation and higher fees.
Note: This tool is an estimator intended for planning purposes. For exact quotations and bookings, please visit the nearest Cebu Pacific Cargo office or their official website.