Jump to content

Welcome to eMastercam

Register now to participate in the forums, access the download area, buy Mastercam training materials, post processors and more. This message will be removed once you have signed in.

Use your display name or email address to sign in:

Hymen

Verified Members
  • Posts

    314
  • Joined

  • Last visited

Recent Profile Visitors

726 profile views

Hymen's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. FYI-Iscar is running a promo till the end of the year taking 20% off all ISO turn. Only downer is that they are dropship only and you need to mention a promo code, AG1, to get the additional 20% off.
  2. Dave, I do agree that cranking down on collets is bad for them especially if the shank of the tool does not fill the entire collet or if they have flats of any kind! But this is a cheap alternative to Mill chucks, shrinkers, and Hydo's for those high horse power cuts! Aside from the fact that your tool and holder extension is now at a minimum, creating a stabler cut, the versatility is greater. connormac, check this out for your shrink needs. Another cheap alternative to buying an entire CAT** Shrink holder. ER32 shrinker. The biggest benefit I have found is that when the holder is at it's shrinking end, won't hold the tool sufficiantly, you don't buy a new holder just the ER32 shrinker piece at a little more cost than a precision collet. after you get these a little more than hand tight, chuck it up in the spindle indicate the tool in by tapping on the shrink part, then remove and tighten down. It's dreamy!
  3. -- For real heavy cutting we use Iscar low boy holders.( I'm not sure what ther are called) The whole collet is inside of the holder. Use a 1 7/16 box end wrench and get it as tight as we can.--- They are called SHORTIN Holders. You can crank down like hell on these and you won't pull your tool out!! + there is very minimal runout when using a good collet. When you use a side lock you sacrifice tool life due to runout and the tooling extension. Of course mill chucks, hydro and shrinkers work great for the high HP cuts as well but there are the associated costs that come with them.
  4. I guess I'm confused on what your trying to do. Flipped geometry will now be -.050 of Z0.0 ? If so add the -.050 to the transfered Position data. Your stock will move with it after a regen.
  5. Yes Crazy is right you need to re-define the cut direction. With stock tools you can lie to the dialog and say that its working on the opposite spindle (right) and and uncheck the reverse box. Then press the draw button and it should come out on top of the Y-Axis rather than below and post the right code.
  6. This part of the post needs to be customized, as the sequence of code and the code itself varies so much from control to control there would be no way MC could put something together without alienating everyone that doesn't use it. Example of a Myiano dual spindle dual turrent post transfer for the sub and the flip. Hopefully this helps some. code: # -------------------------------------------------------------------------- #Format Assignments and Initializations # -------------------------------------------------------------------------- fmt Z 2 stck_init_z$ #Initial Z position of the stock (900-902,904,905) fmt B 2 stck_final_z$ #Final Z position of the stock (900-902,904,905) fmt Z 2 stck_chuk_st_z$ #Initial Z axis Chuck Position (900-903) fmt X 2 stck_chuk_st_x$ #Initial X axis Chuck Position (900-903) fmt Z 2 stck_chuk_end_z$ #Final Z axis Chuck Position (900-903) fmt X 2 stck_chuk_end_x$ #Final X axis Chuck Position (900-903) fmt B 3 stck_chuk_st_dz$ #Destination chuck Z axis reference position before transfer (900) fmt U 3 stck_chuk_st_dx$ #Destination chuck X axis reference position before transfer (900) fmt B 3 stck_chuk_end_dz$ #Destination chuck Z axis reference position after transfer (900) fmt U 3 stck_chuk_end_dx$ #Destination chuck X axis reference position after transfer (900) fmt B 2 stck_clear$ #Stock clearance value for stock pull operation (902) fmt X 2 stck_tool_x$ #Tool X axis position for bar stop / puller (902) fmt Z 2 stck_grip$ #Grip length value for stock pull operation(902) fmt B 2 miscops_mr1$ #Final B Position for part off fmt F 18 stck_adv_fr$ #Used with Lathe Stock Advance (Bar-Feed/Pull) function (NCI 902) fmt F 18 stck_appr_fr$ #Used with Lathe Stock Advance (Bar-Feed/Pull) function (NCI 902) fmt F 18 stck_adv_fr$ #Used with Lathe Stock Advance (Bar-Feed/Pull) function (NCI 902) fmt F 10 stck_appr_fr$ #Used with Lathe Stock Advance (Bar-Feed/Pull) function (NCI 902) #Flags stck_op$ : 2 #Stock advance operation method (902) #(0=Push stock,1=Push stock with Use Tool Stop option,2=Pull stock) stck_spindle$ : 0 #Active spindle with stock to transfer (900-902) #0=Left Spindle,1=Right Spindle clmp_op$ : 0 #The selected Operation mode: 0=Clamp,1=Un-clamp,2=Re-position (903) clmp_spindle$ : 0 #Active spindle for clamp/unclamp 0=Left Spindle,1=Right Spindle (903) tlstck_on$ : 0 #Retract or engage the tailstock (0=Retract,1=Engage) (904) toolend_flg : 1 #Flag to execute ptoolend sequence or not # -------------------------------------------------------------------------- #Postblock Section -comments only! # -------------------------------------------------------------------------- pstck_trans$ #NCI code = 900 available variables: #stck_spindle, stck_init_z, stck_final_z, #stck_chuk_st_z, stck_chuk_st_x, #stck_chuk_end_z, stck_chuk_end_x, #stck_chuk_st_dz, stck_chuk_st_dx, #stck_chuk_end_dz, stck_chuk_end_dx if toolchng <> two, ptoolend$ toolend_flg = zero #Do not execute ptoolend again after xfer else, if lturret$ = 0, [ pcaxis_off_l_sub ] if lturret$ = 1, [ pcaxis_off_l ] n$, pchg_n, "(PULL OUT & PART-OFF-BOTH)", e$ n$, "M135 (PARTS CATCHER ADVANCE)", e$ n$, "M177 (SUB-COLLET BLAST ON)", e$ n$, "M117 (SUB-COLLET OPEN)", e$ n$, "M157 (WORKPIECE EJECTOR OUT)", e$ n$, "M213 (CONVEYOR ON)", e$ n$, "M136 (PARTS CATCHER RETRACT)", e$ n$, "M138 (THROUGH SUB-SPINDLE COOLANT ON)", e$ n$, " ", e$ n$, pchg_m, "(SPINDLE SYNC WAIT CODE)", e$ n$, " ", e$ if mi5$ = 1, n$, "M180 (SYNC SPINDLE PHASE)", e$ #if mi5$ = 2, n$, "M35 (SYNC SPINDLE SPEED)", e$ n$, "M181 (PARTS CATCHER POSITION CHECK)", e$ n$, "G00 G55 B0.1", e$ n$, "M180 (SUB-SPINDLE SPEED CHECK)", e$ n$, "M139 (THROUGH SUB SPINDLE COOLANT OFF)", e$ n$, "M179 (SUB-COLLET BLAST OFF)", e$ n$, "G01", "G98", *stck_chuk_end_dz$, "F100.", "(SUB-OVER)", e$ n$, "M118 (COLLET CLOSE-SUB)", e$ n$, "M17 (COLLET OPEN-MAIN)", e$ n$, " ", e$ n$, "G01", "G98", miscops_mr1$, "F100.", "(SUB-PULL)", e$ n$, "M18 (COLLET CLOSE-MAIN)", e$ n$, pchg_m, "(WAIT CODE FOR PART OFF) ", e$ n$, "M01", e$ n$, " ", e$ n$, "M36 (SYNCHRONIZATION OFF)", e$ n$, "M05 ", e$ n$, "G00 G54 G28 B0.", e$ n$, "G00 G28 W0.", e$ n$, " ", e$ n$, pchg_m, "(END OF CODE WAIT CODE) ", e$ n$, "/2M30 ", e$ n$, "/M99 ", e$ pstck_flip$ #NCI code = 901 available variables: #stck_spindle, stck_init_z, stck_final_z, #stck_chuk_st_z, stck_chuk_st_x, #stck_chuk_end_z, stck_chuk_end_x if toolchng <> two, ptoolend$ toolend_flg = zero #Do not execute ptoolend again after xfer [ !spaces$ spaces$ = zero pbld, n$, "M00",e$ if prv_spaces$ > 0, " ",e$ "(Flip Stock)", e$ spaces$ = prv_spaces$ ] You can see I used a combination of misc. integers and Mastercam assigned parameters (stck_chuk_end_dz$) all of which coincide with the boxes inside the operations dialog. You can look this up in the MastercamX_Post_Parameter_Ref.pdf (found in the documentation folder in MCX2/) and the V9 Post reference guide that I'm sure is on the FTP somewhere. It's how I learned.
  7. cheeveshome is right! Your crib manager is not doing his job! Go above your supplier/distributors head and call the manufacture of your choice. From my experience they are more than willing to test these tool at their cost.
  8. Doh to many windows open wrong topic
  9. ebottens Call your tool supplier and get a local factory rep in to test some tools for ya! 1. If it dosen't work well you don't buy it and then just test another tool from another MFG'er till you find the right fit. 2. If it blows up you don't buy it. 3. If it works your golden.
  10. Sorry guys. Although it's on the FTP I fixed the link. For those of you that are FTP disabled. Calculator
  11. Also check the tool manufacturers web sites. Some of them offer .DXF's of their tooling.
  12. Wrong Topic sorry anyone care to move it... Sorry
  13. I thought some of you might appreciate this. Calculator provided by Iscar 8 sheets of calculator and convertors. The first time I looked at this I missed the other sheets. (Bottom left)

Join us!

eMastercam - your online source for all things Mastercam.

Together, we are the strongest Mastercam community on the web with over 56,000 members, and our online store offers a wide selection of training materials for all applications and skill levels.

Follow us

×
×
  • Create New...