/3D-Bin-Packing

:truck: Personal project for packing the goods efficiently using some heuristic algorithms :train:

Primary LanguageC#Apache License 2.0Apache-2.0

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