Citizen L32 programming question on using G75



Results 1 to 11 of 11

Thread: Citizen L32 programming question on using G75

  1. #1
    Member
    Join Date
    Mar 2013
    Location
    usa
    Posts
    18
    Downloads
    0
    Uploads
    0

    Default Citizen L32 programming question on using G75

    I have a Citizen L32 with a mitsubishi Meldas series 500 control. I wanted to use the G75 cycle for chip breaking in the Z axis . I keep getting a program error and I am not sure on what format to enter in my P Q R numbers is it in decimal form or 4 digits. If any one has a program example that woulkd be appreciated . What I would like to do is start at a .400 dia. and cut a straight line in th z axis .700 taking maybe .030 at a pass or whaytever I need to do to control the chips.

    Similar Threads:


  2. #2
    Member deadlykitten's Avatar
    Join Date
    Jun 2015
    Location
    Antarctica
    Posts
    4154
    Downloads
    0
    Uploads
    0

    Default Re: Citizen L32 programming question on using G75

    hello pls find attached infos about g75

    is this what you are looking for ? to cut the part, or a groove ? or you wish for the LFV ?

    if it is about:
    ... cutting/grooving, i never use g75, but simple g-code, for more control; if you wish, i will share an example
    ... LFV, then i may select infos from the manuals, and share it to you; i just searched, there is something, but it seems to be much more, in comparison to g75

    What I would like to do is start at a .400 dia. and cut a straight line in th z axis .700 taking maybe .030 at a pass or whaytever I need to do to control the chips.
    i saw this later, it seems you are looking for LFV ... infos are spread all over the manuals, i will search later today

    until then, just try this :
    ... increase your feed
    ... decrease your rpms

    chips are broken by increasing the feed; also, if you work at an rpm that breaks your chips, increasing the rpm may no longer break them, but make them tangle arround ... thus a greater rpm may break your chips at a higher feed rate

    i would start with a minimal M/min, and increase the feed

    however, some soft materials simply don't break easy into smaller chips; i will be back with infos on LFV / kindly

    Attached Files Attached Files
    Last edited by deadlykitten; 07-06-2020 at 02:41 AM.
    we are merely at the start of " Internet of Things / Industrial Revolution 4.0 " era : a mix of AI, plastics, human estrangement, powerful non-state actors ...


  3. #3
    Member machinehop5's Avatar
    Join Date
    Aug 2009
    Location
    United States
    Posts
    1570
    Downloads
    5
    Uploads
    2

    Default Re: Citizen L32 programming question on using G75

    ...using a "-" sign can cause a problem sometimes with P's and Q's or K's in canned cycles...depends on CNC.



  4. #4
    Member
    Join Date
    Mar 2013
    Location
    usa
    Posts
    18
    Downloads
    0
    Uploads
    0

    Default Re: Citizen L32 programming question on using G75

    Quote Originally Posted by deadlykitten View Post
    hello pls find attached infos about g75

    is this what you are looking for ? to cut the part, or a groove ? or you wish for the LFV ?

    if it is about:
    ... cutting/grooving, i never use g75, but simple g-code, for more control; if you wish, i will share an example
    ... LFV, then i may select infos from the manuals, and share it to you; i just searched, there is something, but it seems to be much more, in comparison to g75



    i saw this later, it seems you are looking for LFV ... infos are spread all over the manuals, i will search later today

    until then, just try this :
    ... increase your feed
    ... decrease your rpms

    chips are broken by increasing the feed; also, if you work at an rpm that breaks your chips, increasing the rpm may no longer break them, but make them tangle arround ... thus a greater rpm may break your chips at a higher feed rate

    i would start with a minimal M/min, and increase the feed

    however, some soft materials simply don't break easy into smaller chips; i will be back with infos on LFV / kindly
    My machine does not have the LFV but with the G75 i am looking to do kind of the same thing. I do it all the time on our Fanuc controlled Lathes. I am just looking to straight turning, I have tried everything with feeds and speeds but the material just does not break up consistently to run unattended.



  5. #5
    Member machinehop5's Avatar
    Join Date
    Aug 2009
    Location
    United States
    Posts
    1570
    Downloads
    5
    Uploads
    2

    Default Re: Citizen L32 programming question on using G75

    hire a pro..



  6. #6
    Member
    Join Date
    Feb 2011
    Location
    usa
    Posts
    353
    Downloads
    2
    Uploads
    0

    Default Re: Citizen L32 programming question on using G75

    If you can use macro's try this it works well on a mitsubishi m70




    G0X.400Z-.05
    G1Z0.F.0025


    #100=0(start point)
    #101=.030(peck dist.)
    #102=.700(depth)
    #103=.003(chip break)

    WHILE[#100LT#102]DO1

    IF[#100LT#102]GOTO100
    #100=#103(IF #100 GE #103 MAKE #100 THE SAME AS #103)(THIS AVOIDS OVER RUNNING THE FINAL DIM.)
    N100



    G1Z[#100+#101]F.0025
    G1W-#103(BREAK CHIP could be a dwell also to break the chip)


    #100=#100+#101
    END1

    G1X.500
    G0Z-.1



  7. #7
    Member deadlykitten's Avatar
    Join Date
    Jun 2015
    Location
    Antarctica
    Posts
    4154
    Downloads
    0
    Uploads
    0

    Default Re: Citizen L32 programming question on using G75

    hy jim, please, what are you doing on the fanuc, that you wish to do also on the mitshubishi/citizen ?

    is it similar to the code shared by rcs ?

    the material just does not break up consistently to run unattended
    if possible, use an endmill to cut a longitudinal groove : this should break the chips when turning; obviously, this will require to lower your turning specs, and use an insert that can handle that bump, but may deliver a ' clean ' part

    another trick may be to rough towards reverse_Z, thus the oposite way ( may require an insert with bigger nose radius, so not to break during plunging ); this won't break your chips, but may throw them into the chipconveyor;

    * in both cases, may be required to adjust your operation in respect to guide bushing length / kindly

    we are merely at the start of " Internet of Things / Industrial Revolution 4.0 " era : a mix of AI, plastics, human estrangement, powerful non-state actors ...


  8. #8
    Member
    Join Date
    Mar 2013
    Location
    usa
    Posts
    18
    Downloads
    0
    Uploads
    0

    Default Re: Citizen L32 programming question on using G75

    Quote Originally Posted by rcs60 View Post
    If you can use macro's try this it works well on a mitsubishi m70




    G0X.400Z-.05
    G1Z0.F.0025


    #100=0(start point)
    #101=.030(peck dist.)
    #102=.700(depth)
    #103=.003(chip break)

    WHILE[#100LT#102]DO1

    IF[#100LT#102]GOTO100
    #100=#103(IF #100 GE #103 MAKE #100 THE SAME AS #103)(THIS AVOIDS OVER RUNNING THE FINAL DIM.)
    N100



    G1Z[#100+#101]F.0025
    G1W-#103(BREAK CHIP could be a dwell also to break the chip)


    #100=#100+#101
    END1

    G1X.500
    G0Z-.1
    Thanks it worked out well



  9. #9
    Member
    Join Date
    Feb 2011
    Location
    usa
    Posts
    353
    Downloads
    2
    Uploads
    0

    Default Re: Citizen L32 programming question on using G75

    your welcome



  10. #10
    Member deadlykitten's Avatar
    Join Date
    Jun 2015
    Location
    Antarctica
    Posts
    4154
    Downloads
    0
    Uploads
    0

    Default Re: Citizen L32 programming question on using G75

    hello again, recently i was talking with someone about this, and other solutions involves:
    ... cutting a "thread" with a relative big doc and lead ( at least > feed of turning operation )
    ... lfv tuned so to avoid ( or minimize ) air cut in order to extend tool life, but still break the chip / kindly

    we are merely at the start of " Internet of Things / Industrial Revolution 4.0 " era : a mix of AI, plastics, human estrangement, powerful non-state actors ...


  11. #11
    Member chupop's Avatar
    Join Date
    Mar 2017
    Location
    United States
    Posts
    1
    Downloads
    0
    Uploads
    0

    Default Re: Citizen L32 programming question on using G75

    Y axis turning tool will throw the chips down towards conveyor. All you need is a code. G140X=Y1 Y=X1 Z=Z1. G141 at the end of program to cancel. Program as regular X turning. Just put Y0. In clearance at start. T300
    G0 X.5 Z-.05 Y0. T3



Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


About CNCzone.com

    We are the largest and most active discussion forum for manufacturing industry. The site is 100% free to join and use, so join today!

Follow us on


Our Brands

Citizen L32 programming question on using G75

Citizen L32 programming question on using G75