<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Help enabling 5 Axis on mach3 postprocessor in Fusion Manufacture Forum</title>
    <link>https://forums.autodesk.com/t5/fusion-manufacture-forum/help-enabling-5-axis-on-mach3-postprocessor/m-p/9170943#M96603</link>
    <description>&lt;P&gt;@Anonymous&amp;nbsp;&lt;/P&gt;&lt;P&gt;I just ran a "Swarf" cut around your block, this has constant movement in both A and C axis so is a pretty good test and I have attached the code below.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;</description>
    <pubDate>Thu, 28 Nov 2019 00:27:11 GMT</pubDate>
    <dc:creator>engineguy</dc:creator>
    <dc:date>2019-11-28T00:27:11Z</dc:date>
    <item>
      <title>Help enabling 5 Axis on mach3 postprocessor</title>
      <link>https://forums.autodesk.com/t5/fusion-manufacture-forum/help-enabling-5-axis-on-mach3-postprocessor/m-p/9163686#M96569</link>
      <description>&lt;P&gt;Hello, I am new to fusion 360 as well as Manufacturing.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What I need is:&lt;/P&gt;&lt;P&gt;*To modify the post processor to activate A and B axis (A is mounted in Z axis and B is mounted in Axis).&lt;/P&gt;&lt;P&gt;*Give the limits of A and B {(A will be -180,180)(B needs to be -120,120 )[I use 0 as center]}&lt;/P&gt;&lt;P&gt;*To make sure the Machinning limits don't exceed the soft limits of my machine.&lt;/P&gt;&lt;P&gt;*That the mach3 software tool path shows the right path.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What I'v been doing so far:&lt;/P&gt;&lt;P&gt;I have a no brand CNC 5Axis Machine. I've been using mach 3 post processor with 3 axis (XYZ) and works just fantastic, The problem is when I try to run the 2 extra axis (A and B-head to head-).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have been doing research and learning about rewriting the post processor, I have also been reading all over the place and I could not figure out how to do it right. So far I can make it move the 5 axis at the same time but does not follow the specific path. In mach3 software it shows the right path but when I execute the program on my CNC machine it does not respond correctly. I am running out of ideas of how to modify the program so some assistance will be really appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;U&gt;I have been following step by step the forums but no luck so far with modifying the post processor.&lt;/U&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The main post processor for my CNC&lt;/P&gt;&lt;P&gt;for the 3axis, I use "mach3mill" (Which I try to modify with no success).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The one I found (in fusion360 forums)for the 5axis is "&lt;SPAN class="lia-attachment-text-display"&gt;mach3mill X axis A and B" but this does not work right (I been trying to modify with no success).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="lia-attachment-text-display"&gt;The most resent I've been trying is the "Current progress 5axismaker1" I did modification on my program mach3 software (Using A as C axis).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="lia-attachment-text-display"&gt;Thank you in advance!&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 24 Nov 2019 00:48:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-manufacture-forum/help-enabling-5-axis-on-mach3-postprocessor/m-p/9163686#M96569</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-11-24T00:48:47Z</dc:date>
    </item>
    <item>
      <title>Re: Help enabling 5 Axis on mach3 postprocessor</title>
      <link>https://forums.autodesk.com/t5/fusion-manufacture-forum/help-enabling-5-axis-on-mach3-postprocessor/m-p/9164071#M96570</link>
      <description>&lt;P&gt;@Anonymous&amp;nbsp;&lt;/P&gt;
&lt;P&gt;i just want to make sure that your machine kinematics is something like this.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="images.jpg" style="width: 200px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/701149iBEEC7887F57AEB09/image-size/large?v=v2&amp;amp;px=999" role="button" title="images.jpg" alt="images.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;If so then change the onopen section like the below one&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;function onOpen() {

  if (true) {
  var bAxis = createAxis({coordinate:1, table:true, axis:[1, 0, 0], range:[-120 - 0.0001, 120 + 0.0001], preference:0});
  var aAxis = createAxis({coordinate:0, table:true, axis:[0, 0, 1], range:[-180 - 0.0001, 180 + 0.0001], preference:0});
  machineConfiguration = new MachineConfiguration(bAxis,aAxis);

    setMachineConfiguration(machineConfiguration);
    optimizeMachineAngles2(0); // map tip mode
  }&lt;/PRE&gt;
