Cylinder Pack

This calculation is specialized in packing cylindrical items. Calculate the required amount of bins for transport, taking into account a mixture of available bins.

It is able to take into account mandatory consolidation for subsets of items and stacking requirements. The result of this endpoint contains all the information that would be required to make use of packing visualization.

Visualization Compatible
API Documentation
Cylinder Pack Illustration

Answers Questions Such As

  • We have x number of different pallets available; which combination of pallets should we use?
  • How many pallets of each type do we need to ship today/tomorrow/next week?
  • Can we be make our transportation more efficient by using different pallet sizes?
  • How much space will be left if we place our items on our available pallets right now?
  • Where in the bin should we place our items?

Notable Features

  • Indicate which packing metric should be minimized by specifying a minimizationStrategy.
  • Accepts a combination of cylindrical and cubic bins in which items will be packed.
  • Keep control of packing consolidation by providing a consolidationKey.
  • Provide additional item stacking restrictions by including a stackingStyle.

Response


{
    "requiredNrOfBins": 3,
    "totalVolumeUtil": 63.99728,
    "totalWeightUtil": 22.15385,
    "packedBins": [
        {
            "id": 1,
            "type": "pallet-type-1",
            "width": 1.2,
            "depth": 0.8,
            "height": 1.65,
            "maxVolume": 1.584,
            "actualVolume": 0.907872,
            "actualVolumeUtil": 57.31515,
            "maxWeight": 1500,
            "actualWeight": 1500,
            "actualWeightUtil": 100,
            "nrOfItems": 2,
            "fittedItems": [
                {
                    "id": "DTM001",
                    "diameter": 0.5,
                    "height": 0.2,
                    "volume": 0.03926,
                    "weight": 10,
                    "xCoordinate": 0.5,
                    "yCoordinate": 0.6830,
                    "zCoordinate": 1.2
                },
                ...