Editing Alpha Standard 3 Ax Router post


Results 1 to 4 of 4

Thread: Editing Alpha Standard 3 Ax Router post

  1. #1
    Registered Alexsandr's Avatar
    Join Date
    Aug 2017
    Location
    Russian Federation
    Posts
    10
    Downloads
    0
    Uploads
    0

    Default Editing Alpha Standard 3 Ax Router post

    Hello, dear professionals.

    How to add to the block the post responsible for changing the tool parameters:

    $------------------------ TOOL CHANGES --------------------------------------
    $70 Cancel current tool. Use [T] for current tool number if required.
    N[N] M09 ''M09 = Coolant Off
    $75 Code for CLOCKWISE spindle rotation - entered into variable ROT (or RT)
    M03
    $76 Code for COUNTER-CLOCKWISE spindle rotation - entered into variable ROT
    M04
    $80 Select new tool. Use [T] for new tool number, [S] for spindle speed.
    N[N] T[T][OFS] [ROT] 'Select tool and offset
    N[N] S[S] H[OFS] M06 'Next tool is [NT], Next XY is [NX], [NY]
    $LET FIRST_RAPID = 1
    $---------------------

    so that the program executes this code
    when changing tools

    N540 Z80
    N550 M5
    N560 Y0
    N570 M0

    so that the program executes this code when changing the tool. Machine without autotool changer. It is necessary for the program to stop and the spindle to go up and go to the given coordinate for a manual tool change.
    I have to insert this piece of code manually each time in a notebook when a new tool is being used.

    And also switch to the coordinate system specified by the operator
    G54

    :0000
    N10 (PROGRAM PRODUCED - 05 SEP 17)
    N20 G90 G71
    N30 G40 G80
    It is not necessary.
    Thank you


    P.S
    G54 I replaced myself.

    Similar Threads:
    Last edited by Alexsandr; 10-11-2017 at 08:47 AM.


  2. #2
    Member
    Join Date
    Apr 2010
    Location
    Australia
    Posts
    89
    Downloads
    5
    Uploads
    0

    Default Re: Editing Alpha Standard 3 Ax Router post

    Quote Originally Posted by Alexsandr View Post
    Hello, dear professionals.

    How to add to the block the post responsible for changing the tool parameters:

    $------------------------ TOOL CHANGES --------------------------------------
    $70 Cancel current tool. Use [T] for current tool number if required.
    N[N] M09 ''M09 = Coolant Off
    $75 Code for CLOCKWISE spindle rotation - entered into variable ROT (or RT)
    M03
    $76 Code for COUNTER-CLOCKWISE spindle rotation - entered into variable ROT
    M04
    $80 Select new tool. Use [T] for new tool number, [S] for spindle speed.
    N[N] T[T][OFS] [ROT] 'Select tool and offset
    N[N] S[S] H[OFS] M06 'Next tool is [NT], Next XY is [NX], [NY]
    $LET FIRST_RAPID = 1
    $---------------------

    so that the program executes this code
    when changing tools

    N540 Z80
    N550 M5
    N560 Y0
    N570 M0

    so that the program executes this code when changing the tool. Machine without autotool changer. It is necessary for the program to stop and the spindle to go up and go to the given coordinate for a manual tool change.
    I have to insert this piece of code manually each time in a notebook when a new tool is being used.

    And also switch to the coordinate system specified by the operator
    G54

    :0000
    N10 (PROGRAM PRODUCED - 05 SEP 17)
    N20 G90 G71
    N30 G40 G80
    It is not necessary.
    Thank you


    P.S
    G54 I replaced myself.
    Hi,

    The easiest way is to just hard code it in the Tool Cancel $70 section of the Post overwriting the existing N[N] M09 with

    N[N] G0 Z80 M9
    N[N] M5
    N[N] Y0
    N[N] M0

    or you could also set up user variables to ask the user the tool change positions
    The following would go in the Tool Cancel $70 section of the Post

    N[N] G0 Z[TOOLCHANGE_Z] M9
    N[N] M5
    N[N] Y[TOOLCHANGE_Y]
    N[N] M0

    and the following would go into the User Variables $1000 section of the Post

    TOOLCHANGE_Z ( ) "Enter Z Axis Tool Change Position. <80>"
    TOOLCHANGE_Y ( ) "Enter Y Axis Tool Change Position. <0>"

    This way the first time the post encounters the variable it will ask the user for the position with 80 as the default for Z and 0 as the default for Y.

    Cheers.



  3. #3
    Registered Alexsandr's Avatar
    Join Date
    Aug 2017
    Location
    Russian Federation
    Posts
    10
    Downloads
    0
    Uploads
    0

    Default Re: Editing Alpha Standard 3 Ax Router post

    Thank you so much!
    I just had a long time without a computer and could not immediately answer



  4. #4
    Member
    Join Date
    Mar 2018
    Location
    China
    Posts
    0
    Downloads
    0
    Uploads
    0

    Default Re: Editing Alpha Standard 3 Ax Router post

    this thread is good for me , very useful, if someone have the alphacam post processor guide pls send me gaofuji@126.com thank you .



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

Editing Alpha Standard 3 Ax Router post

Editing Alpha Standard 3 Ax Router post