&lt;P&gt;If your machine has TCP enabled then above code will work fine,If it is not the change&amp;nbsp; optimizeMachineAngles2(0);&lt;/P&gt;
&lt;P&gt;to&amp;nbsp; optimizeMachineAngles2(1);&lt;/P&gt;
&lt;P&gt;This should work fine,&lt;/P&gt;
&lt;P&gt;Change and test it carefully.&lt;/P&gt;
&lt;P&gt;Still have problems attach your .f3d file and the issue your are facing probably video will give us the better understanding.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 24 Nov 2019 14:44:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-manufacture-forum/help-enabling-5-axis-on-mach3-postprocessor/m-p/9164071#M96570</guid>
      <dc:creator>boopathi.sivakumar</dc:creator>
      <dc:date>2019-11-24T14:44:33Z</dc:date>
    </item>
    <item>
      <title>Re: Help enabling 5 Axis on mach3 postprocessor</title>
      <link>https://forums.autodesk.com/t5/fusion-manufacture-forum/help-enabling-5-axis-on-mach3-postprocessor/m-p/9164287#M96571</link>
      <description>&lt;P&gt;Hello boopathi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you so much for your quick respond, it give me gratification that Autodesk cares about the costumers, giving me peace of mind that I choose the right software company &lt;span class="lia-unicode-emoji" title=":smiling_face_with_smiling_eyes:"&gt;😊&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;After activating the 5 axis on the “mach3mill.cps” (which I will upload as mach3mill5axis.txt) the machine fallows its own path. The limits on B axis are out of reach. I try the “optimizeMachineAngles2(0 and 1)” with no success.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am doing a really simple pass using the multi-axis flow, which I am attaching.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I also I am attaching the screenshot of the limits going beyond what is desire.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I execute the program in my CNC machine in the second attempt (changing optimizeMachineAngles2)&amp;nbsp; I didn’t zero assuming it will do automatic which it didn’t&amp;nbsp; do it beguiling to move the A and B axis.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Sun, 24 Nov 2019 19:00:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-manufacture-forum/help-enabling-5-axis-on-mach3-postprocessor/m-p/9164287#M96571</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-11-24T19:00:58Z</dc:date>
    </item>
    <item>
      <title>Re: Help enabling 5 Axis on mach3 postprocessor</title>
      <link>https://forums.autodesk.com/t5/fusion-manufacture-forum/help-enabling-5-axis-on-mach3-postprocessor/m-p/9164304#M96572</link>
      <description>&lt;P&gt;hello boopathi&lt;/P&gt;&lt;P&gt;I try to send the video but it does not let me, or i don't not how to uploaded. here are pictures&lt;/P&gt;</description>
      <pubDate>Sun, 24 Nov 2019 19:21:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-manufacture-forum/help-enabling-5-axis-on-mach3-postprocessor/m-p/9164304#M96572</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-11-24T19:21:22Z</dc:date>
    </item>
    <item>
      <title>Re: Help enabling 5 Axis on mach3 postprocessor</title>
      <link>https://forums.autodesk.com/t5/fusion-manufacture-forum/help-enabling-5-axis-on-mach3-postprocessor/m-p/9164651#M96573</link>
      <description>&lt;P&gt;Set this bit to false on both axis, table true means the a, b or c are on the machine table, not head.&lt;/P&gt;
&lt;PRE&gt;table:true&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 25 Nov 2019 02:47:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-manufacture-forum/help-enabling-5-axis-on-mach3-postprocessor/m-p/9164651#M96573</guid>
      <dc:creator>daniel_lyall</dc:creator>
      <dc:date>2019-11-25T02:47:15Z</dc:date>
    </item>
    <item>
      <title>Re: Help enabling 5 Axis on mach3 postprocessor</title>
      <link>https://forums.autodesk.com/t5/fusion-manufacture-forum/help-enabling-5-axis-on-mach3-postprocessor/m-p/9164662#M96574</link>
      <description>&lt;P&gt;Yep &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/2815263"&gt;@daniel_lyall&lt;/a&gt;&amp;nbsp;was right I just missed this one.change it like this and try to run.&lt;/P&gt;
