585,597 active members*
3,144 visitors online*
Register for free
Login
Results 1 to 7 of 7
  1. #1
    Join Date
    May 2008
    Posts
    19

    User input variable - best way?

    Hi,
    I want to record the unique serial number of each part machined prior to printing the inspection/probing results for the part. I can get operator to enter part number as a macro variable, eg #800=123.456, but would be interested in user experiences with best way to do this. I'm not keen for user (varying skill levels) to MDI the variable (Mazak controller, Fusion640). I can run an ISO sub prog, which the operator could edit, but again not very keen on that. Any ideas?

  2. #2
    Join Date
    Feb 2008
    Posts
    267
    How is the Unique SN derived?
    If the parts are production parts and run sequentially, then the setup person could enter a variable #800=123.456 once then your program could "count" each part #800=#800+1 yielding 223.456 then you could print #800.
    Good Luck

  3. #3
    Join Date
    May 2008
    Posts
    19

    Serial Numbers are "random"

    Hi,
    Nice idea, and would work well (only 1 chance to get it wrong, and could error check), however all the serial numbers are effectively random since parts come from several forge batches, and not necessarily in sequence by the time they arrive at this machine. I see there is a Haas M109 code (this machine is a Mazak CT4500 with Fusion control) which is designed for user input of a single character at a prompt. Sort of what I'm looking for? But I doubt the Mazak will recognize this as an ISO subprog M code?

  4. #4
    Join Date
    May 2008
    Posts
    19

    Variable input

    Maybe the lowest risk way is to have the operator edit a "two line" Subprog that just has say:

    #800=123.456 (Edit this to be part number)
    M99

  5. #5
    Join Date
    Feb 2008
    Posts
    267
    I see.
    sounds like you'll we working around individuall user input unless you get into a more elaborate "part staging" technique coupled with a spradsheet or some such device.

    How many parts at a time are you dealing with?

  6. #6
    Join Date
    May 2008
    Posts
    19

    No of parts

    Hi,
    Approx 30 parts a week, all different serial numbers.

  7. #7
    Join Date
    Feb 2008
    Posts
    267
    30 is not too many...
    You could put the parts into some type of organized rack system in a known order.
    You or someone in charge could write this in a program and run it, setting the machine variables to the corresponding unique part S/N's

    #800=123.456
    #801=23.189
    #802=9823.123
    so on and so forth in the same order as the parts...
    at the end
    #100=800(set the variable that will be used in your probing/inspectig code)

    in your probing/inspecting code...

    ##100(get the current part's S/N)
    (first time through ##100 is same as #800)

    (do your probing/inspecting...)


    now increment to the next S/N...
    #100=[#100+1]
    (now ##100 is same as #801)

    HTH.
    Good luck.

Similar Threads

  1. EMC2 variable pitch / variable diameter threading.
    By samco in forum MetalWork Discussion
    Replies: 0
    Last Post: 03-09-2008, 07:40 PM
  2. 3 phase input VFD for single phase input?
    By Redhead in forum Phase Converters
    Replies: 4
    Last Post: 02-27-2008, 05:30 PM
  3. Geckodrive user input requested
    By Mariss Freimanis in forum Gecko Drives
    Replies: 34
    Last Post: 10-15-2006, 04:26 PM
  4. M109 Interactive User Input
    By axis overtravel in forum Haas Mills
    Replies: 16
    Last Post: 07-31-2006, 09:55 PM

Posting Permissions

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