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! > CAM Software > GibbsCAM


GibbsCAM Discuss GibbsCAM software here.


This forum is sponsored by:

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Ban this user!
Old 08-08-2011, 03:44 PM
 
Join Date: Jul 2010
Location: USA
Posts: 169
eliot15 is on a distinguished road
Work Fixture Offsets

I'm finding the documentation on Work Fixture Offsets a little sketchy. Say I wanted to emulate a 4 vise set up as in the pic below. Can I tell GibbsCAM that each of those rectangles represents a seperate work offset, even though they are in the same plane?



Thanks
Reply With Quote

  #2   Ban this user!
Old 08-08-2011, 09:05 PM
cadman's Avatar  
Join Date: Jun 2003
Location: USA
Posts: 498
cadman is on a distinguished road

Yes. Just create a cs for each vise and create your processes in the appropriate cs.
Reply With Quote

  #3   Ban this user!
Old 08-09-2011, 05:30 PM
 
Join Date: Jul 2010
Location: USA
Posts: 169
eliot15 is on a distinguished road

OK. Here's my attempt to do that and to try and understand a few things about CS's. My example is simple, and artificial. I've created 2 new CS's (I called them G54 and G55), both of which initially copy CS1 (XY plane). I've drawn a rectangle in each CS, moved the origin (X0Y0) of each CS to the middle of the rectangle, and drilled a hole at X0Y0. Here's my CS's:



When I click on CS 1, the default CS, I see this:



When I click on G54, I see this:



When I click on G54, mod (1), I see this:



When I click on G55, I see this:



And when I click on G55, mod (1), I see this:



I have 2 main questions:

1. Why are "G54, mod (1)" and "G55, mod (1)" created when I move the origin, leaving the geometry stored in the original version, and the origin markers displayed in the modified version?

2. Do the points I have placed at the "origin" of G54 and G55 really represent absolute X0.Y0. for the respective CSs? If so, why does the generated code not drill at X0.Y0. It drills at X-2.5 Y0. and X2.5 Y0., respectively, which are absolute coordinates relative to CS 1's origin, not G54 and G55's origin. Whats up with that?

Code:
%
( TOOL 1: .5 DRILL )
S1000M3
G90G0X-2.5Y0.
G43Z1.H1T1
M8
Z.1
G83G99X-2.5Y0.Z-2.R.1Q.05F4.
G0G80Z.1
( TOOL 1: .5 DRILL )
G90G0X2.5Y0.
G83G99X2.5Y0.Z-2.R.1Q.05F4.
G0G80Z.1
M9
G91G28Z0.
G90
M5
G28Y0
M30
%
Any clarification of these two issues would be greatly appreciated.

I should mention that I have discovered the Post Processor dialog box's Number of Parts text box and One Part All Tools radio button. I can, for example, draw 2 "parts" in the default XY plane, and tell my post processor to generate code for 2 parts. When I do, I get G54 and G55 work offsets in my code. But thats using 1 coordinate system, the default.

I'm just trying to gain a better understanding of how multiple coordinate systems work, and how using them could be advantageous in (primarily) 3 Axis Milling (though we also have 2 horizontal mills with B axes).

Thanks
Attached Files
File Type: zip Work_Offsets_2.zip‎ (10.4 KB, 6 views)
Reply With Quote

  #4   Ban this user!
Old 08-09-2011, 08:03 PM
cadman's Avatar  
Join Date: Jun 2003
Location: USA
Posts: 498
cadman is on a distinguished road

Question 1 - You have one or more options checked in the CS Preferences. By default, when you move an origin anything created while it is active moves with it. Right click on the CS List to bring up the Preferences menu. Here you will find options for handling geometry & toolpaths when you move an origin.

Question 2 - You created both drill processes in CS1. Open each process box and in the bottom right corner you'll see Mach. CS: and a dropdown list that will display all of the CS in the file. You need to select the one you want to machine in to output correctly.


The Number of Parts option is really meant for outputing multiple work offsets for parts that are fixtured the same, like four parts in four vises located the same way, etc... .
Reply With Quote

  #5   Ban this user!
