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:

crazy^millman

Verified Members
  • Posts

    19,579
  • Joined

  • Last visited

  • Days Won

    359

Everything posted by crazy^millman

  1. This not enough to convince you? Normally these are cut with a specialized gear hobbling machine. The other issue is the surface finish on the face of the tooth needs to be considered.
  2. Without opening the file probably not. A tooth profile for a gear is not the same as a 90 included angle. Maybe that is a 30 degree included angle, but normally the form on a tooth is not just a flat edge. That also looks like a bevel gear so that would be a special form tool would be needed.
  3. Really going to come down to was one a surface the edge was created on and one a solid or not? If from the same solid then it will be in the solid settings for the edge tolerance. Default is .005" or .075mm which could be the reason why it did it, but without a file hard to tell.
  4. Are you talking about the dreaded Solid Highlight added around 2019 or 2020? Here is where to turn it off in 2022, but that is there for each version. Yes I am not found of it all and one of the first things I turn off.
  5. No sorry that is part of the license process that HLE requires.
  6. Yes this could be a problem since you are new you don't understand the different switches the Post uses to control primary positive or negative output. There may need to be a prewind in the operation to allow whatever toolpath the Rotational travel it needs on one the primary axis of rotation. Normally on a table-table machine the primary is the one with limits and the secondary is the one with no limits, but that depends on the builder. Like Byte suggested a Z2G would help us help you. Welcome to the Emastercam Forum. Have a good day.
  7. Nothing like real world experience. Glad it was close enough to get you what you were looking for. Speed kills and in situations like this. We don't need speed we need a consistent controllable process to get the results we are after. If you are getting taper which I will suspect you are then a spring pass should work and not chatter.
  8. You can get a demo of it and try it out. I know a guy who use to work for CNC Software that can give you some help. Cough Cough Aaron Eberhard Cough Cough.
  9. No joy that old of a workspace and for different levels not good. I have gotten into the habit of just recreating my workspace files for each version. Trying to have them carry the way I have mine with no ribbons it hit or miss.
  10. Might try leaving .0015 and I would run it at .0004 to .0006 per tooth at 2000 rpms and see what kind of finish I get and then adjust from there.
  11. Well hopefully they have more information to help you solve it without that extra information hard to do any more to help. I agree none of it is working correctly, but I still thank I would be testing equal to conditions before I was testing greater than or less than. i would think about limiting the decimal values before anything just to rule that out. On a HAAS control i would have no idea where to start.
  12. That I cannot answer that is a question you will have to ask the machine builder. However why are you even trying to make that possible? What problem are you trying to solve by doing what you are doing? You have not once explained what you're trying to accomplish you just keep throwing out equations that make no logical sense and then want us to explain why they do or they don't make sense when they don't make sense to begin with. That is why JParis and myself are confused since what is the end game here? What are you trying to accomplish with this macro? Should it do what it is doing no it should not. That aside I never keep beating a dead horse I know something is not going to work then I acknowledge it will not work and move on. You have run how many tests and spent how much time proving it doesn't work. Okay what is the process and method you are trying to accomplish? What they end goal in mind then maybe someone can offer an alternative way to get there? You have proven it doesn't work, but then you keep asking your question in a way to have someone help you understand a process that should even be used to begin with. If you are trying to error proof something then you have to do something different. You should have a if #601 = #602 goto 1000 then after that use your less than or greater than logic. Having the greater than or less than logic first when you are testing for an equal to process is the wrong way to develop your macro. Test the first condition which is are they equal to each other. If they are and that is not the desired result then produce your error or complete your loop. If they are not equal to each other then you start the process of are they greater than or less than to each other. If there is math else where that is subtracting or adding to #601 and/or #602 to make it smaller or larger then you keep doing the equal to check until they are equal to finish that part of the macro. The way I see the math and variables you are creating a infinite loop that it cannot solve. If may prove right or wrong like suggested because at 20 places past the decimal they are greater than or less than each other, but because you cannot see that far out you are assume they are what they are not. The machine control is not that smart. If needs more help to know what your end results needs to be. This really goes for any computer program. What are the inputs and desired output. With that then we solve the process to do the error checks we need.
  13. Yes there is no attachments they are topics with the code embedded in them. Shoot me and email and I can work out how to help get what I have done integrated into your post.
  14. You are really tying to pass that math off as legit? How in the world can .25 be greater (<) than or even less than (>) .25? It is equal (=) to itself every day of the week and twice on Sunday. I have a quarter it is equal to a quarter. Now the quarter is greater than a dime, nickle and penny, but less than a half dollar, dollar and such. It can never be greater than or less than itself and you keep trying to say it is. Now if you want me to check out of this conversation I am glad too no sweat off my back, but I did review every equation and you and not explaining yourself correctly when is come to understanding the correct use of greater than or less than for the process you are using.
  15. I just bumped some old topics back to the surface take a look and let me know if you have any questions.
  16. View sheets are a tricky pain in the butt when it comes to names and not getting them to get wonky on you. Still wish we have a veiwsheets manager.
  17. To many parameters for it to take into account to say what is the best speeds and feeds for finishing. I agree the max rpms for that tool with that LOC not a good direction. How much material are you leaving to finish with? Does it have to be 7.3X to D? Can you use a stub flute extended reach endmill?
  18. Bump to share some custom drill cycle stuff shared over the years
  19. dump to cover some custom drill cycles stuff shared over the years
  20. Bump to cover Custom Drill Cycle stuff
  21. Bump to cover some Probing Logic shared over the years.
  22. That is not what he is saying. He is saying your logic in the equation is looking at the math and making a determination of what is greater or less than for numbers that by your math process are being made equal with the variables values you are using. You are comparing the same #601 and #602 math with the same inputs. This will create an infinite loop that will never close. If .9 is less than .9 then goto 1000 if .9 is greater than .9 then go to 1000. Replace the .9 with the .25 it is still resulting in the same result even thought you are using #510-#513 for values the issue is the end results for each equation is the same value. In every example your process is using values that will equal themselves, but you are using a greater or less than equation when it should be a equal too equation since you are comparing apples to apples and not apples to oranges. Like suggested step away and don't take the help as a personal insult it is not meant that way.
  23. Here is one to play around with if you really want to explore what you can do with 3D tools. C6-4-SL40 113 150-AX.zip

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