&lt;PRE&gt;function onOpen() {

  if (true) {
  var bAxis = createAxis({coordinate:1, table:false, axis:[1, 0, 0], range:[-120 - 0.0001, 120 + 0.0001], preference:0});
  var aAxis = createAxis({coordinate:0, table:false, axis:[0, 0, 1], range:[-180 - 0.0001, 180 + 0.0001], preference:0});
  machineConfiguration = new MachineConfiguration(bAxis,aAxis);

    setMachineConfiguration(machineConfiguration);
    optimizeMachineAngles2(0); // map tip mode
  }&lt;/PRE&gt;
&lt;P&gt;If it not works then&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Make sure to zip the file before attaching and send the model file (.F3d) also&lt;BR /&gt;File&amp;gt;Export&amp;gt;.F3d.&lt;BR /&gt;Take the video of how the machine is moving and attach it here.&lt;BR /&gt;Zip all file.&lt;/P&gt;</description>
      <pubDate>Mon, 25 Nov 2019 03:00:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-manufacture-forum/help-enabling-5-axis-on-mach3-postprocessor/m-p/9164662#M96574</guid>
      <dc:creator>boopathi.sivakumar</dc:creator>
      <dc:date>2019-11-25T03:00:20Z</dc:date>
    </item>
    <item>
      <title>Re: Help enabling 5 Axis on mach3 postprocessor</title>
      <link>https://forums.autodesk.com/t5/fusion-manufacture-forum/help-enabling-5-axis-on-mach3-postprocessor/m-p/9164698#M96575</link>
      <description>&lt;P&gt;Hello daniel_lyal,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for the assistance. I fallow your advice changing the values on table to false, now it does not give me a tool path. When fusion processes the file, the safe error shows:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;P&gt;Error: Rewind of machine is required for simultaneous multi-axis toolpath.&lt;/P&gt;&lt;P&gt;Error in operation: 'Flow1'&lt;/P&gt;&lt;P&gt;Failed while processing onLinear5D() for record 663.&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using mach3mill cps file to post process.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 25 Nov 2019 03:24:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-manufacture-forum/help-enabling-5-axis-on-mach3-postprocessor/m-p/9164698#M96575</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-11-25T03:24:58Z</dc:date>
    </item>
    <item>
      <title>Re: Help enabling 5 Axis on mach3 postprocessor</title>
      <link>https://forums.autodesk.com/t5/fusion-manufacture-forum/help-enabling-5-axis-on-mach3-postprocessor/m-p/9164721#M96576</link>
      <description>&lt;P&gt;Hello boopathi.sivakumar,&lt;/P&gt;&lt;P&gt;after make the new changes, it shows the error:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;###############################################################################&lt;/P&gt;&lt;P&gt;Error: Rewind of machine is required for simultaneous multi-axis toolpath.&lt;/P&gt;&lt;P&gt;Error in operation: 'Flow1'&lt;/P&gt;&lt;P&gt;Failed while processing onLinear5D() for record 663.&lt;/P&gt;&lt;P&gt;###############################################################################&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Error: Failed to invoke function 'onRewindMachine'.&lt;/P&gt;&lt;P&gt;Error: Failed to invoke 'onRewindMachine' in the post configuration.&lt;/P&gt;&lt;P&gt;Error: Failed to execute configuration.&lt;/P&gt;&lt;P&gt;Stop time: Monday, November 25, 2019 3:17:21 AM&lt;/P&gt;&lt;P&gt;Post processing failed.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to attach the file but the forum don't want to upload the video.&lt;/P&gt;&lt;P&gt;I reduce the quality of the video about 30 MB and still dont want to take it.&lt;/P&gt;&lt;P&gt;I compress it as .7z and still dont want to take the file.&lt;/P&gt;&lt;P&gt;if i figure it out I will update the video&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Mon, 25 Nov 2019 03:45:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-manufacture-forum/help-enabling-5-axis-on-mach3-postprocessor/m-p/9164721#M96576</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-11-25T03:45:25Z</dc:date>
    </item>
    <item>
      <title>Re: Help enabling 5 Axis on mach3 postprocessor</title>
      <link>https://forums.autodesk.com/t5/fusion-manufacture-forum/help-enabling-5-axis-on-mach3-postprocessor/m-p/9164740#M96577</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/8049428"&gt;@boopathi.sivakumar&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I did my reserch an here is the video with the files.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;IF does not work the screen cast window ...&lt;/P&gt;&lt;P&gt;&lt;A href="https://autode.sk/35ryUI4" target="_blank"&gt;https://autode.sk/35ryUI4&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 25 Nov 2019 04:17:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-manufacture-forum/help-enabling-5-axis-on-mach3-postprocessor/m-p/9164740#M96577</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-11-25T04:17:34Z</dc:date>
    </item>
    <item>
      <title>Re: Help enabling 5 Axis on mach3 postprocessor</title>
      <link>https://forums.autodesk.com/t5/fusion-manufacture-forum/help-enabling-5-axis-on-mach3-postprocessor/m-p/9164780#M96578</link>
      <description>&lt;P&gt;@Anonymous&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Change the code like this add cyclic:true&lt;/P&gt;
&lt;PRE&gt;if (true) {
    var bAxis = createAxis({coordinate:0, table:false, axis:[1, 0, 0], range:[-120 - 0.0001, 120 + 0.0001], preference:0});
    var aAxis = createAxis({coordinate:1, table:false, axis:[0, 0, 1], cyclic:true,range:[0, 360], preference:0});&lt;/PRE&gt;
&lt;P&gt;Now it will post the code if your machine supports 0-360 then leave as like the above ,If it supports -180 to 180 then use the below code&lt;/P&gt;
&lt;PRE&gt;if (true) {
    var bAxis = createAxis({coordinate:0, table:false, axis:[1, 0, 0], range:[-120 - 0.0001, 120 + 0.0001], preference:0});
    var aAxis = createAxis({coordinate:1, table:false, axis:[0, 0, 1], cyclic:true,range:[-180, 180], preference:0});
    machineConfiguration = new MachineConfiguration(bAxis,aAxis);&lt;/PRE&gt;
&lt;P&gt;try with this code and one more thing maybe the direction in the machine will be opposite of what you are trying to program in the software in that case in the axis use -1 like this axis:[-1,0,0] in the var bAxis.&lt;/P&gt;
&lt;P&gt;try this and give me the feedback&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 25 Nov 2019 05:33:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-manufacture-forum/help-enabling-5-axis-on-mach3-postprocessor/m-p/9164780#M96578</guid>
      <dc:creator>boopathi.sivakumar</dc:creator>
      <dc:date>2019-11-25T05:33:20Z</dc:date>
    </item>
    <item>
      <title>Re: Help enabling 5 Axis on mach3 postprocessor</title>
      <link>https://forums.autodesk.com/t5/fusion-manufacture-forum/help-enabling-5-axis-on-mach3-postprocessor/m-p/9165951#M96579</link>
      <description>&lt;P&gt;hello &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/8049428"&gt;@boopathi.sivakumar&lt;/a&gt;'&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your fast respond.&lt;/P&gt;&lt;P&gt;The code that you give activates the 5 axis, and generate the code!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;if (true) {
    var bAxis = createAxis({coordinate:0, table:false, axis:[1, 0, 0], range:[-120 - 0.0001, 120 + 0.0001], preference:0});
    var aAxis = createAxis({coordinate:1, table:false, axis:[0, 0, 1], cyclic:true,range:[-180, 180], preference:0});
    machineConfiguration = new MachineConfiguration(bAxis,aAxis);&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;However, the soft limit of b was way to off. I invert the "a and b" coordinate and now it respect the soft limits given.&lt;BR /&gt;&lt;BR /&gt;when i try to program a simpler program so i can adjust the point, the A axis wont move wile the b axis do the job.&lt;BR /&gt;i try to change setting like changing values on axis and optimizeMachineAngles2 values with no success.&lt;BR /&gt;I believe that in order to work proper the A axis need to move either -90 or 90 (from 0 that is the center programed).&lt;BR /&gt;&lt;BR /&gt;I will attach the new program, video and post processor program.&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;A href="https://autode.sk/2KSdn3A" target="_blank"&gt;https://autode.sk/2KSdn3A&lt;/A&gt;&lt;/STRONG&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 25 Nov 2019 17:22:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-manufacture-forum/help-enabling-5-axis-on-mach3-postprocessor/m-p/9165951#M96579</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-11-25T17:22:37Z</dc:date>
    </item>
    <item>
      <title>Re: Help enabling 5 Axis on mach3 postprocessor</title>
      <link>https://forums.autodesk.com/t5/fusion-manufacture-forum/help-enabling-5-axis-on-mach3-postprocessor/m-p/9166095#M96580</link>
      <description>I think we need some fine tuning,we are very much close, I'm out of office now do one thing Just create a manual program that rotates along&lt;BR /&gt;A45 B0 ,&lt;BR /&gt;A45 B90,&lt;BR /&gt;A45 B -90 and&lt;BR /&gt;A45 B-180/180&lt;BR /&gt;&lt;BR /&gt;Take toolpath individually first on any one direction.and then multiple sides.&lt;BR /&gt;&lt;BR /&gt;Record the video of manual nc program and send me the manual codes which is working fine and the setup you have made in the machine while running this manual code&lt;BR /&gt;I'll have a look at it and then we will take it forward.</description>
      <pubDate>Mon, 25 Nov 2019 18:35:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-manufacture-forum/help-enabling-5-axis-on-mach3-postprocessor/m-p/9166095#M96580</guid>
      <dc:creator>boopathi.sivakumar</dc:creator>
      <dc:date>2019-11-25T18:35:30Z</dc:date>
    </item>
    <item>
      <title>Re: Help enabling 5 Axis on mach3 postprocessor</title>
      <link>https://forums.autodesk.com/t5/fusion-manufacture-forum/help-enabling-5-axis-on-mach3-postprocessor/m-p/9166696#M96581</link>
      <description>&lt;P&gt;Hello &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/8049428"&gt;@boopathi.sivakumar&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for you quick response!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I just saw the message and I have to learn how to do manually numeric code. I try to do calculation as you&amp;nbsp; suggest but I could not figure it out.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am attaching the video, and file that I did the manual numeric code as well as my mach3 configuration, and in the two pictures.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Once again thank you so much for the help. It does make a huge differences for the software experiences (fusion 360).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://autode.sk/2skd23r" target="_blank"&gt;https://autode.sk/2skd23r&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Nov 2019 06:06:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-manufacture-forum/help-enabling-5-axis-on-mach3-postprocessor/m-p/9166696#M96581</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-11-26T06:06:42Z</dc:date>
    </item>
    <item>
      <title>Re: Help enabling 5 Axis on mach3 postprocessor</title>
      <link>https://forums.autodesk.com/t5/fusion-manufacture-forum/help-enabling-5-axis-on-mach3-postprocessor/m-p/9166785#M96582</link>
      <description>&lt;P&gt;@Anonymous&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for the feedback do the modification like this&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;if (true) {
    var bAxis = createAxis({coordinate:1, table:false, axis:[1, 0, 0], range:[-120 - 0.0001, 120 + 0.0001], preference:0});
    var aAxis = createAxis({coordinate:0, table:false, axis:[0, 0, 1], cyclic:true,range:[-180,180], preference:0});
    machineConfiguration = new MachineConfiguration(bAxis,aAxis);&lt;/PRE&gt;
&lt;P&gt;Now it will work. and i have attached a sample program also please test it and it should match with simulation i have attached here&lt;/P&gt;
&lt;P&gt;&lt;A href="https://autode.sk/2XK1eTC" target="_blank" rel="noopener"&gt;Screencast Video&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Nov 2019 07:33:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-manufacture-forum/help-enabling-5-axis-on-mach3-postprocessor/m-p/9166785#M96582</guid>
      <dc:creator>boopathi.sivakumar</dc:creator>
      <dc:date>2019-11-26T07:33:31Z</dc:date>
    </item>
    <item>
      <title>Re: Help enabling 5 Axis on mach3 postprocessor</title>
      <link>https://forums.autodesk.com/t5/fusion-manufacture-forum/help-enabling-5-axis-on-mach3-postprocessor/m-p/9167382#M96583</link>
      <description>&lt;P&gt;&lt;A href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/8049428" target="_blank" rel="noopener"&gt;@boopathi.sivakumar&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/7992292" target="_blank" rel="noopener"&gt;@cuan_cuan&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/2815263" target="_blank" rel="noopener"&gt;@daniel_lyall&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Really, really nice work guys, you are a credit to the Community. A very good exercise in modifying a Post Processor.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I understand that as an excercise in coding it is very interesting but aside from that why not just use a PP that already does 5 Axis that only needs very minor tweaks saving loads of work.&lt;/P&gt;&lt;P&gt;Here is a screen cast of a flow strategy (Don`t know why I it wouldn`t go all the way round when doing multiple passes) and the code, it is already setup as it should be according to your machine build, the axis around the Z is a C axis and the tilting head is an A axis, seems to work fine and looks to be outputting code correctly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To get to where you are in that it is very close to what I have here is a real achievement for sure &lt;SPAN class="lia-unicode-emoji"&gt;&lt;SPAN class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="lia-unicode-emoji"&gt;&lt;SPAN class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Anyway, it is just for interest so have a look and critique it as much as you like &lt;SPAN class="lia-unicode-emoji"&gt;&lt;SPAN class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="lia-unicode-emoji"&gt;&lt;SPAN class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Code file attached.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;DIV class="iframe-container" style="position: relative; height: 0; margin: 0; padding-bottom: 92.1875%;"&gt;&lt;IFRAME width="640" height="590" style="position: absolute; left: 0; top: 0; width: 100%; height: 100%;" src="https://screencast.autodesk.com/Embed/Timeline/e25079d9-29d0-4e0f-8992-8c454a8ad8bb" frameborder="0" allowfullscreen="true" webkitallowfullscreen="true" scrolling="no"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;&amp;nbsp;&lt;P&gt;&lt;/P&gt;&lt;DIV class="myscreencast-iframe iframe-container"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="myscreencast-iframe iframe-container"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="myscreencast-iframe iframe-container"&gt;&amp;nbsp;&lt;/DIV&gt;</description>
      <pubDate>Tue, 26 Nov 2019 13:34:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-manufacture-forum/help-enabling-5-axis-on-mach3-postprocessor/m-p/9167382#M96583</guid>
      <dc:creator>engineguy</dc:creator>
      <dc:date>2019-11-26T13:34:31Z</dc:date>
    </item>
    <item>
      <title>Re: Help enabling 5 Axis on mach3 postprocessor</title>
      <link>https://forums.autodesk.com/t5/fusion-manufacture-forum/help-enabling-5-axis-on-mach3-postprocessor/m-p/9167719#M96584</link>
      <description>&lt;P&gt;Hello &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/8049428"&gt;@boopathi.sivakumar&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The program activate the 5 axis and respect the limits! This is so awesome!!!!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Once again, thank you for the fast response.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The nc program "Trail_5 one pass" which I am uploading show:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;* A axis is off in the path for example line 14 an 16 i think should be A0 (which I modify). Then i realized that the next modification needs to be into the x axis as well (because the x axis needs to back up or forward so A and B axis hit the target) so I assume that that is in fusion 360.&lt;/P&gt;&lt;P&gt;* Also I notices that does not raise the tip (drill bit/I dont know how to call it), I think this may cut unintentionally material (which I am assuming because I am cutting air).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;A href="https://autode.sk/35y83KH" target="_blank"&gt;https://autode.sk/35y83KH&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Once again thank you!&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Nov 2019 15:49:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-manufacture-forum/help-enabling-5-axis-on-mach3-postprocessor/m-p/9167719#M96584</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-11-26T15:49:22Z</dc:date>
    </item>
    <item>
      <title>Re: Help enabling 5 Axis on mach3 postprocessor</title>
      <link>https://forums.autodesk.com/t5/fusion-manufacture-forum/help-enabling-5-axis-on-mach3-postprocessor/m-p/9167749#M96585</link>
      <description>&lt;P&gt;Hello &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/5944595"&gt;@engineguy&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your suggestions. I really appreciated the good vibes and good intention for help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I try for almost one Mont (about 10 hours a day/each day) to configure it post possessors that have 5 axis activate. I have no ninja skills on languages or even on CNC. My experiences in the CAM/CAD world is about 3 months old. with this been said, I try and actually i could activate the 5 axis but i have to deactivate bunch of stuff in the pp that was scary and not reliable. Also one of my huge helpers to understand was the autodesk forum, you tube and in overall research.&lt;/P&gt;&lt;P&gt;In overall I believe that I was just need little be of custom modification because I think my CNC is not that common or if is, it seems that people with ninja skills have it and they know it all! like &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/8049428"&gt;@boopathi.sivakumar&lt;/a&gt; that is helping me tremendous.&lt;/P&gt;&lt;P&gt;I try your code that you post, but is the problem that I have in the beguine about the limits on the A and B Axis.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any how thank you for your suggestions!&lt;/P&gt;</description>
      <pubDate>Tue, 26 Nov 2019 16:02:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-manufacture-forum/help-enabling-5-axis-on-mach3-postprocessor/m-p/9167749#M96585</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-11-26T16:02:41Z</dc:date>
    </item>
    <item>
      <title>Re: Help enabling 5 Axis on mach3 postprocessor</title>
      <link>https://forums.autodesk.com/t5/fusion-manufacture-forum/help-enabling-5-axis-on-mach3-postprocessor/m-p/9167947#M96586</link>
      <description>&lt;P&gt;could you please test and send me the video of the attached code&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Nov 2019 17:25:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-manufacture-forum/help-enabling-5-axis-on-mach3-postprocessor/m-p/9167947#M96586</guid>
      <dc:creator>boopathi.sivakumar</dc:creator>
      <dc:date>2019-11-26T17:25:39Z</dc:date>
    </item>
    <item>
      <title>Re: Help enabling 5 Axis on mach3 postprocessor</title>
      <link>https://forums.autodesk.com/t5/fusion-manufacture-forum/help-enabling-5-axis-on-mach3-postprocessor/m-p/9168180#M96587</link>
      <description>&lt;P&gt;Hello &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/8049428"&gt;@boopathi.sivakumar&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am sending the video. What can I do to help out and speed the process?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am attaching pictures of how it does look in mach3 software.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://autode.sk/2QRm2XJ" target="_blank"&gt;https://autode.sk/2QRm2XJ&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Nov 2019 19:13:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-manufacture-forum/help-enabling-5-axis-on-mach3-postprocessor/m-p/9168180#M96587</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-11-26T19:13:28Z</dc:date>
    </item>
    <item>
      <title>Re: Help enabling 5 Axis on mach3 postprocessor</title>
      <link>https://forums.autodesk.com/t5/fusion-manufacture-forum/help-enabling-5-axis-on-mach3-postprocessor/m-p/9168342#M96588</link>
      <description>&lt;P&gt;@Anonymous&amp;nbsp;You could post the mach3 config file for your machine all one needs is a copy off mach3 then you can test different things easily of line.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Nov 2019 20:26:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-manufacture-forum/help-enabling-5-axis-on-mach3-postprocessor/m-p/9168342#M96588</guid>
      <dc:creator>daniel_lyall</dc:creator>
      <dc:date>2019-11-26T20:26:12Z</dc:date>
    </item>
  </channel>
</rss>