Old 08-10-2011, 05:49 PM
 
Join Date: Jul 2010
Location: USA
Posts: 169
eliot15 is on a distinguished road

OK, here's take 2.

I did the following in the following order:

- Created 2 user CSs (G54,G55) both based on (copies of) the default XY Plane.

- Moved the origin of G54 and G55 to the left and right, respectively, of the default origin.

- Created some geometry (a single point) in each user CS. The point is located at X0.Y0. of each user CS.

- Created a process to drill the point in each user CS. The appropriate CS was selected for each process.

Like so:



The default axis marker is showing, frame indicators for G54 and G55 appear, and tool path is displayed for P1 (identical tool path for P2).

I feel like thats all set up correctly.

Problem:

I can't get my post processor to recognize and emit code for my two user coordinate systems. I was kinda' hoping to see a G54 work offset and a G55 work offset in my code, with drilling going on at X0.Y0. in both work offsets. Instead everything is still oriented relative to the default XY plane.

Code:
%
O1100( PROGRAM: WORK_OFFSETS_3.NCF )
( FORMAT: MXXX_12 VERTICAL.PST )
( 8/10/11 AT  6:45 PM )
( OUTPUT IN ABSOLUTE INCHES )
( PARTS PROGRAMMED: 1 )
( FIRST TOOL NOT IN SPINDLE )
N1G17G80G40
G54X0Y0Z0
T1
M6
( OPERATION 1: HOLES )
( WORKGROUP )
( TOOL 1: .5 DRILL )
S1000M3
G90G0X-4.Y0.
G43Z1.H1T1
M8
Z.1
G81G99X-4.Y0.Z-2.5R.1F4.
G0G80Z.1
( OPERATION 2: HOLES )
( WORKGROUP )
( TOOL 1: .5 DRILL )
G90G0X4.Y0.
G81G99X4.Y0.Z-2.5R.1F4.
G0G80Z.1
M9
G91G28Z0.
G90
M5
G28Y0
M30
%
Is what I am looking for something that is controlled by the post, and I just don't have a post that can do that? Or am I not doing something correctly in GibbsCAM?

Thanks, as always.
Attached Files
File Type: zip Work_Offsets_3.zip‎ (9.5 KB, 2 views)
Reply With Quote

Sponsored Links
  #6   Ban this user!
Old 08-10-2011, 07:37 PM
cadman's Avatar  
Join Date: Jun 2003
Location: USA
Posts: 498
cadman is on a distinguished road

You need an Advance Mill post when using coordinate systems. The format code in your sample is not an Advance Mill post label. To post using PostHaste you would also need to upgrade the PostHaste plugin.

Other than the post issue, your example looks fine.
Reply With Quote

  #7   Ban this user!
Old 08-11-2011, 03:38 AM
 
Join Date: Jul 2010
Location: USA
Posts: 169
eliot15 is on a distinguished road

If I had an Advance Mill post, would my code output show 2 drilling operations, one at G54 and one at G55, both drilling at X0.Y0.? I'm just curious what it would look like. Or would it look like whatever we designed it to look like? I know very little about "posts" and how they come to be. I do have a lot of posts that I was given, however. Is there anything specific in the format that would indicate to me I was looking at an Advance Mill post? I could look through the posts that I have for one.

Without an Advance Mill post, is there really much point in using coordinate systems in 3 axis vertical milling? It seems to me that using coordinate systems might come in handy, however, programming on horizontal mills where B axis rotation is involved.

What is PostHaste?

Thanks

Last edited by eliot15; 08-11-2011 at 04:03 PM.
Reply With Quote

  #8   Ban this user!
Old 08-11-2011, 09:04 PM
cadman's Avatar  
Join Date: Jun 2003
Location: USA
Posts: 498
cadman is on a distinguished road

With an Advance Mill post your code output will be correct. The code will be relative to the CS you machine in. This is especially important when indexing around a rotary axis.

Heres a link that explains the label definitions:

Welcome to the GibbsCAM Support Center

