Skip to content
This repository has been archived by the owner on Jun 29, 2023. It is now read-only.

SahibYar/3D-Bin-Packing

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

3d Bin Packing

Build Status License

A freelance project for packing the goods efficiently using some heuristic algorithms

Note: This project is currently under development.

3D BIN PACKING PROBLEM

Development of an Optimization software for calculation of the best container box for a given amount of items (boxes) with 2 possibilities:
  • BEST FIT: select the best container box(es) (less waste in unused volume) choosing it from an ordered list of possible prebuilt container boxes (with several constraints in the dimensions and max weight). The entire ordered list can be split into several containers (according MaxCount limit) when needed, even of different sizes.

  • OPTIMAL: calculate the dimensions of the ‘optimal’ container box(es) (with several constraints in the dimensions and max weight).The entire ordered list can be split into several containers (according MaxCount limit and the Min/Max dimensional constraints) when needed, even of different sizes. The optimal calculated container box(es) is(are) almost cubic (if possible), have the maximum stability (low barycenter and no/minimum loose items inside), and a mimimal unused volume (air).
  • Project Description can be viewed further here in the documentation