I have a set of circles of arbitrary radii: r1,r2,r3,...rn.
I wish to arrange them around an inner circle so that they are all touching the perimeter of the inner circle, and do not overlap each other.
What I don't know how to do is figure out the inner radius rinner.
I can figure out the angle each circle will use given an inner radius: θi=2sin−1riri+rinner, so I can test whether an inner radius is correct.
My first guess was to solve 2π=∑i(2sin−1riri+rinner) for rinner, but that's beyond my skills.
I also considered whether the sum of the diameters would equal the circumference of the circle, but that's a set of line segments rather than a smooth arc, and correcting that is also beyond me.
How do I figure out rinner?
Numbers of circles around a circle is related, but assumes the circles are identical, which mine are not.
Answer
Using the cosine rule, the angle at the centre of the inner circle between lines through the centres of two adjacent touching circles is given by
φ(i,i+1)=cos−1(R2+Rri+Rri+1−riri+1(R+ri)(R+ri+1))
where I've used R instead of rinner for simplicity.
So, we need
n∑i=1φ(i,i+1)=2π(1)
where we consider rn+1=r1.
Using trigonometric identities, for a given n, it is possible to convert this into a very complex expression full of square roots, but there seems to be no easy way of solving the result in general (although for n=3 and ri=1,2,3, we somewhat surprisingly get R=623).
Numerical solution is probably the best approach. (The diagram below was generated using Mathematica to solve numerically.)
Moreover, although this is a necessary condition, it is not sufficient in general because a sequence of small circles between two large circles may not fit tightly, causing the solution above to give an incorrect result (with the large circles overlapping):
So for all i≠j, for the above solution to be correct we also need
φ(i,j)⩾j−1∑k=iφ(k,k+1)
with appropriate wrapping around of indexes if i>j. If this does not hold for some i and j, then the correct solution for R is obtained from (1) by discarding circles i+1,…,j−1. Due to the possibility of nested overlapping, the testing and discarding needs to be done iteratively, considering increasing values of |i−j| in order.
No comments:
Post a Comment