pallet_fitting_calculator
Calculate optimal box arrangement on pallets for shipping and warehouse planning. Determines maximum boxes per pallet considering stacking layers, 90-degree rotation, weight limits, and volume utilization.
Instructions
Calculate how many boxes fit on a pallet (layers, rotation, weight limits).
This tool determines the optimal arrangement of identical boxes on a pallet, accounting for:
Layer-by-layer stacking up to the max height
90-degree rotation to find the best fit
Weight capacity limits
Volume utilisation percentage
Use this tool when you need to:
Plan pallet loading for warehouse/shipping
Calculate total boxes per pallet
Check if weight limits will be reached before space runs out
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| pallet_length_cm | Yes | Pallet length in cm | |
| pallet_width_cm | Yes | Pallet width in cm | |
| pallet_max_height_cm | Yes | Maximum stack height in cm (including pallet deck) | |
| pallet_deck_height_cm | No | Pallet deck height in cm (default: 15) | |
| box_length_cm | Yes | Box length in cm | |
| box_width_cm | Yes | Box width in cm | |
| box_height_cm | Yes | Box height in cm | |
| box_weight_kg | No | Box weight in kg | |
| max_payload_kg | No | Maximum pallet payload weight in kg | |
| allow_rotation | No | Allow 90-degree box rotation (default: true) |