×
INTELLIGENT WORK FORUMS
FOR ENGINEERING PROFESSIONALS

Log In

Come Join Us!

Are you an
Engineering professional?
Join Eng-Tips Forums!
  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It's Free!
  • Students Click Here

*Eng-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

Posting Guidelines

Promoting, selling, recruiting, coursework and thesis posting is forbidden.

Students Click Here

Jobs

Create a spiral Curve along trajectory
2

Create a spiral Curve along trajectory

Create a spiral Curve along trajectory

(OP)
I am trying to emulate the cutter path for a milling machine cutting a 250mm diameter grove in the surface of a component while the machine bed moves at 3mm per rev of the spindle. This creates a spiral cut in the components surface.

Can anyone help?

RE: Create a spiral Curve along trajectory

1. Select insert > model datum > curve.

2. In the box in the upper right, select: from equation, then Done.

3. Next click the default coordinate system. (You may want to reference a different coordinate system depending on placement of the milling path).

4. Select Cartesian in the menu manager.

5. A small text window should appear titled rel.ptd.  Under the dashed line type:
x=-125*cos(360*t*n)+3*t*n
y=125*sin(360*t*n)
z=0
(I put n here, but when you actually type it in, substitute the number of revs of the spindle for n)

6. Save the rel.ptd file and close it.

7. Click OK in the menu in the top right.

Good luck!

Michael Burlone
NASA White Sands Test Facility
Las Cruces, NM

RE: Create a spiral Curve along trajectory

Hi impactor

You can create a curve from an equation to define your cutter path, provided it follows a nice straight line.

Create a coordinate system as a reference frame for the cut, then start the curve from equation tool, using a cartesian system.

Modify the following as per your needs:

CODE

revs = 20
travel = 50
init_pos = 25
cutter_radius = 10


x = init_pos + (t * travel) + cutter_radius * cos(360 * t * revs)
y = 0
z = cutter_radius * sin (t * 360 * revs)

This creates a "moving spiral" in space. If it is a really fast moving cut you can use it as a trajectory for a sweep. But if there is a lot of overlapping geometry, chances are your sweep will fail.

RE: Create a spiral Curve along trajectory

hahahaha mburlone you beat me by a minute!

I shouldn't have gotten up to get that coffee.

RE: Create a spiral Curve along trajectory

Sorry about that; here's a star!

Red Flag This Post

Please let us know here why this post is inappropriate. Reasons such as off-topic, duplicates, flames, illegal, vulgar, or students posting their homework.

Red Flag Submitted

Thank you for helping keep Eng-Tips Forums free from inappropriate posts.
The Eng-Tips staff will check this out and take appropriate action.

Reply To This Thread

Posting in the Eng-Tips forums is a member-only feature.

Click Here to join Eng-Tips and talk with other members!


Resources