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:

Charlie Pierson

Verified Members
  • Posts

    443
  • Joined

  • Last visited

Posts posted by Charlie Pierson

  1. Have the post alter the variable 'speed' so a spindle speed not ending in zero won't happen, such as:

    change the least significant digit to zero.

    speed = (int(speed/10)) * 10

     

    or

     

    define a new variable, say, alt_speed  then a new postblock:

    pfixspeed         # spindle speed to end in zero

                 alt_speed = (int(speed/10)) * 10

                 speed = alt_speed

                  *speed

     

    or

     

    pfixspeed         # spindle speed to end in zero

                 alt_speed = (int(speed/10)) * 10

                  *alt_speed

    then substitute pfixspeed where speed is output

     

     

    • Like 1
  2. On 1/31/2020 at 4:11 PM, Grimes said:

    gotta be for every feedrate though, do your mazaks run a G1 in ipm? i think all of ours run fpr on all feed rates. so if i use like 50 ipm on the plunge, then a 10 ipm feed thats a lot of changes and a pita, i use find and replace in ncplot. but still a bit more work. if it cant be done it cant be done, havent been on that machine i a week so it hasnt been a problem. thanks all as always.

    My previous just change the feedrate format to ipr in tapping only.

    The rest is in ipm.

  3. Here is how I solved it for our HCN4000.

    define your own variable and format it:  -->  fmt  "F" 13 thdlead

     

     

    Create a routine to convert ipm to ipr:

    p_whichfeed    # ipm to ipr for tap cycle
                   if drillcyc$ = 3,
                   [
                    thdlead = 1 / n_tap_thds$
                    thdlead
                   ]
                    else,
                   [
                    *fr$
                   ]

     

    find where the F7.6923  is being output from , (perhaps ptap$ ?)

    if so,

    Substitute 'p_whichfeed' for '*pitch' in ptap$

     

    • Like 1
  4. We purchased a new Haas ST20Y last fall for our up and coming in-house education center.

    We noticed that the spindle made a high pitch whine that became intolerable at spindle speeds above 3K.

    The installation tech said that that was normal for this machine since Haas changed the design of the spindle to a belt type and all the new ST20's have the same noise.

    We measured the decibel levels at 1K, 2K, 3K, 4K, and 5K .

    We found that at 1K the level was 76.6 and that the level would consistently increase to 105.0 at 4500 rpm.

    I am hard pressed to believe that this situation should be considered "normal" as the noise can make you feel ill.

    Ted Nugent wasn't as loud !! (or The Who, or Blue Cheer)

    Does anyone else out there have the same problem or am I just whining as bad as the spindle ??

    • Like 1
    • Sad 1

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