<?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 31i horizontal post processor request in HSM Post Processor Forum</title>
    <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/fanuc-31i-horizontal-post-processor-request/m-p/10924101#M4239</link>
    <description>&lt;P&gt;Thank you &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/8053349"&gt;@KrupalVala&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="lia-align-left"&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 02 Feb 2022 18:40:37 GMT</pubDate>
    <dc:creator>britovsekmatic128</dc:creator>
    <dc:date>2022-02-02T18:40:37Z</dc:date>
    <item>
      <title>Fanuc 31i horizontal post processor request</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/fanuc-31i-horizontal-post-processor-request/m-p/10913885#M4233</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My company is planning on buying fusion 360 after i've been nagging them for a while.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My question is, will the generic fanuc post output work with b axis?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If not could some help me with editing an existing post? I have literally zero experience with posts and coding.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jan 2022 16:47:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/fanuc-31i-horizontal-post-processor-request/m-p/10913885#M4233</guid>
      <dc:creator>britovsekmatic128</dc:creator>
      <dc:date>2022-01-28T16:47:09Z</dc:date>
    </item>
    <item>
      <title>Re: Fanuc 31i horizontal post processor request</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/fanuc-31i-horizontal-post-processor-request/m-p/10917974#M4234</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/10849807"&gt;@britovsekmatic128&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Yes. You can download Fanuc Milling generic post-processor from &lt;A href="https://cam.autodesk.com/hsmposts?p=fanuc" target="_blank" rel="noopener"&gt;here&lt;/A&gt; and make the following changes on your post-processor.&lt;BR /&gt;&lt;BR /&gt;Open your Postprocessor in any editor or VS code &amp;amp; search for function defineMachine() . You will find the following codes in your post-processor.&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Step 1 :&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;Now change it from this...&lt;/SPAN&gt;&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;function defineMachine() {
  var useTCP = true;
  if (true) { // note: setup your machine here
    var aAxis = createAxis({coordinate:0, table:true, axis:[1, 0, 0], cyclic:true,range:[-90, 90], preference:0, tcp:useTCP});
    var cAxis = createAxis({coordinate:2, table:true, axis:[0, 0, 1], cyclic:true, tcp:useTCP});&lt;/LI-CODE&gt;
&lt;P&gt;to this&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;function defineMachine() {
  var useTCP = false; // set it true if machine supports TCP 
  if (true) { // note: setup your machine here
    var bAxis = createAxis({coordinate:1, table:true, axis:[0, 1, 0], cyclic:true, preference:0, tcp:useTCP});
   // var cAxis = createAxis({coordinate:2, table:true, axis:[0, 0, 1], cyclic:true, tcp:useTCP});
    machineConfiguration = new MachineConfiguration(bAxis); // set B axis&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Step : 2 Set the following variable to false.&lt;/P&gt;
&lt;P&gt;From true to&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;var useMultiAxisFeatures = true;&lt;/LI-CODE&gt;
&lt;P&gt;false&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;var useMultiAxisFeatures = false; // set it to false &lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Now save the post modification and test it carefully.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you are still facing difficulty in the post modification Please &lt;SPAN&gt;contact one of our CAM partners who offer post customization&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;services. You&amp;nbsp;will find these partners here:&amp;nbsp;&lt;/SPAN&gt;&lt;A title="Service Marketplace" href="https://servicesmarketplace.autodesk.com/providers/service-speciality/post-processing" target="_blank" rel="noopener nofollow noreferrer"&gt;&lt;STRONG&gt;Service Marketplace&lt;/STRONG&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Thanks,&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 31 Jan 2022 10:32:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/fanuc-31i-horizontal-post-processor-request/m-p/10917974#M4234</guid>
      <dc:creator>KrupalVala</dc:creator>
      <dc:date>2022-01-31T10:32:53Z</dc:date>
    </item>
    <item>
      <title>Re: Fanuc 31i horizontal post processor request</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/fanuc-31i-horizontal-post-processor-request/m-p/10919222#M4235</link>
      <description>&lt;P&gt;Thanks &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/8053349"&gt;@KrupalVala&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Made the changes that you posted and it seems that it outputs the correct code,&lt;BR /&gt;even changed the coolant calls!&lt;BR /&gt;Should i be worriend about the G19 code that it posts or is that only for the lead in/lead out(for facing)?&lt;BR /&gt;Going to try it out tomorrow by cutting some air.&lt;BR /&gt;&lt;BR /&gt;Thanks again.&lt;/P&gt;</description>
      <pubDate>Mon, 31 Jan 2022 18:50:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/fanuc-31i-horizontal-post-processor-request/m-p/10919222#M4235</guid>
      <dc:creator>britovsekmatic128</dc:creator>
      <dc:date>2022-01-31T18:50:18Z</dc:date>
    </item>
    <item>
      <title>Re: Fanuc 31i horizontal post processor request</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/fanuc-31i-horizontal-post-processor-request/m-p/10919388#M4236</link>
      <description>That's most likely there because you have a vertical lead in radius value. I usually set that to 0.</description>
      <pubDate>Mon, 31 Jan 2022 20:15:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/fanuc-31i-horizontal-post-processor-request/m-p/10919388#M4236</guid>
      <dc:creator>jjohnson333U4</dc:creator>
      <dc:date>2022-01-31T20:15:15Z</dc:date>
    </item>
    <item>
      <title>Re: Fanuc 31i horizontal post processor request</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/fanuc-31i-horizontal-post-processor-request/m-p/10921495#M4237</link>
      <description>&lt;P&gt;You're right, i disabled the vertical lead-in and the program plunges straight to depth without G19.&lt;BR /&gt;What is the idea behind vertical lead-in?Less force on the screwballs/axes?&lt;BR /&gt;&lt;BR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/8053349"&gt;@KrupalVala&lt;/a&gt;Follow up question if i may?&lt;BR /&gt;&lt;BR /&gt;Is there a way to add G code before every tool call and behind tool call the Workoff set that is being used(G54)?&lt;BR /&gt;&lt;BR /&gt;Example:&lt;BR /&gt;&lt;BR /&gt;(Face mill D125);&lt;BR /&gt;G90 G94 G80 G40 G49;&lt;BR /&gt;T1 M6;&lt;BR /&gt;G54.1 P016;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Tue, 01 Feb 2022 17:15:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/fanuc-31i-horizontal-post-processor-request/m-p/10921495#M4237</guid>
      <dc:creator>britovsekmatic128</dc:creator>
      <dc:date>2022-02-01T17:15:49Z</dc:date>
    </item>
    <item>
      <title>Re: Fanuc 31i horizontal post processor request</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/fanuc-31i-horizontal-post-processor-request/m-p/10922741#M4238</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/10849807"&gt;@britovsekmatic128&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Add following code before the&amp;nbsp;&lt;SPAN&gt;insert Tool Call&lt;/SPAN&gt;&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;    gFeedModeModal.reset();
    gAbsIncModal.reset();
    writeBlock(gAbsIncModal.format(90), gFeedModeModal.format(getProperty("useG95") ? 95 : 94), gFormat.format(49), gFormat.format(40));

    skipBlock = !insertToolCall;
    writeBlock("T" + toolFormat.format(tool.number), mFormat.format(6));&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;You will get following output.&lt;/P&gt;
&lt;DIV&gt;&lt;LI-CODE lang="javascript"&gt;N145 G90 G94 G49 G40
N150 T2 M06
N155 S5000 M03
N160 G54​&lt;/LI-CODE&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;/DIV&gt;</description>
      <pubDate>Wed, 02 Feb 2022 07:44:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/fanuc-31i-horizontal-post-processor-request/m-p/10922741#M4238</guid>
      <dc:creator>KrupalVala</dc:creator>
      <dc:date>2022-02-02T07:44:43Z</dc:date>
    </item>
    <item>
      <title>Re: Fanuc 31i horizontal post processor request</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/fanuc-31i-horizontal-post-processor-request/m-p/10924101#M4239</link>
      <description>&lt;P&gt;Thank you &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/8053349"&gt;@KrupalVala&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="lia-align-left"&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Feb 2022 18:40:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/fanuc-31i-horizontal-post-processor-request/m-p/10924101#M4239</guid>
      <dc:creator>britovsekmatic128</dc:creator>
      <dc:date>2022-02-02T18:40:37Z</dc:date>
    </item>
    <item>
      <title>Re: Fanuc 31i horizontal post processor request</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/fanuc-31i-horizontal-post-processor-request/m-p/12088105#M4240</link>
      <description>I downloaded the .cps file and when trying to change "var useMultiAxisFeatures = false; // set it to false" and I can't find that variable</description>
      <pubDate>Sat, 08 Jul 2023 13:22:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/fanuc-31i-horizontal-post-processor-request/m-p/12088105#M4240</guid>
      <dc:creator>marcelo_merindol</dc:creator>
      <dc:date>2023-07-08T13:22:09Z</dc:date>
    </item>
    <item>
      <title>Re: Fanuc 31i horizontal post processor request</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/fanuc-31i-horizontal-post-processor-request/m-p/12090214#M4241</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/14076642"&gt;@marcelo_merindol&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In the latest PostProcessor, Please search for the following setting and set it to false. When it is disabled, the rotary axes will be output for 3+2 operations and the output coordinates could be adjusted for the tables/heads based on the TCP setting for each axis.&lt;/P&gt;
&lt;DIV&gt;
&lt;DIV&gt;&lt;LI-CODE lang="javascript"&gt;useTiltedWorkplane    : false, // specifies that tilted workplanes should be used (ie. G68.2, G254, PLANE SPATIAL, CYCLE800)&lt;/LI-CODE&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Mon, 10 Jul 2023 05:52:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/fanuc-31i-horizontal-post-processor-request/m-p/12090214#M4241</guid>
      <dc:creator>KrupalVala</dc:creator>
      <dc:date>2023-07-10T05:52:11Z</dc:date>
    </item>
  </channel>
</rss>

