Good afternoon,
I am posting to see if anyone has experience changing the depth of cut with retaining the same path. My company specialized in lathe turning and we often have to return our products that have been sent back to meet specs after usage. However, each product will have different wear so a single CNC program would not work. I have thought about simply changing the tool offset but did not want to go that route. Thank you!
Cutting different depths with the same profile plane
Moderator: cnckeith
-
- Posts: 1
- Joined: Thu Dec 15, 2022 9:15 am
- Acorn CNC Controller: Yes
- Allin1DC CNC Controller: No
- Oak CNC controller: No
- CNC Control System Serial Number: none
- DC3IOB: No
- CNC12: Yes
- CNC11: No
- CPU10 or CPU7: No
Cutting different depths with the same profile plane
(Note: Liking will "up vote" a post in the search results helping others find good information faster)
-
- Site Admin
- Posts: 8841
- Joined: Wed Mar 03, 2010 4:23 pm
- Acorn CNC Controller: Yes
- Allin1DC CNC Controller: Yes
- Oak CNC controller: Yes
- CNC Control System Serial Number: none
- DC3IOB: Yes
- CNC11: Yes
- CPU10 or CPU7: Yes
- Contact:
Re: Cutting different depths with the same profile plane
hi, i moved this post to the Machining Strategies forum.
Need support? READ THIS POST first. http://centroidcncforum.com/viewtopic.php?f=60&t=1043
All Acorn Documentation is located here: viewtopic.php?f=60&t=3397
Answers to common questions: viewforum.php?f=63
and here viewforum.php?f=61
Gear we use but don't sell. https://www.centroidcnc.com/centroid_di ... _gear.html
All Acorn Documentation is located here: viewtopic.php?f=60&t=3397
Answers to common questions: viewforum.php?f=63
and here viewforum.php?f=61
Gear we use but don't sell. https://www.centroidcnc.com/centroid_di ... _gear.html
(Note: Liking will "up vote" a post in the search results helping others find good information faster)
-
- Community Expert
- Posts: 3445
- Joined: Thu Sep 23, 2021 3:49 pm
- Acorn CNC Controller: Yes
- Allin1DC CNC Controller: No
- Oak CNC controller: No
- CNC Control System Serial Number: 6433DB0446C1-08115074
- DC3IOB: No
- CNC12: Yes
- CNC11: No
- CPU10 or CPU7: No
- Location: Germany
Re: Cutting different depths with the same profile plane
Can you show a drawing? I am not really catching what you want to achieve.
Uwe
Uwe
(Note: Liking will "up vote" a post in the search results helping others find good information faster)
-
- Community Expert
- Posts: 3498
- Joined: Tue Mar 22, 2016 10:03 am
- Acorn CNC Controller: Yes
- Allin1DC CNC Controller: Yes
- Oak CNC controller: Yes
- CNC Control System Serial Number: 100505
100327
102696
103432
7804732B977B-0624192192 - DC3IOB: No
- CNC12: Yes
- CNC11: No
- CPU10 or CPU7: No
- Location: Boston, MA
- Contact:
Re: Cutting different depths with the same profile plane
You could use G52 to temporarily shift the work coordinate system.
Cheers,
Tom
Confidence is the feeling you have before you fully understand the situation.
I have CDO. It's like OCD, but the letters are where they should be.
Tom
Confidence is the feeling you have before you fully understand the situation.
I have CDO. It's like OCD, but the letters are where they should be.
(Note: Liking will "up vote" a post in the search results helping others find good information faster)
Re: Cutting different depths with the same profile plane
If it is a one-tool job, I would just do it with the tool offsets (preferably the wear offsets, so it is easier to reset).
(Note: Liking will "up vote" a post in the search results helping others find good information faster)
-
- Community Expert
- Posts: 3445
- Joined: Thu Sep 23, 2021 3:49 pm
- Acorn CNC Controller: Yes
- Allin1DC CNC Controller: No
- Oak CNC controller: No
- CNC Control System Serial Number: 6433DB0446C1-08115074
- DC3IOB: No
- CNC12: Yes
- CNC11: No
- CPU10 or CPU7: No
- Location: Germany
Re: Cutting different depths with the same profile plane
Code: Select all
; Description: Offset X from User
; Programmer: Uwe
; Date: 20-Dec-2022
; --- Header ---
N0001 G21 ; millimeter measurements
:::: --- Stock Dimensions ---
:::: X- = -20.0, X+ = 20.0
:::: Z- = -60.0, Z+ = 0.0
:::: ---
G40 ; Cutter Comp Off
G28
M224 #101" Type Diameter Offset %f\n Cycle Start to continue"#101
; --- Rapid ---
N0002 T0100
M9
G96 S120.0 M3
G4 P1.0
G0 X[10.0+#101] Z0.5 T0101
N0003 G1 X[12.0+#101] Z-0.5 G99 F0.1
N0004 X[12.0+#101] Z-10.0
N0005 X[28.0+#101] Z-10.0
N0006 X[30.0+#101] Z-11.0
N0007 X[30.0+#101] Z-20.0
N0008 X[36.0+#101] Z-30.0
N0009 X[40.0+#101] Z-30.0
N0010 G28 T0100
M5
M9
G40
; End of Program
Uwe
(Note: Liking will "up vote" a post in the search results helping others find good information faster)