CNCzone.com-The Largest Machinist Community on the net!



Home Page Mark Forums Read Today's Posts My Replies Classifieds Reviews Photo Gallery Web Links Share Files Advertise With Us Ad List
Go Back   CNCzone.com-The Largest Machinist Community on the net! > Machine Controllers Software and Solutions > G-Code Programing


G-Code Programing Discuss G-code programing and problems here!


This forum is sponsored by:

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Ban this user!
Old 01-31-2012, 08:35 AM
 
Join Date: Jan 2004
Location: Gardnerville,Nevada
Posts: 256
cncwhiz is on a distinguished road
Question 1/4 NPT threading cycle (G76)

I am looking for a canned cycle for a fanuc OT control on a femco lathe. I am a mill programmer and I have not been on a lathe in a long time. Im pretty sure that I can use a "G76" cycle to cut a 1/4 NPT thread. The depth in Z is only .375. Does someone have a cycle they can send me ? Could yo also explain the cycle so I can see how to control the cycle?

Thanks
Terry
Reply With Quote

  #2   Ban this user!
Old 01-31-2012, 08:50 AM
 
Join Date: May 2004
Location: United States
Age: 48
Posts: 2,217
txcncman is on a distinguished road

ID or OD thread?

http://www.visinia.com/cnc-programmi...lathe-machine/
__________________
http://www.kirkcon.com/
Reply With Quote

  #3   Ban this user!
Old 01-31-2012, 09:31 AM
 
Join Date: Jan 2004
Location: Gardnerville,Nevada
Posts: 256
cncwhiz is on a distinguished road

They are OD threads. Do you have one for 1/4 NPT?
Reply With Quote

  #4   Ban this user!
Old 01-31-2012, 12:10 PM
 
Join Date: May 2004
Location: United States
Age: 48
Posts: 2,217
txcncman is on a distinguished road

No, I do not have one already written. Do you have Machinery's Handbook? What is the starting diameter? What is the thread length? What is the finish diameter? What is the pitch? What is the lead? How much depth of cut do you want to start with? How much depth of cut would you like to have on the final pass? What the the height of a single thread depth from crest to root?
__________________
http://www.kirkcon.com/
Reply With Quote

  #5   Ban this user!
Old 01-31-2012, 12:19 PM
 
Join Date: Jan 2004
Location: Gardnerville,Nevada
Posts: 256
cncwhiz is on a distinguished road

Originally Posted by txcncman View Post
No, I do not have one already written. Do you have Machinery's Handbook? What is the starting diameter? What is the thread length? What is the finish diameter? What is the pitch? What is the lead? How much depth of cut do you want to start with? How much depth of cut would you like to have on the final pass? What the the height of a single thread depth from crest to root?
I dont have that information off hand but is this the information that I need to have for this cycle? I you are anyone else explain the necessary format for this cycle?
Reply With Quote

Sponsored Links
  #6   Ban this user!
Old 01-31-2012, 12:48 PM
 
Join Date: May 2004
Location: United States
Age: 48
Posts: 2,217
txcncman is on a distinguished road

My plan was to explain where to put in the numbers once you get them. I was not going to totally stop what I was doing and go look up thread specs for you.
__________________
http://www.kirkcon.com/
Reply With Quote

  #7   Ban this user!
Old 01-31-2012, 01:31 PM
 
Join Date: Jan 2004
Location: Gardnerville,Nevada
Posts: 256
cncwhiz is on a distinguished road

Originally Posted by txcncman View Post
My plan was to explain where to put in the numbers once you get them. I was not going to totally stop what I was doing and go look up thread specs for you.
I am not looking for someone else to figure it out for me. I am just looking for either a completed canned cycle for this thread or detailed info on how to build the cycle.
Reply With Quote

  #8   Ban this user!
Old 01-31-2012, 03:55 PM
 
Join Date: Sep 2010
Location: Australia
Posts: 733
angelw is on a distinguished road

Originally Posted by cncwhiz View Post
I am not looking for someone else to figure it out for me. I am just looking for either a completed canned cycle for this thread or detailed info on how to build the cycle.
txcncman has already given you this information with the links he provided. However, following is another explanation. All you have to do is get the values for the thread you want to cut and fill in the blanks.

Regards,

Bill

G76P00_00_00 Q _ R _;
G76X (u) _ Z(W) _ R _ P _ Q _ F _ ;
The the first G76 block is specified as follows, where:
First 2 characters = Repetitive count in finishing (1 to 99). This designation is modal and is not changed until the other value is designated. Also this value can be specified by the parameter No. 5142, and the parameter is changed by the program command.

Second 2 characters = Chamfering amount
When the thread lead is expressed by L, the value of L can be set from
0.0L to 9.9L in 0.1L increment (2–digit number from 00 to 90).
This designation is modal and is not changed until the other value is
designated. Also this value can be specified by the parameter No.
5130, and the parameter is changed by the program command.

Third 2 characters = Angle of tool tip
One of six kinds of angle, 80°, 60°, 55°, 30°, 29°, and 0°, can be selected, and specified by 2–digit number.
This designation is modal and is not changed until the other value is designated. Also this value can be specified by the parameter No. 5143, and the parameter is changed by the program command.
(Example)
When:
1. Finish repeats = 2,
2. Chamfer amount r= 1.2 x Lead
3. Included angle of thread (Angle of tool tip) = 60°

The first G72 block P address is specify as follows.
P02 12 60

