<?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: Fanuc 5x, NO A-C Indexing in HSM Post Processor Forum</title>
    <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/fanuc-5x-no-a-c-indexing/m-p/7341526#M18017</link>
    <description>&lt;P&gt;Hey Laurens ,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can move that post definitely to a new thread .. I have no problem with that..&lt;/P&gt;</description>
    <pubDate>Thu, 31 Aug 2017 09:32:20 GMT</pubDate>
    <dc:creator>Aadithya01</dc:creator>
    <dc:date>2017-08-31T09:32:20Z</dc:date>
    <item>
      <title>Fanuc 5x, NO A-C Indexing</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/fanuc-5x-no-a-c-indexing/m-p/7326277#M18013</link>
      <description>&lt;P&gt;Need help to set up the generic Fanuc post processor.&lt;/P&gt;&lt;P&gt;Already try different modifications with notepad++, but can get it to code the indexing angles on A-C axis.&lt;/P&gt;&lt;P&gt;Here the output code:&lt;/P&gt;&lt;P&gt;N22 G54&lt;BR /&gt;N24 G68.2 X0. Y0. Z0. I90. J0. K90.&lt;BR /&gt;N26 G53.1&lt;BR /&gt;N28 M08&lt;BR /&gt;N32 G00 X1.3245 Y6.5313&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But need to index the trunnion first, something like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;G0 G54 G90&lt;STRONG&gt; A-90. C180.&lt;/STRONG&gt;&lt;BR /&gt;G68.2 X0. Y-25. Z-20. I180. J-90. K0&lt;BR /&gt;G53.1&lt;BR /&gt;G0 X0 Y0&lt;BR /&gt;G0 G43 H01 Z100.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Need help to get the A and C indexing angle to output by the Fanuc Post. (Doosan, DNM350/5x, Fanuc 31iB).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help would be greatly appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Thu, 24 Aug 2017 15:57:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/fanuc-5x-no-a-c-indexing/m-p/7326277#M18013</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-08-24T15:57:17Z</dc:date>
    </item>
    <item>
      <title>Re: Fanuc 5x, NO A-C Indexing</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/fanuc-5x-no-a-c-indexing/m-p/7340112#M18014</link>
      <description>&lt;P&gt;You can index&amp;nbsp;the rotary axes prior to the G68.2 block by adding the following lines to the &lt;EM&gt;defineWorkPlane&lt;/EM&gt; function.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;      if (useMultiAxisFeatures) {
        &lt;STRONG&gt;if (_setWorkPlane) {
          abc = getWorkPlaneMachineABC(_section.workPlane);
          gMotionModal.reset();
          writeBlock(
            gMotionModal.format(0),
            conditional(machineConfiguration.isMachineCoordinate(0), "A" + abcFormat.format(abc.x)),
            conditional(machineConfiguration.isMachineCoordinate(1), "B" + abcFormat.format(abc.y)),
            conditional(machineConfiguration.isMachineCoordinate(2), "C" + abcFormat.format(abc.z))
          );
        }&lt;/STRONG&gt;
        var eulerXYZ = _section.workPlane.getTransposed().eulerZYX_R;
        abc = new Vector(-eulerXYZ.x, -eulerXYZ.y, -eulerXYZ.z);
        cancelTransformation();&lt;/PRE&gt;</description>
      <pubDate>Wed, 30 Aug 2017 19:01:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/fanuc-5x-no-a-c-indexing/m-p/7340112#M18014</guid>
      <dc:creator>bob.schultz</dc:creator>
      <dc:date>2017-08-30T19:01:41Z</dc:date>
    </item>
    <item>
      <title>Re: Fanuc 5x, NO A-C Indexing</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/fanuc-5x-no-a-c-indexing/m-p/7341134#M18015</link>
      <description>&lt;P&gt;Hey Bob ,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Just did the procedure which you had told to&amp;nbsp;@Anonymous&amp;nbsp;... And now I my cnc output program is like the&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;(DRILL4)&lt;BR /&gt;N30 T4 M06&lt;BR /&gt;N35 S5000 M03&lt;BR /&gt;N40 G54&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;N45 G00 A90. C180.&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;N50 G68.2 X0. Y0. Z0. I90. J0. K0.&lt;/STRONG&gt;&lt;BR /&gt;N55 G53.1&lt;BR /&gt;N60 M08&lt;BR /&gt;N70 G00 G43 X-59.881 Y-17.049 Z65.8 H04&lt;BR /&gt;N80 G00 Z55.8&lt;BR /&gt;N85 G98 G83 X-59.881 Y-17.049 Z29.05 R55.53 Q2. F1000.&lt;BR /&gt;N90 G80&lt;BR /&gt;N95 Z65.8&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;All I wanted was the A and C axis which is perfectly coming out right now . &lt;STRONG&gt;But now&amp;nbsp;how to remove the G68.2&amp;nbsp;I J K line cause now I dont want that . Can you please tell me which part of the .cps program should I remove now&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 31 Aug 2017 06:28:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/fanuc-5x-no-a-c-indexing/m-p/7341134#M18015</guid>
      <dc:creator>Aadithya01</dc:creator>
      <dc:date>2017-08-31T06:28:02Z</dc:date>
    </item>
    <item>
      <title>Re: Fanuc 5x, NO A-C Indexing</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/fanuc-5x-no-a-c-indexing/m-p/7341459#M18016</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3803252"&gt;@Aadithya01&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;Hey Bob ,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Just did the procedure which you had told to&amp;nbsp;@Anonymous&amp;nbsp;... And now I my cnc output program is like the&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;(DRILL4)&lt;BR /&gt;N30 T4 M06&lt;BR /&gt;N35 S5000 M03&lt;BR /&gt;N40 G54&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;N45 G00 A90. C180.&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;N50 G68.2 X0. Y0. Z0. I90. J0. K0.&lt;/STRONG&gt;&lt;BR /&gt;N55 G53.1&lt;BR /&gt;N60 M08&lt;BR /&gt;N70 G00 G43 X-59.881 Y-17.049 Z65.8 H04&lt;BR /&gt;N80 G00 Z55.8&lt;BR /&gt;N85 G98 G83 X-59.881 Y-17.049 Z29.05 R55.53 Q2. F1000.&lt;BR /&gt;N90 G80&lt;BR /&gt;N95 Z65.8&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;All I wanted was the A and C axis which is perfectly coming out right now . &lt;STRONG&gt;But now&amp;nbsp;how to remove the G68.2&amp;nbsp;I J K line cause now I dont want that . Can you please tell me which part of the .cps program should I remove now&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Can we move this question to a new thread?&lt;/P&gt;
&lt;P&gt;Because the Topic starter wants the G68.2.&lt;/P&gt;
&lt;P&gt;And removing that means the machine has no multi-axis features which is much easier to set in the post.&lt;/P&gt;</description>
      <pubDate>Thu, 31 Aug 2017 09:07:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/fanuc-5x-no-a-c-indexing/m-p/7341459#M18016</guid>
      <dc:creator>Laurens-3DTechDraw</dc:creator>
      <dc:date>2017-08-31T09:07:59Z</dc:date>
    </item>
    <item>
      <title>Re: Fanuc 5x, NO A-C Indexing</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/fanuc-5x-no-a-c-indexing/m-p/7341526#M18017</link>
      <description>&lt;P&gt;Hey Laurens ,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can move that post definitely to a new thread .. I have no problem with that..&lt;/P&gt;</description>
      <pubDate>Thu, 31 Aug 2017 09:32:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/fanuc-5x-no-a-c-indexing/m-p/7341526#M18017</guid>
      <dc:creator>Aadithya01</dc:creator>
      <dc:date>2017-08-31T09:32:20Z</dc:date>
    </item>
    <item>
      <title>Re: Fanuc 5x, NO A-C Indexing</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/fanuc-5x-no-a-c-indexing/m-p/7341876#M18018</link>
      <description>&lt;P&gt;Thank you, Bob.&lt;/P&gt;&lt;P&gt;Will try this ASAP, for &amp;nbsp;what I can see from the other member comments it will work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!.&lt;/P&gt;</description>
      <pubDate>Thu, 31 Aug 2017 12:08:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/fanuc-5x-no-a-c-indexing/m-p/7341876#M18018</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-08-31T12:08:52Z</dc:date>
    </item>
    <item>
      <title>Re: Fanuc 5x, NO A-C Indexing</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/fanuc-5x-no-a-c-indexing/m-p/7342187#M18019</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3803252"&gt;@Aadithya01&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;Hey Bob ,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Just did the procedure which you had told to&amp;nbsp;@Anonymous&amp;nbsp;... And now I my cnc output program is like the&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;(DRILL4)&lt;BR /&gt;N30 T4 M06&lt;BR /&gt;N35 S5000 M03&lt;BR /&gt;N40 G54&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;N45 G00 A90. C180.&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;N50 G68.2 X0. Y0. Z0. I90. J0. K0.&lt;/STRONG&gt;&lt;BR /&gt;N55 G53.1&lt;BR /&gt;N60 M08&lt;BR /&gt;N70 G00 G43 X-59.881 Y-17.049 Z65.8 H04&lt;BR /&gt;N80 G00 Z55.8&lt;BR /&gt;N85 G98 G83 X-59.881 Y-17.049 Z29.05 R55.53 Q2. F1000.&lt;BR /&gt;N90 G80&lt;BR /&gt;N95 Z65.8&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;All I wanted was the A and C axis which is perfectly coming out right now . &lt;STRONG&gt;But now&amp;nbsp;how to remove the G68.2&amp;nbsp;I J K line cause now I dont want that . Can you please tell me which part of the .cps program should I remove now&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Your's is a much easier change. &amp;nbsp;Just change the &lt;EM&gt;useMultiAxisFeatures&lt;/EM&gt; variable to &lt;EM&gt;false&lt;/EM&gt; where it is defined at the top of the post processor.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;// fixed settings
var firstFeedParameter = 500;
var useMultiAxisFeatures = &lt;STRONG&gt;false&lt;/STRONG&gt;;&lt;/PRE&gt;</description>
      <pubDate>Thu, 31 Aug 2017 13:40:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/fanuc-5x-no-a-c-indexing/m-p/7342187#M18019</guid>
      <dc:creator>bob.schultz</dc:creator>
      <dc:date>2017-08-31T13:40:42Z</dc:date>
    </item>
    <item>
      <title>Re: Fanuc 5x, NO A-C Indexing</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/fanuc-5x-no-a-c-indexing/m-p/7353112#M18020</link>
      <description>&lt;P&gt;Bob,&lt;/P&gt;&lt;P&gt;Made some changes to the post.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here what we have so far:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(2D CONTOUR1)&lt;BR /&gt;N30 T3 M06&lt;BR /&gt;(2 FLUTE FLAT ENDMILL)&lt;BR /&gt;N35 S5000 M03&lt;BR /&gt;N40 G54&lt;BR /&gt;N45 G00 A-90. C0.&lt;BR /&gt;N50 M08&lt;BR /&gt;N60 G00 X0.929 Y-8.4&lt;BR /&gt;N65 G43 Z1.2495 H03&lt;BR /&gt;N70 G01 Z-0.2505 F20.&lt;BR /&gt;N75 G03 X0.9173 Y-8.3923 I-0.0117 J-0.005 F40.&lt;BR /&gt;N80 G01 X-1.0827&lt;BR /&gt;N85 G03 X-1.0944 Y-8.4 J-0.0127&lt;BR /&gt;N90 G01 Z0.9995&lt;BR /&gt;N95 G00 Z1.1995&lt;BR /&gt;N105 G28 G91 Z0.&lt;BR /&gt;N110 G90&lt;/P&gt;&lt;P&gt;(SWARF1)&lt;BR /&gt;N120 G00 X0.9258 Y-8.4036&lt;BR /&gt;N125 G43.4 Z0.9814 H03&lt;BR /&gt;N130 G00 A-91.12 C-2.763&lt;BR /&gt;N135 X0.9407 Y-8.3976 Z0.6716&lt;BR /&gt;N140 G01 Z0.4997 F20.&lt;BR /&gt;N145 Z0.3278&lt;BR /&gt;N150 Z0.1559&lt;BR /&gt;N155 Z-0.016&lt;BR /&gt;N160 Z-0.1879&lt;BR /&gt;N165 Z-0.3597&lt;BR /&gt;N170 X0.939 Y-8.3917 Z-0.4299 A-91.577 C-2.566 F40.&lt;BR /&gt;N175 X0.938 Y-8.3888 Z-0.4613 A-91.774 C-2.406&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The contour works that way, don't need the G68.2.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The problem is the Swarf &amp;nbsp;the bottom Z is Z-.250 but toolpath goes way below to around Z-.680.&lt;/P&gt;&lt;P&gt;On machine simulation works, but the post will do the wrong Z values.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Need help to solve this, I think my postprocessor is almost ready.&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Mon, 04 Sep 2017 22:45:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/fanuc-5x-no-a-c-indexing/m-p/7353112#M18020</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-09-04T22:45:10Z</dc:date>
    </item>
    <item>
      <title>Re: Fanuc 5x, NO A-C Indexing</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/fanuc-5x-no-a-c-indexing/m-p/7353521#M18021</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous wrote:&lt;BR /&gt;
&lt;P&gt;Bob,&lt;/P&gt;
&lt;P&gt;Made some changes to the post.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here what we have so far:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;(2D CONTOUR1)&lt;BR /&gt;N30 T3 M06&lt;BR /&gt;(2 FLUTE FLAT ENDMILL)&lt;BR /&gt;N35 S5000 M03&lt;BR /&gt;N40 G54&lt;BR /&gt;N45 G00 A-90. C0.&lt;BR /&gt;N50 M08&lt;BR /&gt;N60 G00 X0.929 Y-8.4&lt;BR /&gt;N65 G43 Z1.2495 H03&lt;BR /&gt;N70 G01 Z-0.2505 F20.&lt;BR /&gt;N75 G03 X0.9173 Y-8.3923 I-0.0117 J-0.005 F40.&lt;BR /&gt;N80 G01 X-1.0827&lt;BR /&gt;N85 G03 X-1.0944 Y-8.4 J-0.0127&lt;BR /&gt;N90 G01 Z0.9995&lt;BR /&gt;N95 G00 Z1.1995&lt;BR /&gt;N105 G28 G91 Z0.&lt;BR /&gt;N110 G90&lt;/P&gt;
&lt;P&gt;(SWARF1)&lt;BR /&gt;N120 G00 X0.9258 Y-8.4036&lt;BR /&gt;N125 G43.4 Z0.9814 H03&lt;BR /&gt;N130 G00 A-91.12 C-2.763&lt;BR /&gt;N135 X0.9407 Y-8.3976 Z0.6716&lt;BR /&gt;N140 G01 Z0.4997 F20.&lt;BR /&gt;N145 Z0.3278&lt;BR /&gt;N150 Z0.1559&lt;BR /&gt;N155 Z-0.016&lt;BR /&gt;N160 Z-0.1879&lt;BR /&gt;N165 Z-0.3597&lt;BR /&gt;N170 X0.939 Y-8.3917 Z-0.4299 A-91.577 C-2.566 F40.&lt;BR /&gt;N175 X0.938 Y-8.3888 Z-0.4613 A-91.774 C-2.406&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The contour works that way, don't need the G68.2.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The problem is the Swarf &amp;nbsp;the bottom Z is Z-.250 but toolpath goes way below to around Z-.680.&lt;/P&gt;
&lt;P&gt;On machine simulation works, but the post will do the wrong Z values.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Need help to solve this, I think my postprocessor is almost ready.&lt;/P&gt;
&lt;P&gt;Thank you&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Without&amp;nbsp;G68.2 you will need to program from the A and C axis center of rotation.&lt;/P&gt;
&lt;P&gt;With G68.2 you can put your work offset anywhere you want.&lt;/P&gt;</description>
      <pubDate>Tue, 05 Sep 2017 05:21:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/fanuc-5x-no-a-c-indexing/m-p/7353521#M18021</guid>
      <dc:creator>Laurens-3DTechDraw</dc:creator>
      <dc:date>2017-09-05T05:21:23Z</dc:date>
    </item>
    <item>
      <title>Re: Fanuc 5x, NO A-C Indexing</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/fanuc-5x-no-a-c-indexing/m-p/7354454#M18022</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous wrote:&lt;BR /&gt;
&lt;P&gt;Bob,&lt;/P&gt;
&lt;P&gt;Made some changes to the post.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here what we have so far:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;(2D CONTOUR1)&lt;BR /&gt;N30 T3 M06&lt;BR /&gt;(2 FLUTE FLAT ENDMILL)&lt;BR /&gt;N35 S5000 M03&lt;BR /&gt;N40 G54&lt;BR /&gt;N45 G00 A-90. C0.&lt;BR /&gt;N50 M08&lt;BR /&gt;N60 G00 X0.929 Y-8.4&lt;BR /&gt;N65 G43 Z1.2495 H03&lt;BR /&gt;N70 G01 Z-0.2505 F20.&lt;BR /&gt;N75 G03 X0.9173 Y-8.3923 I-0.0117 J-0.005 F40.&lt;BR /&gt;N80 G01 X-1.0827&lt;BR /&gt;N85 G03 X-1.0944 Y-8.4 J-0.0127&lt;BR /&gt;N90 G01 Z0.9995&lt;BR /&gt;N95 G00 Z1.1995&lt;BR /&gt;N105 G28 G91 Z0.&lt;BR /&gt;N110 G90&lt;/P&gt;
&lt;P&gt;(SWARF1)&lt;BR /&gt;N120 G00 X0.9258 Y-8.4036&lt;BR /&gt;N125 G43.4 Z0.9814 H03&lt;BR /&gt;N130 G00 A-91.12 C-2.763&lt;BR /&gt;N135 X0.9407 Y-8.3976 Z0.6716&lt;BR /&gt;N140 G01 Z0.4997 F20.&lt;BR /&gt;N145 Z0.3278&lt;BR /&gt;N150 Z0.1559&lt;BR /&gt;N155 Z-0.016&lt;BR /&gt;N160 Z-0.1879&lt;BR /&gt;N165 Z-0.3597&lt;BR /&gt;N170 X0.939 Y-8.3917 Z-0.4299 A-91.577 C-2.566 F40.&lt;BR /&gt;N175 X0.938 Y-8.3888 Z-0.4613 A-91.774 C-2.406&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The contour works that way, don't need the G68.2.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The problem is the Swarf &amp;nbsp;the bottom Z is Z-.250 but toolpath goes way below to around Z-.680.&lt;/P&gt;
&lt;P&gt;On machine simulation works, but the post will do the wrong Z values.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Need help to solve this, I think my postprocessor is almost ready.&lt;/P&gt;
&lt;P&gt;Thank you&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Hello Antonio,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It looks as if you are not using TCP on the control, in this case make sure you set the post processor to modify the output points for the table rotation.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;function onOpen() {&lt;BR /&gt;...&lt;BR /&gt;optimizeMachineAngles2&lt;STRONG&gt;(1)&lt;/STRONG&gt;; // disable TCP mode&lt;BR /&gt;...&lt;BR /&gt;function getWorkPlaneMachineABC(workPlane) {&lt;BR /&gt;...&lt;BR /&gt;var tcp = &lt;STRONG&gt;false&lt;/STRONG&gt;;&lt;/PRE&gt;
&lt;P&gt;and like&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1941261"&gt;@Laurens-3DTechDraw&lt;/a&gt;&amp;nbsp;mentioned, the origin (0, 0) must be programmed at the table center.&lt;/P&gt;</description>
      <pubDate>Tue, 05 Sep 2017 12:06:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/fanuc-5x-no-a-c-indexing/m-p/7354454#M18022</guid>
      <dc:creator>bob.schultz</dc:creator>
      <dc:date>2017-09-05T12:06:03Z</dc:date>
    </item>
  </channel>
</rss>

