An open API service indexing awesome lists of open source software.

https://github.com/radevgit/packing

Circle Packing Problems
https://github.com/radevgit/packing

circle-packing cutting-and-packing nesting packing packing-algorithm

Last synced: about 1 month ago
JSON representation

Circle Packing Problems

Awesome Lists containing this project

README

          

This repository contains my solutions to some Circle Packing problems.
The solutions are optimized using the [Ring2D](https://nest2d.com/ring2d/) software. They are as close to optimal as the algorithms can provide.

### Circles in circle container
#### "Magic" numbers that form complete "layers" in circle container

61 (r=8.66131) ![61](circle/magic/magic061.png)
91 (r=10.56677) ![91](circle/magic/magic091.png)

127(r=12.4747) ![127](circle/magic/magic127.png)

-
-
-

### Circles in rectangle container
#### Packing circles with equal radius
Hexagonal lattice is not the only one when circles are packed in recangular container. Different number of circles and rectangle height result in different arrangement.

(#48 height=43000/4) ![7](rectangle/equal/rectangle48-43000.png)

(#50 height=48000/4) ![7](rectangle/equal/rectangle50-48000.png)

(#53 height=40000/4) ![7](rectangle/equal/rectangle53-40000.png)

(#53 height=46000/4) ![7](rectangle/equal/rectangle53-46000.png)

(#54 height=43000/4) ![7](rectangle/equal/rectangle54-43000.png)

-
-