<?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: trying edit post for 5axismaker in HSM Post Processor Forum</title>
    <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/trying-edit-post-for-5axismaker/m-p/10870275#M20945</link>
    <description>&lt;P&gt;You should use the Overall Length of the tool instead of programming a fixed value for the holder length.&amp;nbsp; The Overall Length is not used in Fusion and is for the purpose of passing the tool length to the post processor.&amp;nbsp; If you include the &lt;U&gt;getBodyLength&lt;/U&gt; function into your program your code will look like this.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;var pivotDistance = toPreciseUnit(189.395, MM) + getBodyLength(currentSection.getTool());&lt;/LI-CODE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="bobschultz_0-1641855239102.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1009558iC925B7BFB5199FB9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="bobschultz_0-1641855239102.png" alt="bobschultz_0-1641855239102.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 10 Jan 2022 22:54:50 GMT</pubDate>
    <dc:creator>bob.schultz</dc:creator>
    <dc:date>2022-01-10T22:54:50Z</dc:date>
    <item>
      <title>trying edit post for 5axismaker</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/trying-edit-post-for-5axismaker/m-p/6625512#M20906</link>
      <description>&lt;P&gt;I am trying to edit post processor for 5axismaker which is controlled by mach3.&lt;/P&gt;&lt;P&gt;This machine is head-head machine the B, C axis with axis offset.( see attachment)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So, I try to setup the axis of machine from&amp;nbsp; post processor&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I test these two settings to generate gcode, but all of them are the same, seems setting offset for axis is no difference.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1.&lt;/P&gt;&lt;P&gt;if (true) {&lt;BR /&gt;var bAxis = createAxis({coordinate:1, table:false, axis:[0, 1, 0],&amp;nbsp;offset:&amp;nbsp;[0, 30.44, 0], range:[-190,190], preference:0});&lt;BR /&gt;var cAxis = createAxis({coordinate:2, table:false, axis:[0, 0, 1], offset:&amp;nbsp;[0, 0, 57.1], range:[-360,360], preference:0 ,cyclic: properties._cyclic});&lt;BR /&gt;machineConfiguration = new MachineConfiguration(bAxis, cAxis);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2.&lt;/P&gt;&lt;P&gt;if (true) {&lt;BR /&gt;var bAxis = createAxis({coordinate:1, table:false, axis:[0, 1, 0],&amp;nbsp;offset:&amp;nbsp;[0, 0, 0], range:[-190,190], preference:0});&lt;BR /&gt;var cAxis = createAxis({coordinate:2, table:false, axis:[0, 0, 1], offset:&amp;nbsp;[0, 0, 0], range:[-360,360], preference:0 ,cyclic: properties._cyclic});&lt;BR /&gt;machineConfiguration = new MachineConfiguration(bAxis, cAxis);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;what did I do wrong?&lt;/P&gt;</description>
      <pubDate>Sun, 16 Oct 2016 18:16:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/trying-edit-post-for-5axismaker/m-p/6625512#M20906</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-10-16T18:16:39Z</dc:date>
    </item>
    <item>
      <title>Re: trying edit post for 5axismaker</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/trying-edit-post-for-5axismaker/m-p/6630454#M20907</link>
      <description>&lt;P&gt;The offset parameter in the createAxis command is not currently supported in HSM nor does it properly adjust points for rotary heads (tables only), so you will need to add logic to your post to &amp;nbsp;adjust the output XYZ coordinates to match your machine configuration. &amp;nbsp;For this style of machine you will also have to enable TCP mode so that the tool center point is available to the post.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;    optimizeMachineAngles2(0); // TCP mode - we compensate below&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The &lt;A href="http://cam.autodesk.com/posts/" target="_self"&gt;Generic 5-Axis Thermwood&lt;/A&gt;&amp;nbsp; post&amp;nbsp;contains logic that will adjust the points for a rotary head with a common pivot point. &amp;nbsp;You can look at the following sections of code in the post to see how it is done.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;var pivotDistance = toPreciseUnit(10.291 + 2.5, IN); // 2.5in is assumed for the tool length&lt;/PRE&gt;
&lt;PRE&gt;headOffset = /*tool.bodyLength +*/ pivotDistance; // control will compensate for tool length&lt;/PRE&gt;
&lt;PRE&gt;    var displacement = machineConfiguration.getDirection(new Vector(_a, _b, _c));
    // var displacement = currentSection.workPlane.forward;
    displacement.multiply(headOffset);
    displacement = Vector.diff(displacement, new Vector(0, 0, headOffset));
    xOutput.offset = displacement.x;
    yOutput.offset = displacement.y;
    zOutput.offset = displacement.z;&lt;/PRE&gt;
&lt;P&gt;For your machine you will also have to adjust the XYZ coordinates for the C-axis center of rotation, since it is offset from the B-axis center of rotation. &amp;nbsp;You will need to create a new vector accounting for the&amp;nbsp;C-axis rotation for the displacement vector in this case and perform the same operation as above using the offset value for the C-axis. &amp;nbsp;For example:&lt;/P&gt;
&lt;PRE&gt;    displacement = new Vector(Math.cos(_c), Math.sin(_c), 0);&lt;/PRE&gt;
&lt;P&gt;Make sure that the signs of the C-axis displacement vector are correct for the orientation of the C-axis on your machine.&lt;/P&gt;</description>
      <pubDate>Tue, 18 Oct 2016 22:23:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/trying-edit-post-for-5axismaker/m-p/6630454#M20907</guid>
      <dc:creator>bob.schultz</dc:creator>
      <dc:date>2016-10-18T22:23:59Z</dc:date>
    </item>
    <item>
      <title>Re: trying edit post for 5axismaker</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/trying-edit-post-for-5axismaker/m-p/6632548#M20908</link>
      <description>Thanks a lot!!&lt;BR /&gt;I will study harder to figure out of this!!</description>
      <pubDate>Wed, 19 Oct 2016 17:46:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/trying-edit-post-for-5axismaker/m-p/6632548#M20908</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-10-19T17:46:43Z</dc:date>
    </item>
    <item>
      <title>Re: trying edit post for 5axismaker</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/trying-edit-post-for-5axismaker/m-p/7197636#M20909</link>
      <description>&lt;PRE&gt;displacement = new Vector(Math.cos(_c), Math.sin(_c), 0);&lt;/PRE&gt;&lt;P&gt;&lt;SPAN&gt;What will I write this line.&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thank you now.&lt;/P&gt;</description>
      <pubDate>Sat, 01 Jul 2017 12:48:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/trying-edit-post-for-5axismaker/m-p/7197636#M20909</guid>
      <dc:creator>bayramW2A6L</dc:creator>
      <dc:date>2017-07-01T12:48:16Z</dc:date>
    </item>
    <item>
      <title>Re: trying edit post for 5axismaker</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/trying-edit-post-for-5axismaker/m-p/7198313#M20910</link>
      <description>This help me a lot thanks, especially the attachment photo, thanks!</description>
      <pubDate>Sun, 02 Jul 2017 10:25:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/trying-edit-post-for-5axismaker/m-p/7198313#M20910</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-07-02T10:25:45Z</dc:date>
    </item>
    <item>
      <title>Re: trying edit post for 5axismaker</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/trying-edit-post-for-5axismaker/m-p/7203464#M20911</link>
      <description>&lt;P&gt;hi fitztu;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I could not do it. Did you do it.&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;displacement = new Vector(Math.cos(_c), Math.sin(_c), 0);&lt;/PRE&gt;&lt;P&gt;&lt;SPAN&gt;Where to do it.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Jul 2017 14:03:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/trying-edit-post-for-5axismaker/m-p/7203464#M20911</guid>
      <dc:creator>bayramW2A6L</dc:creator>
      <dc:date>2017-07-04T14:03:29Z</dc:date>
    </item>
    <item>
      <title>Re: trying edit post for 5axismaker</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/trying-edit-post-for-5axismaker/m-p/7203492#M20912</link>
      <description>&lt;P&gt;hi bob;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I could not do it.&lt;/P&gt;&lt;PRE&gt;displacement = new Vector(Math.cos(_c), Math.sin(_c), 0);&lt;/PRE&gt;&lt;P&gt;&lt;SPAN&gt;Where this line will be written.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Jul 2017 14:21:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/trying-edit-post-for-5axismaker/m-p/7203492#M20912</guid>
      <dc:creator>bayramW2A6L</dc:creator>
      <dc:date>2017-07-04T14:21:01Z</dc:date>
    </item>
    <item>
      <title>Re: trying edit post for 5axismaker</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/trying-edit-post-for-5axismaker/m-p/7209948#M20913</link>
      <description>Hi i write here</description>
      <pubDate>Thu, 06 Jul 2017 17:16:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/trying-edit-post-for-5axismaker/m-p/7209948#M20913</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-07-06T17:16:33Z</dc:date>
    </item>
    <item>
      <title>Re: trying edit post for 5axismaker</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/trying-edit-post-for-5axismaker/m-p/7212830#M20914</link>
      <description>&lt;PRE&gt;&lt;SPAN&gt;hi Fitstu;&lt;BR /&gt;Sorry.
I could not do it.
There is an error but I could not find it.
I'm happy if you help me.&lt;BR /&gt;my post file thermwoo.cps &lt;/SPAN&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 07 Jul 2017 13:57:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/trying-edit-post-for-5axismaker/m-p/7212830#M20914</guid>
      <dc:creator>bayramW2A6L</dc:creator>
      <dc:date>2017-07-07T13:57:47Z</dc:date>
    </item>
    <item>
      <title>Re: trying edit post for 5axismaker</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/trying-edit-post-for-5axismaker/m-p/7221231#M20915</link>
      <description>&lt;P&gt;I think you have to show more information about your machine.&lt;/P&gt;&lt;P&gt;Because edit a post is not like this just put some section in then will work.&lt;/P&gt;</description>
      <pubDate>Wed, 12 Jul 2017 04:45:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/trying-edit-post-for-5axismaker/m-p/7221231#M20915</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-07-12T04:45:21Z</dc:date>
    </item>
    <item>
      <title>Re: trying edit post for 5axismaker</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/trying-edit-post-for-5axismaker/m-p/7229020#M20916</link>
      <description>&lt;P&gt;h i Fitztu;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;thank you very much&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Machine information in the attachment file.&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt;&amp;nbsp;my machine mazak integrex years of 2002 model.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Iso is not calculating in programming.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;pivot distance 200mm&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;pivot distance+tool lenght.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;best regards&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jul 2017 16:53:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/trying-edit-post-for-5axismaker/m-p/7229020#M20916</guid>
      <dc:creator>bayramW2A6L</dc:creator>
      <dc:date>2017-07-14T16:53:38Z</dc:date>
    </item>
    <item>
      <title>Re: trying edit post for 5axismaker</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/trying-edit-post-for-5axismaker/m-p/7230423#M20917</link>
      <description>&lt;P&gt;Hi &lt;SPAN&gt;bayramW2A6L&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I saw your machine's &lt;SPAN&gt;&lt;SPAN&gt;structure&lt;/SPAN&gt;&lt;/SPAN&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I think you don't have to use this math f&lt;SPAN&gt;&lt;SPAN&gt;ormula&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt;displacement = new Vector(Math.cos(_c), Math.sin(_c), 0);&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt;And I have read your cps file, your machine is AB structure but in your cps file you set with BC structure.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt;this line&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt;displacement = new Vector(Math.cos(_c), Math.sin(_c), 0);&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;is for C axis, there is no C axis on your machine.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;you can just simply set to AB axis then i think it will be work.&lt;/P&gt;</description>
      <pubDate>Sat, 15 Jul 2017 16:32:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/trying-edit-post-for-5axismaker/m-p/7230423#M20917</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-07-15T16:32:49Z</dc:date>
    </item>
    <item>
      <title>Re: trying edit post for 5axismaker</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/trying-edit-post-for-5axismaker/m-p/7244095#M20918</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Axis B-C is set. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Tool length calculated. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Pivot calculated. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;But in the intermediate angles the x-axis and the y-axis change.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;my machine config:&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;lt;?xml version="1.0"?&amp;gt;&lt;BR /&gt;&amp;lt;machine xmlns="&lt;A href="http://www.hsmworks.com/xml/2009/machine" target="_blank"&gt;http://www.hsmworks.com/xml/2009/machine&lt;/A&gt;" version="1.0"&amp;gt;&lt;BR /&gt;&amp;lt;description&amp;gt;Generic 5-axis AC (table-table)&amp;lt;/description&amp;gt;&lt;BR /&gt;&amp;lt;machining milling="yes" turning="no" wire="no"/&amp;gt;&lt;BR /&gt;&amp;lt;tooling toolChanger="yes" toolPreload="yes" numberOfTools="100" maximumToolLength="0mm" maximumToolDiameter="0mm" maximumToolWeight="0kg"/&amp;gt;&lt;BR /&gt;&amp;lt;machiningTime ratio="1" toolChangeTime="15s"/&amp;gt;&lt;BR /&gt;&amp;lt;coolant options="FLOOD MIST THROUGH_TOOL AIR AIR_THROUGH_TOOL SUCTION FLOOD_MIST FLOOD_THROUGH_TOOL"/&amp;gt;&lt;BR /&gt;&amp;lt;home x="0mm" y="0mm" z="0mm"/&amp;gt;&lt;BR /&gt;&amp;lt;capabilities workOffsets="100"/&amp;gt;&lt;BR /&gt;&amp;lt;spindle axis="0 0 1"/&amp;gt;&lt;BR /&gt;&amp;lt;post/&amp;gt;&lt;BR /&gt;&amp;lt;simulation wcs="0mm 0mm 0mm" retractOnIndexing="yes" shortestAngularRotation="yes"/&amp;gt;&lt;BR /&gt;&amp;lt;axis id="Y" link="head"/&amp;gt;&lt;BR /&gt;&amp;lt;axis id="X" link="head"/&amp;gt;&lt;BR /&gt;&amp;lt;axis id="Z" link="head"/&amp;gt;&lt;BR /&gt;&amp;lt;axis id="U" actuator="rotational" axis="0 1 0" coordinate="Y" link="head"/&amp;gt;&lt;BR /&gt;&amp;lt;axis id="V" actuator="rotational" axis="0 0 1" coordinate="Z" link="table"/&amp;gt;&lt;BR /&gt;&amp;lt;/machine&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Jul 2017 07:55:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/trying-edit-post-for-5axismaker/m-p/7244095#M20918</guid>
      <dc:creator>bayramW2A6L</dc:creator>
      <dc:date>2017-07-21T07:55:07Z</dc:date>
    </item>
    <item>
      <title>Re: trying edit post for 5axismaker</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/trying-edit-post-for-5axismaker/m-p/7244195#M20919</link>
      <description>&lt;P&gt;Have a look in getWorkPlaneMachineABC() for this line:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;  var tcp = true;&lt;/PRE&gt;
&lt;P&gt;and change it to this:&lt;/P&gt;
&lt;PRE&gt;  var tcp = false;&lt;/PRE&gt;</description>
      <pubDate>Fri, 21 Jul 2017 08:38:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/trying-edit-post-for-5axismaker/m-p/7244195#M20919</guid>
      <dc:creator>AchimN</dc:creator>
      <dc:date>2017-07-21T08:38:14Z</dc:date>
    </item>
    <item>
      <title>Re: trying edit post for 5axismaker</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/trying-edit-post-for-5axismaker/m-p/7244552#M20920</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;var tcp = false; is nothing&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;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="POS-1.jpg" style="width: 705px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/380691iD4E47CABE0BA017E/image-size/large?v=v2&amp;amp;px=999" role="button" title="POS-1.jpg" alt="POS-1.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Jul 2017 11:38:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/trying-edit-post-for-5axismaker/m-p/7244552#M20920</guid>
      <dc:creator>bayramW2A6L</dc:creator>
      <dc:date>2017-07-21T11:38:40Z</dc:date>
    </item>
    <item>
      <title>Re: trying edit post for 5axismaker</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/trying-edit-post-for-5axismaker/m-p/7244827#M20921</link>
      <description>&lt;P&gt;Ahaaa, noticed that you did not enable your machine configuration for BC axis, it is set to false.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Pleas search for this line in onOpen()&lt;/P&gt;
&lt;P&gt;&amp;nbsp; if (false) { // note: setup your machine here&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and change it to true, otherwise your BC axis setup will be ignored by the post.&lt;/P&gt;</description>
      <pubDate>Fri, 21 Jul 2017 13:00:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/trying-edit-post-for-5axismaker/m-p/7244827#M20921</guid>
      <dc:creator>AchimN</dc:creator>
      <dc:date>2017-07-21T13:00:23Z</dc:date>
    </item>
    <item>
      <title>Re: trying edit post for 5axismaker</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/trying-edit-post-for-5axismaker/m-p/7245056#M20922</link>
      <description>&lt;P&gt;Hi AchimN&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;my machine is integrex 2002 model b/c axis. b axis angle not calculate.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;function onOpen() {&lt;/P&gt;&lt;P&gt;if (true) { // note: setup your machine here&lt;BR /&gt;var bAxis = createAxis({coordinate:1, table:false, axis:[0, 1, 0], range:[-110, 110], preference:1});&lt;BR /&gt;var cAxis = createAxis({coordinate:2, table:false, axis:[0, 0, 1], range:[0, 360], preference:1});&lt;BR /&gt;machineConfiguration = new MachineConfiguration(bAxis, cAxis);&lt;/P&gt;&lt;P&gt;setMachineConfiguration(machineConfiguration);&lt;BR /&gt;optimizeMachineAngles2(0); // map tip mode&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;if (!machineConfiguration.isMachineCoordinate(0)) {&lt;BR /&gt;aOutput.disable();&lt;BR /&gt;}&lt;BR /&gt;if (!machineConfiguration.isMachineCoordinate(1)) {&lt;BR /&gt;bOutput.disable();&lt;BR /&gt;}&lt;BR /&gt;if (!machineConfiguration.isMachineCoordinate(2)) {&lt;BR /&gt;cOutput.disable();&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;if (!properties.separateWordsWithSpace) {&lt;BR /&gt;setWordSeparator("");&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;my nc code&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;G90 G94 G40&lt;BR /&gt;M5&lt;BR /&gt;G0 Z0.&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;(**** TRUE ****)&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;M5&lt;BR /&gt;T1&lt;BR /&gt;S5000 M3&lt;BR /&gt;M8&lt;BR /&gt;G0 B45. C-180.&lt;BR /&gt;G17&lt;BR /&gt;G0 X30.607 &lt;EM&gt;&lt;STRONG&gt;Y0.&lt;/STRONG&gt;&lt;/EM&gt;&lt;BR /&gt;Z20.607&lt;BR /&gt;X23.536 Z13.536&lt;BR /&gt;G1 X20.707 Z10.707 F333.3&lt;BR /&gt;X10. Z0.&lt;BR /&gt;X30. Z-20. F1000.&lt;BR /&gt;G0 X50.607 Z0.607&lt;BR /&gt;G25C&lt;BR /&gt;Z0.&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;(**** FALSE ****)&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;T1&lt;BR /&gt;S5000 M3&lt;BR /&gt;M8&lt;BR /&gt;G0 B45. C-135.&lt;BR /&gt;X21.642 Y21.642&lt;BR /&gt;Z20.607&lt;BR /&gt;X16.642 Y16.642 Z13.536&lt;BR /&gt;G1 X14.642 Y14.642 Z10.707 F333.3&lt;BR /&gt;X7.071 Y7.071 Z0.&lt;BR /&gt;X21.213 Y21.213 Z-20. F1000.&lt;BR /&gt;G0 X35.784 Y35.784 Z0.607&lt;BR /&gt;G25C&lt;BR /&gt;Z0.&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;(**** HALF TRUE ****)&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;T1&lt;BR /&gt;S5000 M3&lt;BR /&gt;M8&lt;BR /&gt;G0 B45. C-90.&lt;BR /&gt;X0. Y30.607 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; (Y0)&lt;BR /&gt;Z20.607&lt;BR /&gt;Y23.536 Z13.536&lt;BR /&gt;G1 Y20.707 Z10.707 F333.3&lt;BR /&gt;Y10. Z0. &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; (X10)&lt;BR /&gt;Y30. Z-20. F1000. &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;(X30)&lt;BR /&gt;G0 Y50.607 Z0.607&lt;BR /&gt;G25C&lt;BR /&gt;Z0.&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;(**** FALSE ****)&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;T1&lt;BR /&gt;S5000 M3&lt;BR /&gt;M8&lt;BR /&gt;G0 B45. C-45.&lt;BR /&gt;X-21.642 Y21.642&lt;BR /&gt;Z20.607&lt;BR /&gt;X-16.642 Y16.642 Z13.536&lt;BR /&gt;G1 X-14.642 Y14.642 Z10.707 F333.3&lt;BR /&gt;X-7.071 Y7.071 Z0.&lt;BR /&gt;X-21.213 Y21.213 Z-20. F1000.&lt;BR /&gt;G0 X-35.784 Y35.784 Z0.607&lt;BR /&gt;G25C&lt;BR /&gt;Z0.&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;(**** TRUE ****)&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;T1&lt;BR /&gt;S5000 M3&lt;BR /&gt;M8&lt;BR /&gt;G0 B45. C0.&lt;BR /&gt;X-30.607 Y0.&lt;BR /&gt;Z20.607&lt;BR /&gt;X-23.536 Z13.536&lt;BR /&gt;G1 X-20.707 Z10.707 F333.3&lt;BR /&gt;X-10. Z0.&lt;BR /&gt;X-30. Z-20. F1000.&lt;BR /&gt;G0 X-50.607 Z0.607&lt;BR /&gt;G25C&lt;BR /&gt;Z0.&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;(**** FALSE ****)&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;T1&lt;BR /&gt;S5000 M3&lt;BR /&gt;M8&lt;BR /&gt;G0 B45. C45.&lt;BR /&gt;X-21.642 Y-21.642&lt;BR /&gt;Z20.607&lt;BR /&gt;X-16.642 Y-16.642 Z13.536&lt;BR /&gt;G1 X-14.642 Y-14.642 Z10.707 F333.3&lt;BR /&gt;X-7.071 Y-7.071 Z0.&lt;BR /&gt;X-21.213 Y-21.213 Z-20. F1000.&lt;BR /&gt;G0 X-35.784 Y-35.784 Z0.607&lt;BR /&gt;G25C&lt;BR /&gt;Z0.&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;(**** HALF TRUE ****)&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;T1&lt;BR /&gt;S5000 M3&lt;BR /&gt;M8&lt;BR /&gt;G0 B45. C90.&lt;BR /&gt;X0. Y-30.607&lt;BR /&gt;Z20.607&lt;BR /&gt;Y-23.536 Z13.536 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;SPAN&gt;(Y0)&lt;/SPAN&gt;&lt;BR /&gt;G1 Y-20.707 Z10.707 F333.3&lt;BR /&gt;Y-10. Z0. &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; X-10&lt;BR /&gt;Y-30. Z-20. F1000. &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; X-30&lt;BR /&gt;G0 Y-50.607 Z0.607&lt;BR /&gt;G25C&lt;BR /&gt;Z0.&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;(**** FALSE ****)&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;T1&lt;BR /&gt;S5000 M3&lt;BR /&gt;M8&lt;BR /&gt;G0 B45. C135.&lt;BR /&gt;X21.642 Y-21.642&lt;BR /&gt;Z20.607&lt;BR /&gt;X16.642 Y-16.642 Z13.536&lt;BR /&gt;G1 X14.642 Y-14.642 Z10.707 F333.3&lt;BR /&gt;X7.071 Y-7.071 Z0.&lt;BR /&gt;X21.213 Y-21.213 Z-20. F1000.&lt;BR /&gt;G0 X35.784 Y-35.784 Z0.607&lt;BR /&gt;G25C&lt;/P&gt;&lt;P&gt;M5&lt;BR /&gt;Z0.&lt;BR /&gt;B0. C0.&lt;BR /&gt;X0. Y0.&lt;BR /&gt;M30&lt;/P&gt;</description>
      <pubDate>Fri, 21 Jul 2017 14:10:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/trying-edit-post-for-5axismaker/m-p/7245056#M20922</guid>
      <dc:creator>bayramW2A6L</dc:creator>
      <dc:date>2017-07-21T14:10:30Z</dc:date>
    </item>
    <item>
      <title>Re: trying edit post for 5axismaker</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/trying-edit-post-for-5axismaker/m-p/10784239#M20923</link>
      <description>&lt;P&gt;&lt;FONT&gt;&lt;FONT&gt;Привет! &lt;/FONT&gt;&lt;FONT&gt;Включил все как написано выше, у меня проблема, не получается точной обработки по траектории, плавная линия обработки почему-то идет зигзагами. &lt;/FONT&gt;&lt;FONT&gt;Примеры на скриншотах. &lt;/FONT&gt;&lt;FONT&gt;Не могу найти ошибку в постпроцессоре&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Jan 2022 21:47:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/trying-edit-post-for-5axismaker/m-p/10784239#M20923</guid>
      <dc:creator>Sverhu</dc:creator>
      <dc:date>2022-01-12T21:47:55Z</dc:date>
    </item>
    <item>
      <title>Re: trying edit post for 5axismaker</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/trying-edit-post-for-5axismaker/m-p/10784244#M20924</link>
      <description>&lt;P&gt;picture of the machine&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jan 2022 20:50:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/trying-edit-post-for-5axismaker/m-p/10784244#M20924</guid>
      <dc:creator>Sverhu</dc:creator>
      <dc:date>2022-01-20T20:50:49Z</dc:date>
    </item>
    <item>
      <title>Re: trying edit post for 5axismaker</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/trying-edit-post-for-5axismaker/m-p/10809617#M20925</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/10829641"&gt;@Sverhu&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've looked at your post processer and while the output has some issues the post processor seems to be correct.&amp;nbsp; The main issue is that the B and C-axes will reverse directions in the affected areas.&amp;nbsp; This is coming from the Fusion side.&amp;nbsp; The reason for this is that you are using a loose tolerance for the operation.&amp;nbsp; I changed the tolerance from .1mm to .001mm and the output looks much smoother.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You should note that the backplot is actually showing the machine axes and not the tool end point, so the tool end point should still track fine, but the finish may be a bit rough with the axes reversing directions.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="bobschultz_0-1638985173434.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/998924i15C0CD4AE167C347/image-size/medium?v=v2&amp;amp;px=400" role="button" title="bobschultz_0-1638985173434.png" alt="bobschultz_0-1638985173434.png" /&gt;&lt;/span&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="bobschultz_1-1638985240804.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/998926i6341912C46CD12CA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="bobschultz_1-1638985240804.png" alt="bobschultz_1-1638985240804.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;On a side note, you may want to look into basing your post processor on the &lt;A href="https://cam.autodesk.com/hsmposts?p=rs274_multi-axis" target="_blank" rel="noopener"&gt;RS274 Multi-Axis&lt;/A&gt; post processor, which uses the latest logic for adjusting the output coordinates in the post processor engine, instead of having to do it inside of the post processor.&amp;nbsp; This post processor also supports machine simulation, though you will have to use a property to enable/disable TCP, since machine simulation requires TCP to be active, but your machine does not support this.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You would need to enable TCP when running the machine simulation and then disable it when post processing.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Dec 2021 17:47:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/trying-edit-post-for-5axismaker/m-p/10809617#M20925</guid>
      <dc:creator>bob.schultz</dc:creator>
      <dc:date>2021-12-08T17:47:40Z</dc:date>
    </item>
  </channel>
</rss>