You can do simple 4 axis positioning in the basic mill package, so you don't need an Advance Mill post to do that. If you need a post modified, the post department at GibbsCAM will help you out.

PostHaste is the built in third party plugin that allows you to create and modify post templates yourself. It is not the same as the internal post engine & .pst files. What version of Gibbs are you using? If you have a really old version, like V5.xx, you won't have it.
Reply With Quote

  #9   Ban this user!
Old 08-12-2011, 04:18 AM
 
Join Date: Jul 2010
Location: USA
Posts: 169
eliot15 is on a distinguished road

I'm running version 9.5.1 32 bit. We have 2011, but I don't have it installed yet.

I see that I do have PostHASTE installed with a pretty extensive template library. I just kicked out a random NC file. I'll have to play with that a bit.

Thanks a million for all the help on this issue. I'm hoping working with multiple coordinates systems will help us program our horizontal mills down the road. We also just picked up a PUMA Turn/Mill which should be interesting to work with.

I printed out the info. at the Gibbs Support link. I'll take it to work today and see what we have post-wise.

Thanks again.
Reply With Quote

  #10   Ban this user!
Old 08-12-2011, 08:04 AM
cadman's Avatar  
Join Date: Jun 2003
Location: USA
Posts: 498
cadman is on a distinguished road

I bought the PostHaste 5 axis upgrade about 5 years ago but don't use it now. I had my post modified for our 5 axis machine and it works really well.

When I bought my seat it came with B, C, & D Advance Mill posts, so you should have one. Get your copy of 2011 installed.

Good luck
Reply With Quote

Sponsored Links
  #11   Ban this user!
Old 08-12-2011, 05:21 PM
 
Join Date: Jul 2010
Location: USA
Posts: 169
eliot15 is on a distinguished road

Well shut the front door!! After a bit of digging, turns out we have a small boat load (about a dozen) Fanuc Advanced Mill posts (mostly B with a C or two).

Here's what I've been after. Same program we've been kicking around:

Code:
%
O1100( WORK_OFFSETS_3.NCF )
( FORMAT: FANUC 11M B007.16.PST )
( 8/12/11 AT  5:53 PM )
( OUTPUT IN ABSOLUTE INCHES )
( PARTS PROGRAMMED: 1 )
( FIRST TOOL NOT IN SPINDLE )
N1G17G70G80G40
T1
M6
( OPERATION 1: HOLES )
( WORKGROUP )
( TOOL 1: .5 DRILL )
( CS#1 - G54 )
( G54 = X-4. Y0. Z0. )
G54
S1000M3
G90G0X0.Y0.
G43Z1.H1
M8
Z.1
G81G99X0.Y0.Z-2.5R.1F4.
G0G80Z.1
( OPERATION 2: HOLES )
( WORKGROUP )
( TOOL 1: .5 DRILL )
( CS#2 - G55 )
( G55 = X4. Y0. Z0. )
G55
G90G0X0.Y0.
G81G99X0.Y0.Z-2.5R.1F4.
G0G80Z.1
M9
G91G28Z0.
M30
%
( FILE LENGTH: 561 CHARACTERS )
( FILE LENGTH: 4.95 FEET )
( FILE LENGTH: 1.58 METERS )
Yee ha. Thats me drilling at X0.Y0. in two different user defined coordinate systems.

Kinda' interesting, though, that the code format contains a comment that defines each CS's origin in terms of its position relative to the default XY origin. G54 is X-4. Y0. Z0. and G55 is X4. Y0. Z0.

I'll have to see what my other posts kick out.
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
Work Offsets in Multiple Fixture CX750 FeatureCAM CAD/CAM 1 02-18-2011 05:17 AM
Newbie- Fixture offsets, X3 KevinV_MEI Mastercam 2 02-06-2011 10:04 AM
help posting work fixture offsets instead of G92 rsm169 Mastercam 6 05-21-2009 06:49 PM
fixture offsets beartrax G-Code Programing 1 11-14-2008 06:19 PM
FIXTURE OFFSETS BAD DOG G-Code Programing 20 05-01-2008 06:23 PM




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