Calculating Surface Area of Intersecting Cylinders with Non-Perpendicular Axes

  • Thread starter Thread starter Xishan
  • Start date Start date
  • Tags Tags
    Cylinders
Xishan
Messages
39
Reaction score
0
Can anybody help me finding the surface area of two intersecting cylinders with different radii and NOT perpendicular to each other (the axes of the two are in the same plane)?

Thanks for your cooperation
your new friend on physicsforums.com,
Xishan
 
Physics news on Phys.org
Welcome to Physics Forums. :smile:

Do you have the angle between the axes of the cylinders? I assume it is safe to assume that the cylinders are both high enough so the intersection is "complete".
 
Yes, Chen! the cylinders are COMPLETELY intersecting each other, and the angle can be assumed to be any value other than 90 degrees. I've solved the problem with the perpendicular case and verified the results with my CAD software.
 
Theelectricchild said:
Xishan I asked the same question ! Check it out here, you prolly already figured it out tho!

https://www.physicsforums.com/showthread.php?t=18954

No, Xishan was asking about an angle other than 90 degrees. The problem you give is the 90 degree case.
 
The problem still remains unsolved! the intersection area and the surface area ...
 
Just a suggestion:
We let the cylinder with largest radius be identified by uppercase letters,
while the cylinder with the least radius be identified with lowercase letters.
Going into the plane defined by the cylinder axes, we have the relation between the vertical variables: Z=z (X and x go along the respective axes).
In general, the region is the intersection between the regions:
Y^(2)+Z^(2)<=R^(2), y^(2)+z^(2)<=r^(2).

We let the axis of the cylinder with largest radius be rotated an angle w to the other axis, the intersection of the axes is the origin.
We have therefore:
X=x*cos(w)+y*sin(w), Y=-x*sin(w)+y*cos(w),
or we have the inequalities in x,y,z:
y^(2)+z^(2)<=r^(2)
z^(2)+(-x*sin(w)+y*cos(w))^(2)<=R^(2)

The last inequality gives the limits on x as functions of z and y
 
Last edited:
Thanks!

That is what I was doing but with some mistake in the limits. I initially thought the maxima (in x) of the intersecting curve in the xy plane will be at y=0; and that was wrong. Due to the inclined nature of the surface this point moves a little on the other side. Having corrected that error in the limit I've managed to solive the problem and verified it with my CAD software.

Thanks for paying this much attention to my question. I never thought this many people would view this thread.
 
Last edited:
Xishan, just a question:
Did you solve it numerically, or did you find some exact solution that has escaped me?
 
  • #10
Well, I did try my best to solve it numerically and eventually got the solution in terms of elliptical integrals but since I had to program that solution in my VB routine I employed Simpson's rule for its numerical solution. Following are the two integrals that i had at the end:

intg(sqrt((r^2-x^2)/(R^2-x^2))) 'for the intersection area

and

intg(sqrt((R^2-x^2)/(r^2-x^2))) 'for surface area

where R > r and limits on x are: x=0 to x=r in both cases

the second integral poses an added problem of being improper since it becomes infinite at the upper limit. I had to transform it into a managable form by substituting 'x = r cos(a)' (from the geometry of the problem) and ended up with the following integral

intg(sqrt((R/r)^2-cos(a)^2))

with limits of a: 0 to pi/2

I will appreciate anyone giving me an analytical solution or at least tell me a better (yet easy to program) and accurate numerical technique than Simpson's rule.
 
Back
Top