Page 1 of 2 12 LastLast
Results 1 to 12 of 13

Thread: 16i / 18i Spindle Orientation...

  1. #1
    Registered Sump Cleaner's Avatar
    Join Date
    Dec 2005
    Location
    Canada
    Posts
    55
    Downloads
    0
    Uploads
    0

    Question 16i / 18i Spindle Orientation...

    Hey Guys,

    I need to orientate the spindle on some mills for a job. One has a Fanuc 16i control, the other an 18i. The thing is I need to orientate it a different angles and I'm not sure haw to do this. Has anyone done this before?

    Thanks,

    JK


  2. #2
    Registered
    Join Date
    Jan 2007
    Location
    Colombia
    Posts
    35
    Downloads
    0
    Uploads
    0

    parameter for spindel orientation 16I 18i

    Parameter 4077


  3. #3
    Registered Mitsui Seiki's Avatar
    Join Date
    Feb 2007
    Location
    USA
    Posts
    464
    Downloads
    0
    Uploads
    0
    This might work.
    M19 S900 for 90 degrees.S1800 for 180 degrees,S670 for 67 degrees........
    S is the angle.It works on some Fanuc controls.


  4. #4
    Registered Sump Cleaner's Avatar
    Join Date
    Dec 2005
    Location
    Canada
    Posts
    55
    Downloads
    0
    Uploads
    0
    Thanks Mitsui Seiki,

    I tried this out but it only orientates the spindle and then changes the speed value. Too bad it wasen't this simple on this control.

    So short of writing a macro which changes the value of the #4077 parameter and then back again, is there any other simple ways of doing this?

    Thanks Guys,

    JK


  • #5
    GEM
    GEM is offline
    Registered
    Join Date
    Jun 2007
    Location
    UK
    Posts
    43
    Downloads
    0
    Uploads
    0

    Orientation

    Spoke to our programmer today, says he thinks Fanuc can only use the M19 position as normal.

    GEM


  • #6
    Registered
    Join Date
    Dec 2006
    Location
    Indiana
    Posts
    84
    Downloads
    0
    Uploads
    0
    You could do it with G10. I also have a macro here somewhere that lets you actually do an M19S# without writing to the actual parameter. I'll dig it up when I get home from work.

    G10L50;
    N4077R(SETTING VALUE);
    G11;
    M19;


  • #7
    Registered Sump Cleaner's Avatar
    Join Date
    Dec 2005
    Location
    Canada
    Posts
    55
    Downloads
    0
    Uploads
    0
    Codyst,

    Thanks a million. If you can find it and send it to me that would be great!

    Thanks again,

    JK


  • #8
    Registered Mitsui Seiki's Avatar
    Join Date
    Feb 2007
    Location
    USA
    Posts
    464
    Downloads
    0
    Uploads
    0
    Quote Originally Posted by Sump Cleaner View Post
    Thanks Mitsui Seiki,

    I tried this out but it only orientates the spindle and then changes the speed value. Too bad it wasen't this simple on this control.

    So short of writing a macro which changes the value of the #4077 parameter and then back again, is there any other simple ways of doing this?

    Thanks Guys,

    JK
    Ok, I have been doing some digging.Try M190P180 for 180 degrees.

    This is what the Fanuc 18i manual says.
    M190 = Orient Tool to angle required .
    M190 : Spindle orientation
    Execution of the M5/M3/M4 command or pressing the RESET key will release the
    spindle orientation command.
    Last edited by Mitsui Seiki; 09-07-2007 at 04:10 PM.


  • #9
    Registered Sump Cleaner's Avatar
    Join Date
    Dec 2005
    Location
    Canada
    Posts
    55
    Downloads
    0
    Uploads
    0
    Thanks Mitsui Seki,

    All of the machines are running gight now so I will try this out when the operators are on lunch.

    Any luck finding the macro Codyst?

    JK


  • #10
    Registered
    Join Date
    Dec 2006
    Location
    Indiana
    Posts
    84
    Downloads
    0
    Uploads
    0
    It's on my work laptop. I've got one more customer to drop by, and will post when I get back to the house.


  • #11
    Registered
    Join Date
    Dec 2006
    Location
    Indiana
    Posts
    84
    Downloads
    0
    Uploads
    0
    dug it up, but I had forgotten that I had to make some ladder edits to make it work. Explanation is below. If you're interested I could walk you through doing the edits required to make it work, but a G10 would probably be a lot easier.

    O9020(MACRO FOR M119 S.....)

    #5=0

    #5=#19*11.3777

    #1133=#5

    #1100=1

    M219

    M19

    #1100=0

    G04X0.0

    M99

    Basically what I did was add some logic so that I could fire M119S*** to position to an angle. M119 would jump to the sub, from there I would set local variable #5 to 0, then set it equal to the value of S(#19)X the value of one pulse of the encoder(4096/360=11.377). Set #1133 equal to the new value. Set #1100=1 (ON), and this bit turns on in the ladder, fire M219, which writes the value from #1133 into a window read function and fire M19, which orients to this value. It will only orient to a specific angle when the value from #1133 is moved into the window read. I can orient to an angle, and follow it up with an M19 and go back to the original position because I'm basically just telling the PMC to look around the setting it actually wants.


  • #12
    Registered Sump Cleaner's Avatar
    Join Date
    Dec 2005
    Location
    Canada
    Posts
    55
    Downloads
    0
    Uploads
    0
    Codyst,

    Would you mind? I think the effort would be worth it. This is going to be used on a 6 spindle transfer machine so the more bullet proof the better.

    I get the concept but you lost me at the #1113 & #1100. I've never used those registers before. I take it I have to set #6080 to 119 for the M code to work and then it will pick up your macro? But the ladder stuff is pretty far over my head.

    Thanks again,

    JK


  • Page 1 of 2 12 LastLast

    Similar Threads

    1. Will Mach do spindle orientation?
      By KKutt in forum Mach Software (ArtSoft software)
      Replies: 11
      Last Post: 04-09-2007, 06:52 PM
    2. Tree 750 Spindle Orientation
      By CFMold in forum Tree
      Replies: 3
      Last Post: 12-11-2006, 01:41 PM
    3. Spindle Orientation Position Adjust
      By pinguS in forum Fanuc
      Replies: 4
      Last Post: 11-16-2006, 11:02 AM
    4. Spindle Orientation
      By machinist39 in forum Haas Mills
      Replies: 7
      Last Post: 05-04-2006, 09:58 PM

    Posting Permissions



    About CNCzone.com

      We are the largest and most active discussion forum from DIY CNC Machines to the Cad/Cam software to run them. The site is 100% free to join and use, so join today!

    Follow us on

    Facebook Dribbble RSS Feed


    Search Engine Friendly URLs by vBSEO ©2011, Crawlability, Inc.