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 12-01-2010, 10:39 AM
 
Join Date: Jul 2008
Location: united states
Posts: 4
bjgbur is on a distinguished road
G-Code Duplication

I need help with duplicating similar cutting patterns. I am not sure if mirror image is the way to go. I have attached an example of the program I am working with. Any help would be greatly appreciated!
Attached Files
File Type: txt TAPSTAMP.TXT‎ (813 Bytes, 40 views)
Reply With Quote

  #2   Ban this user!
Old 12-01-2010, 02:15 PM
 
Join Date: Sep 2010
Location: Australia
Posts: 733
angelw is on a distinguished road

Originally Posted by bjgbur View Post
I need help with duplicating similar cutting patterns. I am not sure if mirror image is the way to go. I have attached an example of the program I am working with. Any help would be greatly appreciated!
Your example program already mirror images one cutting pattern to produce the other, so I'm assuming you want advice regarding whether Mirror Image function on the machine is a better option than duplicating the code.

Both have their advantages and disadvantages, it depends a bit on the program. If the program is large, and the machine is not equipped with much memory, then using the Mirror Image function would have an advantage. The cutting program could go in a sub and called from the main with Mirror Image on and off. The biggest disadvantage with doing a straight Mirror Image is that one cutter path will use Climb Milling, whilst the other will use Conventional Milling.

Your example program has been programmed so that the cutting method for the Mirrored Detail is the same. If the machine has sufficient memory, or the facility for DNC, I would prefer to duplicate the code so that the cutting method was consistent.

Regards,

Bill
Reply With Quote

  #3   Ban this user!
Old 12-01-2010, 02:23 PM
 
Join Date: Jul 2008
Location: united states
Posts: 4
bjgbur is on a distinguished road
What the program does

What the program does is cut out a dog bone shape from flat specimens. It does this in a repeat process. What I am looking to do is add more stacks with an offset of say 2 to 3 inches between stacks. How do you write the program to duplicate the initial program to repeat after offsetting in the Y direction.

Does anyone know where to get a free G code simulator?
Reply With Quote

  #4   Ban this user!
Old 12-01-2010, 02:40 PM
Perfect Circle's Avatar  
Join Date: Jul 2010
Location: USA
Posts: 263
Perfect Circle is on a distinguished road

Use a G92 off set at the end of the program

G00"X" 'KEEP THE SAME AS IN YOUR PROGRAM" Y3.0 "Z" SAME AS PROGRAM
G92X0.0Y0.0Z0.0
That should just move everything in Y by 3.00"
But dont forget to put a G92 at the start of your program to cancel out the
G92.
I would write you a full program but im sorry I dont have too much time today.
This should help you out

Good Luck~!
Reply With Quote

  #5   Ban this user!
Old 12-01-2010, 02:48 PM
Perfect Circle's Avatar  
Join Date: Jul 2010
Location: USA
Posts: 263
Perfect Circle is on a distinguished road

This is the best I could do with the time ....There is a shorter way, but I hope that this gets you going in the right direction
Attached Files
File Type: txt TAPSTAMP[1].TXT‎ (1.6 KB, 19 views)
Reply With Quote

Sponsored Links
  #6   Ban this user!
Old 12-01-2010, 03:02 PM
 
Join Date: Jul 2008
Location: united states
Posts: 4
bjgbur is on a distinguished road
Response to Perfect Circle

What I tried using was a G97 code that resets the work coordinate system to where ever you choose then did the same thing you did. I was just wondering if there was a way to shortcut the copy and paste of the whole program to do the cutting. Is there a way to reference the whole thing in a one line?
Reply With Quote

  #7   Ban this user!
Old 12-01-2010, 03:18 PM
Perfect Circle's Avatar  
Join Date: Jul 2010
Location: USA
Posts: 263
Perfect Circle is on a distinguished road

Try putting an L value at the end of the program ever how many times you want it to repeat with the step over in Y in inc. distance ...That should be the shortest way
Reply With Quote

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

Originally Posted by bjgbur View Post
What I tried using was a G97 code that resets the work coordinate system to where ever you choose then did the same thing you did. I was just wondering if there was a way to shortcut the copy and paste of the whole program to do the cutting. Is there a way to reference the whole thing in a one line?
What make and model control is it?

A simple way to achieve your result is how I would do it with a Fanuc control.

1. Put the cutting component of your original program into a Sub Program
2. From your main program you would drive to the start point in X and Y and call the Sub.
3. Move the desired offset for the next repeat, set the coordinate system and call the sub again.
4. you can keep doing this as many times as required.

Alternatively, do as in 1 above, but when you call the Sub from the main program, pass the parameter to have it repeat a number of tines. If you do it this way, you would have to make the shift offset and the setting of the coordinate system within the Sub. An example of the Sub call with repeat is as follows for a Fanuc control.

M98 P1000 L4

The the above line Sub program 1000 would be called and repeated 4 times.

Post the make and model of the control and I'll do a program for you.

Regards,

Bill
Reply With Quote

  #9   Ban this user!
Old 12-01-2010, 03:51 PM
Perfect Circle's Avatar  
Join Date: Jul 2010
Location: USA
Posts: 263
Perfect Circle is on a distinguished road

ok you can try a sub program it will be the fastest way without copying code... you can try this to get you headed in the right direction...
sorry I cant be of more help im crazy busy today..Good Luck and keep the chips flying!

(CALL SUB PROGRAM)
M98P1000 L24 "HOW MANY

TIMES TO SHIFT"
N271M30

(SUB PROGRAM)
1000(SUB PROGRAM#)
N272G91G0"INC.MOVE"Y3.0
N273G92X0Y0Z0
M99
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
Need Help!- My Milling OKK with fanuc 6M can't recognize G-code & M-code nessei Fanuc 4 03-29-2011 08:39 AM
Converting Fanuc G code to Seimens 840D G code Jasbinder Siemens Sinumerik CNC controls 2 02-20-2011 10:02 AM
Newbie- Takeout Unused G Code commands in Mastercams Generated G Code shneek Mastercam 8 12-15-2010 02:32 PM
learning g code or cad-cam code output? slow_rider G-Code Programing 3 02-27-2010 08:48 PM
looking for g code 3d from bobcadcam or simmilar for indexer lpt v5 with g code soft troyswood Ability Systems - LPT Indexer and G-Code 2 12-24-2006 09:21 PM




All times are GMT -5. The time now is 07:51 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