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

Thread: HSM Constant Z profile - G Code

  1. #1
    Registered
    Join Date
    Nov 2007
    Location
    Thailand
    Posts
    308
    Downloads
    0
    Uploads
    0

    HSM Constant Z profile - G Code

    Simple profile (triangle/square with rounded corners) and I want to use HSM CZ strategy.

    All I'm doing is finishing the outside profile of some parts. I usually use 2D profile but want to use HSM 'cos I like the toolpaths where it jumps from profile to profile, and I've got 6 parts on the jig so I want it all nice and smooth.

    Getting the code is not a problem and essentially the toolpaths are fine, but what annoys me is that the code is so long compared to a 2D profile generated code which is using G2/3 to round the corners. HSM is generating the corners as point to point.

    For the 2D profile the code is generated using @line for the straight bits and @arc for the corners, but the HSM uses @line for it all, including the corners. Can I change this or am I stuck with it? I would like to see G2/3 in the corners.


  2. #2
    Registered SolidCAM_13's Avatar
    Join Date
    Jun 2010
    Location
    Australia
    Posts
    18
    Downloads
    0
    Uploads
    0
    I take it you have "Fit arcs" turned on in HSM. This will add G2/3 moves into the code to replace line moves if its possible.
    Cheers
    D


  3. #3
    Registered
    Join Date
    Nov 2007
    Location
    Thailand
    Posts
    308
    Downloads
    0
    Uploads
    0
    Hi Dan,

    Yes, I tried it with and without 'fit arcs'.

    Must be something else as it's using G3 on the lead in/out moves.

    Hang on, just tried messing with the tolerances and we seem to be getting somewhere.

    However, in the 2D profile I get very exact G2/3 moves with a R15 or whatever, but the HSM is giving R15, R15.1, R14.9 etc around the same curve, with maybe a very short (0.1~0.2mm) linear move splitting the curve into parts.

    I'll keep playing.


  4. #4
    Registered
    Join Date
    Oct 2007
    Location
    United Kingdom
    Posts
    442
    Downloads
    0
    Uploads
    0
    Hi Matt,

    Have you played with the parameters on the "smoothing" tab? I have never had cause to use it myself but on reading the User Guide, it looks promising.

    All the best

    Bob


  • #5
    Registered CNCRim's Avatar
    Join Date
    Feb 2006
    Location
    usa
    Posts
    949
    Downloads
    0
    Uploads
    0
    don't have solidCAM, but I asked myself the same question with other CAM system and had played with the parameter no luck. the only thing I see you can try is force the post output G2/G3.
    The best way to learn is trial error.


  • #6
    Registered
    Join Date
    Nov 2007
    Location
    Thailand
    Posts
    308
    Downloads
    0
    Uploads
    0
    This isn't going well. I don't understand what's going on. Check this out.

    I made a block, 50mm wide x 100mm long x 20mm thick, with R10 fillets on the corners. Then use a 10mm endmill with no compensation around the outside, finish cut only.

    The first lot of code is simple 2D profile. As you can see the points are nice and crisp, no decimal places.

    N8 (----------------------)
    N9 (F-CONTOUR-T1 - PROFILE)
    N10 (----------------------)
    N11 X90. Y-7. Z10.
    N12 Z2.
    N13 G1 Z-20. F33
    N14 X92. F100
    N15 G3 X90. Y-5. R2.
    N16 G1 X10.
    N17 G2 X-5. Y10. R15.
    N18 G1 Y40.
    N19 G2 X10. Y55. R15.
    N20 G1 X90.
    N21 G2 X105. Y40. R15.
    N22 G1 Y10.
    N23 G2 X90. Y-5. R15.
    N24 G3 X88. Y-7. R2.
    N25 G1 X90.
    N26 G0 Z10.
    N27 M5
    N28 M9
    N29 G91 G28 Z0.

    Now, the code below is the same part but using HSM constant Z. Note that wheras example above has a point, let's say this line: N17 G2 X-5. Y10. R15.

    The same point in HSM CZ comes out as: N16 G2 X-4.978 Y9.183 R15.0022, which as far as I can work out is 0.04mm to the outside of the intended toolpath.

    N11 X92.4766 Y-6.8403 Z10.
    N12 Z-20.
    N13 G3 X90.3437 Y-4.9827 R2. F33
    N14 G1 X90.0928 Y-5. F100
    N15 X9.9073
    N16 G2 X-4.978 Y9.183 R15.0022
    N17 G1 X-4.999 Y40.1915
    N18 G2 X9.9073 Y55. R15.0017
    N19 G1 X90.0928
    N20 G2 X105. Y40.1021 R15.0019
    N21 G1 X104.9989 Y9.8085
    N22 G2 X91.97 Y-4.8705 R15.0025
    N23 G1 X90.3437 Y-4.9827
    N24 G3 X88.4861 Y-7.1156 R2. F200
    N25 G1 Z10. F20000
    N26 M5
    N27 M9
    N28 G91 G28 Z0.

    On the HSM I have the following settings:

    Part Setting, facet tolerance - 0.0001mm
    Geometry, facet tolerance - 0.0001mm
    Passes, tolerance - 0.0001mm
    Passes, Point reduction, tolerance - 0.03mm

    Now I had to spend about an hours messing about with these to come up with this code, and is the closest I can get to resembling the 2D profile code.

    If I go tighter on the point reduction tolerance then I just get long code again and the G2 codes become replaced with linear moves, and even then it doesn't look as if the toolpath is any tighter on the intended tool path than before. And the point: X-4.978 Y9.183 still exists in the code, so apart from a lot of G code it doesn't appear that different.

    Maybe I just being finicky but if I want the cutter to go to a point then I want it to go there, not somewhere near.

    Using a bigger tolerance in Passes, tolerance such as 0.1mm gives different results again, some accurate some not.

    What's going on!!!!


  • #7
    Registered
    Join Date
    Nov 2007
    Location
    Thailand
    Posts
    308
    Downloads
    0
    Uploads
    0
    Bob,

    Smoothing doesn't seem to affect anything in this case.

    I must be missing something in the .mac or .gpp files, but nothing I've played with seems to make any difference.

    The annoying thing is that I use HSM a lot, and find it very swift and fun to use and watch while it's cutting, but this would be the first real shot at a simple profile with it and I can't get my head around the difference between the 2D profile toolpath and the (all over the place) HSM profile.

    Hmmmm..................


  • #8
    Registered
    Join Date
    Jan 2010
    Location
    Australia
    Posts
    81
    Downloads
    0
    Uploads
    0

    Smile

    Hey Matt,

    The way that I personally look at these jobs is that if I can do a toolpath with a simple 2D operation then I use a simple 2D operation, end of story.
    The other thing I do is only worry about the part. If the part looks good then I personally don't care what the code looks like. I guess that's because I didn't start life as a machinist or code programmer so I don't try to read what the code is doing or how it gets me to where I want to be.
    But I know exactly what you mean about the size of the code. I played around with a round boss today, 2 toolpaths, HSM & 2D, same speeds feeds and step-down, same tols on part. 2D 53 lines of code, HSM 7260 lines.

    Come to think of it, now I'm getting bugged ............................


  • #9
    Registered
    Join Date
    Nov 2007
    Location
    Thailand
    Posts
    308
    Downloads
    0
    Uploads
    0
    Dengo,

    As I said, I've used HSM a lot for finishing, but never on a 2D profile such as this. And yes, I do agree that using a 2D strategy on a 2D profile is probably the way to go. But my problem is that I'm a tinkerer. I can't leave anything alone and I NEED to know what's going on. It's not desire, it's necessity!

    In my situation I basically think of the idea, design the part, CAM the part, buy the material, make the part and test the part, so I'm involved at all stages. As such I want to make sure that it's all going to plan. And seeing G code that looks to be inaccurate is annoying and frustrating, especially when I can't seem to do anything about it.

    As it is, the part I would be using this on does not need to be that accurate. In fact when I was getting them made before I had a VMC I generously gave the shop +/- 0.1mm, so wandering off the intended toolpath by 0.04mm is not really a problem, and you'd never see it on the finished part, and it would have no affect in performance of the part. So why the stress?

    Well, what if it was a problem and did affect performance?

    Maybe I should finish my coffee before going on as I'm getting stress out again


  • #10
    Registered
    Join Date
    Oct 2007
    Location
    United Kingdom
    Posts
    442
    Downloads
    0
    Uploads
    0
    Hi Matt,

    I have just replicated your test part and program and I have got exactly the same as you. The only thing I can think is that HSM was developed to meet a need on older CNC's that didn't have sophisticated acceleration & deceleration algorithms built into the control (acc 'n dec in machine tool builder speak) and what we are seeing is the software applying some generic algorithm to account for servo lag. Where they got this algorithm from is anyones guess and I doubt SolidCAM can tell you as the HSM module is an adaptation of another CAM package's kernel.

    How it affects performance, well all I can say is on the curvy 3D stuff HSM is 15 ~ 40% faster than the standard SolidCAM 3D module on an old Mori Seiki SH400 with Fanuc 16M whilst on our Hermle with Heidenhain iTNC530 the difference between HSM and vanilla 3D is negligible. Only by machining your test part first with 2D, then at different tolerance settings in HSM would find out just what the impact on geometry is.

    I share your pain in needing to know what is just going on under the bonnet, what are the rules the software is working to. I am the same.
    Last edited by Brakeman Bob; 06-30-2010 at 03:22 AM. Reason: Loose nut on the keyboard


  • #11
    Registered
    Join Date
    Nov 2007
    Location
    Thailand
    Posts
    308
    Downloads
    0
    Uploads
    0
    Phew, I must say that I'm relieved that it isn't me going crazy.

    Bob, your idea of acc 'n dec is probably a good one.

    Maybe I'll just stick to a nice easy 2D profile for now on this one and sleep easier.

    As for speed, I've found the difference between 3D and HSM negligible on most parts. I use HSM more than 3D now as I can find better control with where the tool is going, and I like the sort of continued motion of the tool. Where the HSM gets me is that it feeds over the part (in the air) as opposed to rapiding (as in 3D). I haven't done anything yet, but I'm sure I can change this. My machine has max cutting feed of 20320m/min (800"/min) so I reckon we can speed things up a bit by cheating the .gpp file into throwing up a G0 if it spots a G1 and a F20320 together. Possible?

    Anyway, other things to do, thanks everyone for all your help so far.

    If anyone does come up with the answer be sure to let us all know!


  • #12
    Registered
    Join Date
    Jan 2010
    Location
    Australia
    Posts
    81
    Downloads
    0
    Uploads
    0
    You can control your rapid feed rate in the Operation Tool Data dialogue box in HSM. You can set feed in and out and also rapid moves. I'm pretty sure HSM has G0 removed deliberately and replaced by G1 moves to allow for machines that have fixed rapid speeds i.e. with a G0 if you rapid from X0.0 Y0.0 to a point X200.0 Y 20.0 then the tool will get to its Y position 10 times faster than in X thus causing an arc in the path and the possibility of a collision. G1 at max feed solves this.
    I also like the fact that you can completely control retract moves by either just clearing your part or totally exiting the job, whatever you need, there is just so much more control and its far less likely (?) to do anything silly.


  • Page 1 of 2 12 LastLast

    Similar Threads

    1. G-code loops on profile ?
      By freakolot in forum SolidCam
      Replies: 5
      Last Post: 07-18-2009, 02:07 AM
    2. Gerber Profile Router G Code Information
      By cryg in forum Canadian Club House
      Replies: 0
      Last Post: 07-02-2009, 01:08 PM
    3. Komatsu fine plasma profile cutting G code
      By nguyenthanhthi in forum G-Code Programing
      Replies: 0
      Last Post: 03-06-2009, 06:50 AM
    4. Profile - Depth Type 3D - G Code
      By mattpatt in forum SolidCam
      Replies: 7
      Last Post: 02-16-2009, 03:33 AM
    5. Flatten/Squash G-code to constant Z
      By 94vette in forum G-Code Programing
      Replies: 3
      Last Post: 05-20-2008, 01:42 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.