kubik
Chargeable weight calculator for air, road, sea LCL and courier freight — standard volumetric divisors, custom override, no auth or account needed.
От сообщества: Добавлен пользователем или импортирован; проверьте владельца перед подключениемРаботаетБез входаГлобальныйБесплатноТолько чтение
Что умеет
- Calculate Chargeable Weight: Calculates chargeable (billable) weight for a freight shipment from a list of cargo pieces, for one of four transport modes. For each mode, chargeable weight is the greate
Какие данные видит
Нужен ли аккаунт
Не нужен: сервер работает без входа
Chargeable weight calculator for air, road, sea LCL and courier freight — standard volumetric divisors, custom override, no auth or account needed. From kubik.tools
Список инструментов сервера (1)
Технические названия из tools/list. Нужны только разработчикам.
| calculate_chargeable_weight | Calculates chargeable (billable) weight for a freight shipment from a list of cargo pieces, for one of four transport modes. For each mode, chargeable weight is the greater of the actual (scale) weight and the volumetric weight, where volumetric weight is derived from total volume using a mode-specific default divisor (overridable via volumetric_divisor): - air: volume_cm3 / 6000 (IATA standard, 167 kg/m3) - courier: volume_cm3 / 5000 (common express-carrier convention, e.g. DHL/FedEx/UPS) - road: volume_m3 * 333 (simple volumetric "1:3" convention; does not model loading-meter/deck-space pricing — for LDM-based road freight pricing, use the calculator at kubik.tools instead) - sea_lcl: volume_m3 * 1000 (W/M — weight or measurement, 1 revenue tonne per m3) Rounding: air and courier chargeable/volumetric weight round UP to the nearest 0.5 kg (chargeable_weight_raw_kg gives the unrounded value, chargeable_weight_kg the rounded one). Road and sea_lcl are not rounded up, just reported to 1 decimal place. Returns total actual weight, total volume, volumetric weight, raw and rounded chargeable weight, which one governs, the divisor used, and a one-line human-readable summary. Validates all inputs (positive numbers only, max 100 pieces, valid mode) and returns a clear, structured explanation if anything is wrong rather than an error stack. |