Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations MintJulep on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to Create a Spherical Helical Path with Solidworks 1

Status
Not open for further replies.

isofilm

Mechanical
Joined
Jun 4, 2004
Messages
7
Location
US
Is there a simple way to create a spherical helical path (like a continuous orange peel)? I do not need to start or stop at the poles, near is fine. I basically want to cover a sphere (except near poles) with a continuous tube.
 
SW won't do it automagically for you, but you have a few options.

1. Intersect a helical ribbon with a sphere and use the resulting edge. This one's the easiest to edit.

2. Create curve thru xyz points. Use Excel and some simple equations that work in the spherical coordinate system to generate the points. You can edit the Excel file, but it's not linked to the curve.

3. Use the macro below. It's easy to create the curve, but it's not editable.

 
FYI, here are the spherical equations you'd need to use. I don't remember offhand the formulas to convert from spherical to Cartesian coordinates, but they're easy enough to google.

R = R_Sphere
Theta = 2*pi*NumSpirals*t
Phi = pi*t

0 <= t <= 1
 
You can also use cylindrical coordinates and replace Phi with Z = R_Sphere*(2*t - 1).
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top