3d Bin Packing Problem Save

A python model of 3D Bin Packing problem

Project README

3D-Bin-Packing-Problem

This project aims at solving 3D-Bin-Packing problem, a combinatorial NP-hard problem. The whole 3D Packing implementation based on the following two papers:

Download & Usage:

The code based on enzoruiz implementation in Python. I made some improvements for better packing rate.

Download the whole main_model folder. Open example.ipynb in Jupyter Notebook to see an example. You can change any parameter in the file for your usage. If you use PyCharm, just change filename extension from .ipynb to .py.

Basic parameters of items and bins:

Here are some basic parameters that need your setup towards items and bins:

  • Bin(name, length, width, height, capacity)
    • For each bin, you need to enter its name, length, width, height, and capacity (the maximum weight it can hold).
  • Item(name, length, width, height, weight)
    • For each item, you need to enter its name, length, width, height, and weight.

Basic usage of Packer class:

  1. Create a variable of Packer() class. Click here to see Packer() definition.
  2. Use packer.add_bin() and packer.add_item() to add items that needed packing and optional box types. Then, use packer.pack() to perform the whole packing process.
  3. After packing, fitted and unfitted items in each bin and the bin with the highest packing rate will be printed.

Mathematical Formulation of 3D-Bin-Packing-Problem:

The following variables are used for the mathematical formulation:

= number of items, = maximum number of bins

if item is assigned to bin , otherwise for

if bin is used, otherwise for

: parameters indicating the length, width, and height of item

: parameters indicating the length, width, and height of bin

: weight of item , : capacity of bin

: continuous variables for coordinates of item 's left-bottom-behind corner

: a large enough number

: binary variables, indicating orientations of item . The values equal to 1 if item has orientation , respectively, otherwise equal to 0. The figure below shows 6 orientations of one item: Image 1

: binary variables, indicating the relative placement of item to item , variables will be 1 if item is to the right of, in front of, or on the top of item , respectively; otherwise, 0. The figure below shows non-intersection conditions of two items: Image 2

The objective is to maximize the packing rate of the variable bin:

The constraints are as follows:

Each item in one bin:

Capacity constraint of each bin:

Non-intersection between two items:

  • x-axis:
  • y-axis:
  • z-axis:

All items within the bin dimension:

  • x-axis:
  • y-axis:
  • z-axis:

One orientation of each item:

Basic Logic of 3D-Bin-Packing Model:

The core logic of 3D-bin-packing model based on heuristic algorithm. To be specific:

  • From a list of items, items are sorted from the biggest to the smallest and be placed in such ordering into a list of bins simultaneously.
  • Orientation selection module:
    • Each item has 1-6 orientations to choose when it can be placed into a certain bin. Orientation selection module can choose the best orientation type when facing several optinal orientations.
  • Placement selection module:
    • Here a pivot point is used to determine item's position. The pivot is an (x, y, z) coordinate which represents a point in a particular 3D bin at which an attempt to pack an item will be made. The back lower left corner of the item will be placed at the pivot. If the item cannot be packed at the pivot position then it is rotated until it can be packed at the pivot point or until we have tried all 6 possible rotation types. If after rotating it, the item still cannot be packed at the pivot point, then we move on to packing another item and add the unpacked item to a list of items that will be packed after an attempt to pack the remaining items is made. The first pivot in an empty bin is always (0,0,0). When one item can be placed into multiple optinal pivot point, placement selection module can help make a choice.
  • Item stacking module:
    • Here I tried item stacking module when one item is being placed into a certain box. Item stacking module helps determin whether to stack similar items before placement action.
    • Since stacking module did not significantly increase the packing rate, I deleted it in the end.
  • After all items in item list are placed into bins in bin list, the bin size with the highest packing rate will be chosen as final decision.
Open Source Agenda is not affiliated with "3d Bin Packing Problem" Project. README Source: Janet-19/3d-bin-packing-problem
Stars
98
Open Issues
3
Last Commit
3 years ago

Open Source Agenda Badge

Open Source Agenda Rating