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:

wtsylvester

Verified Members
  • Posts

    99
  • Joined

  • Last visited

    Never

Posts posted by wtsylvester

  1. Rekd,

    Totally agree.. done some of the same routines

    VBS is okay but is really only a subset... why run on 4 cylinders when u can use 8.

    Plus Mcam doesn't have to be running and hey most of the nccode tweaking works on our Pro/E files too

     

    and if it doesn't you can just tweak your source a little

     

    once it's posted...it don't matter...and then the operators can run your exe files and not have to get into the mc9 files

     

    Seems I sent some source to ya once... have you check out instrRev... it's kind of cool works backwards... great for getting rid of extensions

  2. Visual Basic is a real handy tool when doing things like this.. I program one part let VB ...not VBS do all the footwork... make multi's.. html setup sheets , load tool routines... send email to the operators to bag the nc code... I do use DoBitmapfile out of vbs.. but the rest is so much easier to control< less code> in true vb

  3. So I take the machine are reliable. Don't break down very often.

     

    Real shame that where I work they really don't want to even check it out.. Have these part headed our way > could pair them up..bag the 2 edges, pairing makes 4 and 1 face.

    would eliminate a good deal of fixturing also would give the mold people the 5 axis machine they have been wanting for quite some time.

    But since they can get another Mori for 70k less thats what they are looking to do.Hmmm save 70k on the machine just to drop more on tooling, OT etc. bonk.gif

  4. Alan,

    I saw the 60t at ImTS... very impressive.

    I'm looking at the 5 sided aspect of it more than the 5axis.. we may be picking up some work which would be ideal for it.

     

    The sales team there pretty much says it's all in the control, no need for solid models or cam in general.. but then they are salesmen smile.gif

     

    Newcastle ehh.. I spent some time in East Anglia,

    Go have a Nukie brown ale for me after work smile.gif

     

    Cheers

  5. I'm feeling the same way about the mori

     

    The machine is nice in itself. But the controller

    is user hostile, doesn't even show what tool is currently in the spindle from the tool offset page

    The new model does but not our 6 month old one and not a software update option..

     

    and Mr. Me-AGH-ee wasn't any help at IMTS either

    the tall blonde chick was nice tho smile.gif

  6. I'd go for simple

     

    Just hard code G0 G90 B0. and m-code if needed in the ptlchg_com routine of the post .After it has read the work offset , you may need to break that line into a couple of lines so you don't have 2 m-codes on the same line, just make sure it's before the "G43" line and after the w/o read

    watch your commas and lil e's

     

    And set your B offset in the work offsets of the machine, so it will B zero to that value, after all you are already there for your xyz offset values smile.gif

    hmm that leaves pallet check :)But then the machine can control that too.

     

    From what I saw at IMTS 10 will have a program that helps one to setup a post now, instead of having to go thru all of this

     

    We got 300+ work offsets, but no tooling

    curse.gif

    And lazy susaning the parts in and out is our current method bonk.gif

  7. yes like robp says... you can M99 P(line number)

     

    follow that sub with a M99 and it should return to line after the first call..works on our mori/makinos

     

    you say,

    but find no reference to this function in Fanuc manual.

    Heck the mori manaul has more legal disclaimers than answers smile.gif

  8. So we got 3 Horz.<2-Makino A51 - 1 Mori NH5000>

    We have some volume jobs on the Mak's , but it's been small lots on the mori. I feel and so do some of the others here that we really need a VMC to fill in the gap ... if nothing else remove some of the 2nd op stuff off the high dollar machines.

     

    I want to submit a request to get us a vertical which is going to be met with some objections upstairs ... unless I have some bullet-proof points..... not my own smile.gif

     

    So if anyone has any links they would like to share or any type of good info in this direction... boy you make a lot of guys in the shop happy here smile.gif

     

    Looking at a VF-4 ....$80k

     

    Tia

  9. Well the do loop gets the toolnumber fine

     

    it doesn't return the zmax like before..picking up the r or initial plane

     

    and the zmin kicks out a 16 place number to the negative umpteenth power smile.gif

     

    the for-next got all the other info ..

    tlo, tdia, tlen, op type, tool comment,op comment

     

    just weirded out when there is more than one op on the zmin

     

    this is from the vbs script called getjobinformation that creates the html report

    that came with the vbs update..I believe smile.gif

  10. I cut code to narrow it done and works fine if there is only one op but gives wrong value if more than one op.. if anyone want to gibe a try here is the script

    --------------------------------------

     

    ' -- Start Script

    Call Main()

     

     

    Sub Main()

     

     

    Dim intOperations, intOpCount, ToolNumber

     

     

    ' -- Get current files operation count

     

    intOpCount = GetOperationCount(vbNullString)

     

     

    ' -- Iterate all operations

     

    For intOperations = 1 To intOpCount

     

    ' -- Get our tool number

    ToolNumber = GetToolNumberFromOperationID("",intOperations)

     

     

    ShowString("tool# " & ToolNumber & " oper # " & intOperations & " zmin " & _

    GetNciMinZFromOperationID("",intOperations))

    ShowString("tool# " & ToolNumber & " oper # " & intOperations & " zmax " & _

    GetNciMaxZFromOperationID("",intOperations))

     

    Next

     

    End Sub

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...