Q of first G76 block = Minimum cutting depth (specified by the radius value).
When the cutting depth of one cycle operation (Δd –Δd –1) becomes smaller than this limit, the cutting depth is clamped at this value. This designation is modal and is not changed until the other value is designated. Also this value can be specified by parameter No.
5140, and the parameter is changed by the program command.

R of first G76 block = Finishing allowance
This designation is modal and is not changed until the other value is designated. Also this value can be specified by parameter No.5141, and the parameter is changed by the program command.

The second G76 block is specified as follows, where:
X(U) = Minor (root) diameter of external thread, major (crest) diameter of internal thread. U is incremental equivalent of absolute X

Z(W) = Finish Z coordinate of thread. W is incremental equivalent of absolute Z

R = Difference of thread radius. If R = 0, parallel thread will be cut. In an External tapered thread X will equal the Root diameter at the major diameter of the taper. R will be specified as the radial difference between of the taper calculated from where the tool starts clear of the workpiece to the end Z coordinate. In this case the R will be a negative value.

P = Height of thread. This value is specified by the radius value.

Q = Depth of cut in 1st cut (radius value)

F = Lead of thread

Last edited by angelw; 01-31-2012 at 06:24 PM.
Reply With Quote

  #9   Ban this user!
Old 01-31-2012, 05:31 PM
 
Join Date: May 2004
Location: United States
Age: 48
Posts: 2,217
txcncman is on a distinguished road

Not in any particular order for 1/4-18 NPT:

Height of sharp V thread 0.04811 (Height of truncated thread 0.04444/0.03833)

Lead of course is 18

Pitch is 1 / 18 = 0.0556

Length is 0.5946

Large diameter is 0.540 (Size of pipe)

Taper is 3/4" per foot measured on diameter (This sets a ratio of 0.750 / 12. = 0.0625)

0.0625 X 0.5946 = 0.0372 (The small diameter of the taper will be 0.0372 smaller than the large diameter). The difference in radius will be 1/2.

0.540 - 0.0372 = 0.5028 for the small diameter

The root diameter will be the large diameter minus 2 times the thread height. I always use sharp V thread height in calculations.

0.540 - ( 2 X 0.0481 ) = 0.4438

I will set the first threading pass for 0.012" and the amount for the finish pass at 0.001".

Earlier I forgot got the minimum cutting depth. This does not effect the finish pass. I will set that to 0.005".

P's and Q's are set in ten-thousandths. (i.e. P1 = 0.0001", P0500 = 0.050")

Now, to fill in the blanks:

G76 P010060 Q0050 R0.001;
G76 X0.4066 Z-0.5946 R-0.0186 P0481 Q0120 F0.0556;

Hope that helps. This took about 30 minutes of my time to type all this out and make sure it was correct. I don't paid for it.
__________________
http://www.kirkcon.com/
Reply With Quote

  #10   Ban this user!
Old 01-31-2012, 07:53 PM
 
Join Date: Sep 2010
Location: Australia
Posts: 733
angelw is on a distinguished road

Originally Posted by txcncman View Post
G76 P010060 Q0050 R0.001;
G76 X0.4066 Z-0.5946 R-0.0186 P0481 Q0120 F0.0556;
1. The X address is specified as the root diameter at the large end of the tapered thread, X 0.4438
and
2. the R value to specify the radial difference in small and large diameter, is calculated from where the threading tool starts in Z clear of the workpiece. Assuming in your example the end of the workpiece is Z Zero, then the formula for calculating "R" would be as follows:

Where:
R = Radial difference between large and small end of thread
ZC = Clearance of tool in Z from start of thread = 0.2"

R = (0.0625 X (0.5946 + ZC))/2
R = (0.0625 X (0.5946 + 0.2))/2
R = 0.0248

G76 P010060 Q0050 R0.001;
G76 X0.4438 Z-0.5946 R-0.0248 P0481 Q0120 F0.0556


Regards,

Bill
Reply With Quote

Sponsored Links
  #11   Ban this user!
Old 01-31-2012, 10:36 PM
 
Join Date: Feb 2006
Location: india
Posts: 1,187
sinha_nsit is on a distinguished road

Thread using g76 - Practical Machinist - Largest Manufacturing Technology Forum on the Web
Reply With Quote

  #12   Ban this user!
Old 02-01-2012, 01:26 AM
fordav11's Avatar  
Join Date: Aug 2011
Location: Fordaville
Posts: 939
fordav11 is on a distinguished road

Originally Posted by txcncman
Hope that helps. This took about 30 minutes of my time to type all this out and make sure it was correct. I don't paid for it.
hehe! for all the gory details you should have just pasted this link.....
http://www.cnczone.com/forums/fanuc/...ed_please.html

could have saved yourself 30 minutes


actually the OP should have done a search. there's many many posts on how G76 works. could have saved us all 30 minutes
Reply With Quote

Reply




Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
G92 Threading cycle Hydn Fanuc 3 09-07-2011 04:05 AM
Need Help!- G76 Threading cycle noshibby Fanuc 5 07-19-2011 02:55 PM
Need Help!- threading cycle help Joe Miranda Milltronics 4 06-05-2011 02:20 PM
Need Help!- Fanuc 6t threading cycle. jetfuelgenius General CNC (Mill and Lathe) Control Software (NC) 11 04-14-2011 12:50 PM
Threading cycle chrisryn Parametric Programing 1 06-12-2008 03:04 PM




All times are GMT -5. The time now is 08:04 PM.





Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.
Content Relevant URLs by vBSEO
Template-Modifications by TMS

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361