<?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: Doosan MX2100ST Fanuc 31i Model A in HSM Post Processor Forum</title>
    <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/doosan-mx2100st-fanuc-31i-model-a/m-p/10951898#M4170</link>
    <description>&lt;P&gt;All seems good on first test&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/4762571"&gt;@serge.quiblier&lt;/a&gt;&amp;nbsp;thank you for that, I will let you know if any issue's pops up on&amp;nbsp; further testing&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 15 Feb 2022 16:08:58 GMT</pubDate>
    <dc:creator>ubi.james13</dc:creator>
    <dc:date>2022-02-15T16:08:58Z</dc:date>
    <item>
      <title>Doosan MX2100ST Fanuc 31i Model A</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/doosan-mx2100st-fanuc-31i-model-a/m-p/10942845#M4163</link>
      <description>&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;I'm using the latest post and have selected Puma MX from properties list &amp;amp; also adjusted machine&amp;nbsp;&lt;FONT face="inherit"&gt;configuration to reflect the machines two turrets &amp;amp; sub-spindle however I cant seem to stop post outputting V and Y values when using lower turret that has no Y axis without those values &lt;/FONT&gt;disappearing&lt;FONT face="inherit"&gt;&amp;nbsp;for the top turret that needs them !&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="inherit"&gt;Any help would be very much appreciated&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Feb 2022 08:36:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/doosan-mx2100st-fanuc-31i-model-a/m-p/10942845#M4163</guid>
      <dc:creator>ubi.james13</dc:creator>
      <dc:date>2022-02-11T08:36:07Z</dc:date>
    </item>
    <item>
      <title>Re: Doosan MX2100ST Fanuc 31i Model A</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/doosan-mx2100st-fanuc-31i-model-a/m-p/10946714#M4164</link>
      <description>&lt;P&gt;Ok, for now I have a solution ! as the machine runs with duel channel programmes I've configured&amp;nbsp; another post processor to run lower turret, not great but gets machine going !&lt;/P&gt;</description>
      <pubDate>Sat, 12 Feb 2022 17:29:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/doosan-mx2100st-fanuc-31i-model-a/m-p/10946714#M4164</guid>
      <dc:creator>ubi.james13</dc:creator>
      <dc:date>2022-02-12T17:29:50Z</dc:date>
    </item>
    <item>
      <title>Re: Doosan MX2100ST Fanuc 31i Model A</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/doosan-mx2100st-fanuc-31i-model-a/m-p/10949451#M4165</link>
      <description>&lt;P&gt;Hello &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3330691"&gt;@ubi.james13&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If turret 2 on all the machine does not support Y axis, then you could have grouped into one post doing the following changes.&lt;/P&gt;
&lt;P&gt;In the global section add the following variable&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000FF"&gt;var turret1GotYAxis = false;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;then in the onOpen function&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp; machineConfigurationMainSpindle = gotBAxis ? new MachineConfiguration(bAxisMain, cAxisMain) : new&amp;nbsp;&amp;nbsp; MachineConfiguration(cAxisMain);&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp; machineConfigurationSubSpindle = gotBAxis ? new MachineConfiguration(bAxisSub, cAxisSub) : new MachineConfiguration(cAxisSub);&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp; machineConfigurationMainTurret2 = new MachineConfiguration(cAxisMain);&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp; machineConfigurationSubTurret2 = new MachineConfiguration(cAxisSub);&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;}&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp; machineConfiguration = new MachineConfiguration(); // creates an empty configuration to be able to set eg vendor information&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp; turret1GotYAxis = gotYAxis; // add this line&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp; if (!gotYAxis) {&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; yOutput.disable();&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp; }&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp; aOutput.disable();&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp; if (!gotBAxis) {&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; bOutput.disable();&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp; }&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;finally in the onSection function&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000FF"&gt; // Detect machine configuration&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;if (activeTurret == 2) {&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp; machineConfiguration = (currentSection.spindle == SPINDLE_PRIMARY) ? machineConfigurationMainTurret2 : machineConfigurationSubTurret2;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp; gotYAxis = false; // addition&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp; yOutput.disable(); // addition&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;} else {&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp; machineConfiguration = (currentSection.spindle == SPINDLE_PRIMARY) ? machineConfigurationMainSpindle : machineConfigurationSubSpindle;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp; gotYAxis = turret1GotYAxis; // addition&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp; if (!gotYAxis) { // addition&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; yOutput.disable(); // addition&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp; } // addition&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;}&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you test&amp;nbsp; this solution, please provide feddback.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Have a pleasant day.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;______________________________________________________________&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0174DF"&gt;If my post answers your question, please click the &lt;STRONG&gt;"Accept Solution"&lt;/STRONG&gt; button. This helps everyone find answers more quickly!&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Feb 2022 16:33:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/doosan-mx2100st-fanuc-31i-model-a/m-p/10949451#M4165</guid>
      <dc:creator>serge.quiblier</dc:creator>
      <dc:date>2022-02-14T16:33:01Z</dc:date>
    </item>
    <item>
      <title>Re: Doosan MX2100ST Fanuc 31i Model A</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/doosan-mx2100st-fanuc-31i-model-a/m-p/10950941#M4166</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/4762571"&gt;@serge.quiblier&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Great ! this does seem to work on initial testing, I'm surprised this hasn't come up before as as far as I know all Puma MX's with two turret do not have a Y axis on turret two and maybe this should be put in to standard post processor !&amp;nbsp;&lt;/P&gt;&lt;P&gt;I do have another issue with&amp;nbsp; turret two also in that it doesn't out-put tool offset correctly example :- T02002 instead of T0202 ! Only turret one has the extended offset numbers&amp;nbsp; (edit:- should I put this in another post ?)&lt;/P&gt;</description>
      <pubDate>Tue, 15 Feb 2022 09:05:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/doosan-mx2100st-fanuc-31i-model-a/m-p/10950941#M4166</guid>
      <dc:creator>ubi.james13</dc:creator>
      <dc:date>2022-02-15T09:05:57Z</dc:date>
    </item>
    <item>
      <title>Re: Doosan MX2100ST Fanuc 31i Model A</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/doosan-mx2100st-fanuc-31i-model-a/m-p/10951494#M4167</link>
      <description>&lt;P&gt;Hello &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3330691"&gt;@ubi.james13&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;we can use a similar trick for this issue.&lt;/P&gt;
&lt;P&gt;In the global section add the following variable&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000FF"&gt;var turret1ToolFormat;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;then in the onOpen function&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp; machineConfiguration = new MachineConfiguration(); // creates an empty configuration to be able to set eg vendor information&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp; turret1GotYAxis = gotYAxis;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp; turret1ToolFormat = toolFormat;&amp;nbsp; // new addition&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp; if (!gotYAxis) {&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; yOutput.disable();&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp; }&lt;/FONT&gt;&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;after in the onSection function&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000FF"&gt;// Detect machine configuration&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;if (activeTurret == 2) {&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp; machineConfiguration = (currentSection.spindle == SPINDLE_PRIMARY) ? machineConfigurationMainTurret2 : machineConfigurationSubTurret2;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp; gotYAxis = false;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp; yOutput.disable();&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp; toolFormat = CreateFormat({decimals:0, width:4, zeropad:true});&amp;nbsp; // new addition&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;} else {&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp; machineConfiguration = (currentSection.spindle == SPINDLE_PRIMARY) ? machineConfigurationMainSpindle : machineConfigurationSubSpindle;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp; toolFormat = turret1ToolFormat;&amp;nbsp; // new addition&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp; gotYAxis = turret1GotYAxis;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Finally still inside onSection, at the toolchange output:&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; } else {&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // preload first tool&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var section = getSection(0);&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var firstToolNumber = section.getTool().number;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if ((tool.number != firstToolNumber) &amp;amp;&amp;amp; (section.getTool().turret != 2)) {&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; writeBlock("T" + toolFormat.format(firstToolNumber * 1000), formatComment("NEXT TOOL"));&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (activeTurret == 2) {&amp;nbsp; // addition&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; writeBlock("T" + toolFormat.format(tool.number * 1000 + compensationOffset));&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; } else {&amp;nbsp; // addition&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; writeBlock("T" + toolFormat.format(tool.number * 100 + compensationOffset));&amp;nbsp; // addition&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&amp;nbsp; // addition&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000FF"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; } else {&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As previously, test with care, and don't hesitate to provide feedback.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;______________________________________________________________&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0174DF"&gt;If my post answers your question, please click the &lt;STRONG&gt;"Accept Solution"&lt;/STRONG&gt; button. This helps everyone find answers more quickly!&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Feb 2022 13:38:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/doosan-mx2100st-fanuc-31i-model-a/m-p/10951494#M4167</guid>
      <dc:creator>serge.quiblier</dc:creator>
      <dc:date>2022-02-15T13:38:22Z</dc:date>
    </item>
    <item>
      <title>Re: Doosan MX2100ST Fanuc 31i Model A</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/doosan-mx2100st-fanuc-31i-model-a/m-p/10951630#M4168</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/4762571"&gt;@serge.quiblier&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have added changes but post will not run, I've probably made an error but for the life of me I can't find it. Have attached post in the hope you can spot the problem.&lt;/P&gt;&lt;P&gt;You help is very must apricated&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Feb 2022 14:35:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/doosan-mx2100st-fanuc-31i-model-a/m-p/10951630#M4168</guid>
      <dc:creator>ubi.james13</dc:creator>
      <dc:date>2022-02-15T14:35:53Z</dc:date>
    </item>
    <item>
      <title>Re: Doosan MX2100ST Fanuc 31i Model A</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/doosan-mx2100st-fanuc-31i-model-a/m-p/10951878#M4169</link>
      <description>&lt;P&gt;Hi &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3330691"&gt;@ubi.james13&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;my fix had been created from brain cells brewing, but not completely tested.&lt;/P&gt;
&lt;P&gt;Here is a revised post with the following changes:&lt;/P&gt;
&lt;P&gt;I removed some extra empty lines, because we use eslint and it's done automatically when saving the file.&lt;BR /&gt;I added a missing semi colon at the end of a line.&lt;BR /&gt;I added a constant on the warningOnce command.&lt;BR /&gt;The main issue was probably the CreateFormat, instead of a createFormat.&lt;BR /&gt;And i may i have forgottent to change the multiplying factor on the tool number (100 instead of 1000 for turret 2)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PS the file is zipped just to please the file uploader script of the forum.&lt;BR /&gt;______________________________________________________________&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0174DF"&gt;If my post answers your question, please click the &lt;STRONG&gt;"Accept Solution"&lt;/STRONG&gt; button. This helps everyone find answers more quickly!&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Feb 2022 16:00:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/doosan-mx2100st-fanuc-31i-model-a/m-p/10951878#M4169</guid>
      <dc:creator>serge.quiblier</dc:creator>
      <dc:date>2022-02-15T16:00:36Z</dc:date>
    </item>
    <item>
      <title>Re: Doosan MX2100ST Fanuc 31i Model A</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/doosan-mx2100st-fanuc-31i-model-a/m-p/10951898#M4170</link>
      <description>&lt;P&gt;All seems good on first test&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/4762571"&gt;@serge.quiblier&lt;/a&gt;&amp;nbsp;thank you for that, I will let you know if any issue's pops up on&amp;nbsp; further testing&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Feb 2022 16:08:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/doosan-mx2100st-fanuc-31i-model-a/m-p/10951898#M4170</guid>
      <dc:creator>ubi.james13</dc:creator>
      <dc:date>2022-02-15T16:08:58Z</dc:date>
    </item>
    <item>
      <title>Re: Doosan MX2100ST Fanuc 31i Model A</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/doosan-mx2100st-fanuc-31i-model-a/m-p/10979884#M4171</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/4762571"&gt;@serge.quiblier&lt;/a&gt;&amp;nbsp;, On further testing I do have a problem when using the lower turret on sub-spindle ! the post is still out-putting a Y position code which stop's the program running. Have given it a go but issue is beyond my skill set &lt;span class="lia-unicode-emoji" title=":beaming_face_with_smiling_eyes:"&gt;😁&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Mar 2022 16:16:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/doosan-mx2100st-fanuc-31i-model-a/m-p/10979884#M4171</guid>
      <dc:creator>ubi.james13</dc:creator>
      <dc:date>2022-03-02T16:16:58Z</dc:date>
    </item>
    <item>
      <title>Re: Doosan MX2100ST Fanuc 31i Model A</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/doosan-mx2100st-fanuc-31i-model-a/m-p/10979900#M4172</link>
      <description>&lt;P&gt;Hi &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3330691"&gt;@ubi.james13&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can either share a link to your Fusion file. See:&lt;BR /&gt;&lt;A href="https://knowledge.autodesk.com/support/fusion-360/learn-explore/caas/sfdcarticles/sfdcarticles/How-to-share-a-Fusion-360-design.html?us_oa=akn-us&amp;amp;us_si=8e695c5a-bc60-417e-af77-acc00ff6003f&amp;amp;us_st=share%20link%20fusion" target="_blank"&gt;https://knowledge.autodesk.com/support/fusion-360/learn-explore/caas/sfdcarticles/sfdcarticles/How-to-share-a-Fusion-360-design.html?us_oa=akn-us&amp;amp;us_si=8e695c5a-bc60-417e-af77-acc00ff6003f&amp;amp;us_st=share%20link%20fusion&lt;/A&gt;&lt;BR /&gt;or you can save an archive (f3d, or f3z) and share it on the forum&lt;BR /&gt;&lt;A href="https://knowledge.autodesk.com/support/fusion-360/troubleshooting/caas/sfdcarticles/sfdcarticles/How-to-make-a-local-archive-back-up-file-in-Fusion-360.html" target="_blank"&gt;https://knowledge.autodesk.com/support/fusion-360/troubleshooting/caas/sfdcarticles/sfdcarticles/How-to-make-a-local-archive-back-up-file-in-Fusion-360.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Because i have no idea, about the strategy being used, where this code is generated and why.&lt;/P&gt;
&lt;P&gt;If it's written as pure test (i doubt) it will not use the yOuput variable.&lt;/P&gt;
&lt;P&gt;Or it is using something else with a Y prefix, it's impossible to tell just from this picture of the code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Mar 2022 16:21:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/doosan-mx2100st-fanuc-31i-model-a/m-p/10979900#M4172</guid>
      <dc:creator>serge.quiblier</dc:creator>
      <dc:date>2022-03-02T16:21:08Z</dc:date>
    </item>
    <item>
      <title>Re: Doosan MX2100ST Fanuc 31i Model A</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/doosan-mx2100st-fanuc-31i-model-a/m-p/10983427#M4173</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/4762571"&gt;@serge.quiblier&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sorry about that please find link to my template I'm working on, the problem appears to be isolated to lower sub-spindle operation's&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Link :&amp;nbsp;&lt;A href="https://a360.co/3hE2T7S" target="_blank" rel="noopener"&gt;https://a360.co/3hE2T7S&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;p.s. is there away to change default turret in post so that I can use fusion post extension in visual studio to see where code's are coming from as only outputs upper turret code ?&lt;/P&gt;</description>
      <pubDate>Fri, 04 Mar 2022 09:38:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/doosan-mx2100st-fanuc-31i-model-a/m-p/10983427#M4173</guid>
      <dc:creator>ubi.james13</dc:creator>
      <dc:date>2022-03-04T09:38:59Z</dc:date>
    </item>
    <item>
      <title>Re: Doosan MX2100ST Fanuc 31i Model A</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/doosan-mx2100st-fanuc-31i-model-a/m-p/10983816#M4174</link>
      <description>&lt;P&gt;On further test I have found the following issue's with lower turret on Sub spindle&lt;/P&gt;&lt;P&gt;1: when live tool is used the wrong&amp;nbsp; work plane is used G17 XY plane instead of G18&lt;/P&gt;&lt;P&gt;2: Wrong lower turret live tool spindle code P12 instead of P22&lt;/P&gt;&lt;P&gt;I could easily change them in post but suspect if I change these in the post they will then effect Upper turret's code ! For the moment maybe my original solution of running two post's one for upper and one for lower would be a better solution until Autodesk take a proper look at this post processor as it looks to me this one is not fit for purpose with regard to the MX !!&lt;/P&gt;</description>
      <pubDate>Fri, 04 Mar 2022 12:30:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/doosan-mx2100st-fanuc-31i-model-a/m-p/10983816#M4174</guid>
      <dc:creator>ubi.james13</dc:creator>
      <dc:date>2022-03-04T12:30:13Z</dc:date>
    </item>
    <item>
      <title>Re: Doosan MX2100ST Fanuc 31i Model A</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/doosan-mx2100st-fanuc-31i-model-a/m-p/10988901#M4175</link>
      <description>&lt;P&gt;Hi, small update for anyone who cares, have made headway with having two posts one for Upper Turret and other for Lower turret this works ok as I'm able to modify post to suit the needs of each turret. I'm manually putting in timing M code for running duel channel, not quite there yet but along way ahead of unworkable stock post !!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Mar 2022 15:27:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/doosan-mx2100st-fanuc-31i-model-a/m-p/10988901#M4175</guid>
      <dc:creator>ubi.james13</dc:creator>
      <dc:date>2022-03-07T15:27:48Z</dc:date>
    </item>
    <item>
      <title>Re: Doosan MX2100ST Fanuc 31i Model A</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/doosan-mx2100st-fanuc-31i-model-a/m-p/11003590#M4176</link>
      <description>&lt;P&gt;Hello &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3330691"&gt;@ubi.james13&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As a reply to the post #9, to solve the Y axis issue, some codes need to be moved further down.&lt;/P&gt;
&lt;P&gt;This piece of code should be placed much below than i first suggested&lt;BR /&gt;In the onSection function&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;// Detect machine configuration
if (activeTurret == 2) {
  machineConfiguration = (currentSection.spindle == SPINDLE_PRIMARY) ? machineConfigurationMainTurret2 : machineConfigurationSubTurret2;
  gotYAxis = false; // addition, we will move somewhere else, can be deleted here
  yOutput.disable(); // addition, we will move somewhere else, can be deleted here
} else {
  machineConfiguration = (currentSection.spindle == SPINDLE_PRIMARY) ? machineConfigurationMainSpindle : machineConfigurationSubSpindle;
  gotYAxis = turret1GotYAxis; // addition, can be deleted here
  if (!gotYAxis) { // addition, we will move somewhere else, can be deleted here
    yOutput.disable(); // addition, we will move somewhere else, can be deleted here
  } // addition, we will move somewhere else, can be deleted here
}&lt;/LI-CODE&gt;
&lt;P&gt;Scrolling down in the function, seach for the invertAxes function call.&lt;/P&gt;
&lt;PRE class="language-javascript"&gt;&lt;CODE&gt;// invert axes for secondary spindle
  if (getSpindle(PART) == SPINDLE_SUB) {
    invertAxes(true, false); // polar mode has not been enabled yet
  }

if (activeTurret == 2) { // addition
  gotYAxis = false; // addition
  yOutput.disable();  // addition
} else { // addition
  gotYAxis = turret1GotYAxis; // addition
  if (!gotYAxis) {  // addition
    yOutput.disable();  // addition
  } // addition
} // addition

  // Position all axes at home
  if (insertToolCall &amp;amp;&amp;amp; !machineState.stockTransferIsActive) {
    moveSubSpindle(HOME, 0, 0, true, "SUB SPINDLE RETURN", false);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards.&lt;/P&gt;</description>
      <pubDate>Mon, 14 Mar 2022 13:10:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/doosan-mx2100st-fanuc-31i-model-a/m-p/11003590#M4176</guid>
      <dc:creator>serge.quiblier</dc:creator>
      <dc:date>2022-03-14T13:10:37Z</dc:date>
    </item>
    <item>
      <title>Re: Doosan MX2100ST Fanuc 31i Model A</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/doosan-mx2100st-fanuc-31i-model-a/m-p/11011344#M4177</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/4762571"&gt;@serge.quiblier&lt;/a&gt;&amp;nbsp;, have implemented your changes and this so seems to work fine&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":crossed_fingers:"&gt;🤞&lt;/span&gt; Do you have any ideas on my Post #12 re the spindle codes and work plane issues&amp;nbsp;with lower turret ?&lt;/P&gt;</description>
      <pubDate>Thu, 17 Mar 2022 13:03:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/doosan-mx2100st-fanuc-31i-model-a/m-p/11011344#M4177</guid>
      <dc:creator>ubi.james13</dc:creator>
      <dc:date>2022-03-17T13:03:43Z</dc:date>
    </item>
    <item>
      <title>Re: Doosan MX2100ST Fanuc 31i Model A</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/doosan-mx2100st-fanuc-31i-model-a/m-p/11021718#M4178</link>
      <description>&lt;P&gt;Hi &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3330691"&gt;@ubi.james13&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;to fix the issue with the spindle code, you can proceed as follow:&lt;/P&gt;
&lt;P&gt;search for the getCode function, then inside the function, find the code below, and add the commented lines (// change)&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;  case "SELECT_SPINDLE":
    switch (spindle) {
    case SPINDLE_MAIN:
      machineState.mainSpindleIsActive = true;
      machineState.subSpindleIsActive = false;
      machineState.liveToolIsActive = false;
      return 11;
    case SPINDLE_LIVE:
      machineState.mainSpindleIsActive = false;
      machineState.subSpindleIsActive = false;
      machineState.liveToolIsActive = true;
      if  (currentSection.getTool().getTurret()&amp;gt; 1) {;	// change
        return 22;;	// change
      } else {;	// change
        return 12;;	// change
      };	// change
    case SPINDLE_SUB:&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For the G17 issue, is this for drilling operations, or for alll milling operation?&lt;/P&gt;
&lt;P&gt;Because circular interpolations may be incorrect, if we don't use the correct plane.&lt;/P&gt;
&lt;P&gt;What is the toolpath involved, machining on the part front, or outer diameter?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;______________________________________________________________&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0174DF"&gt;If my post answers your question, please click the &lt;STRONG&gt;"Accept Solution"&lt;/STRONG&gt; button. This helps everyone find answers more quickly!&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Mar 2022 15:44:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/doosan-mx2100st-fanuc-31i-model-a/m-p/11021718#M4178</guid>
      <dc:creator>serge.quiblier</dc:creator>
      <dc:date>2022-03-22T15:44:37Z</dc:date>
    </item>
    <item>
      <title>Re: Doosan MX2100ST Fanuc 31i Model A</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/doosan-mx2100st-fanuc-31i-model-a/m-p/11023555#M4179</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/4762571"&gt;@serge.quiblier&lt;/a&gt;&amp;nbsp;, unfortunately that solution doesn't seem to work for me ! post is still out-putting P12 for lower turret live tool spindle commands instead of P22&lt;/P&gt;&lt;P&gt;Attached&amp;nbsp; Post&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Mar 2022 11:19:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/doosan-mx2100st-fanuc-31i-model-a/m-p/11023555#M4179</guid>
      <dc:creator>ubi.james13</dc:creator>
      <dc:date>2022-03-23T11:19:35Z</dc:date>
    </item>
    <item>
      <title>Re: Doosan MX2100ST Fanuc 31i Model A</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/doosan-mx2100st-fanuc-31i-model-a/m-p/11023898#M4180</link>
      <description>&lt;P&gt;Hi &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3330691"&gt;@ubi.james13&lt;/a&gt; ,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;apparently when i copy and pasted the code, additional semicolon where inserted after the {, ] and ;&lt;/P&gt;
&lt;P&gt;This was not intended. But that not the issue.&lt;/P&gt;
&lt;P&gt;Actually i only switch to 22 when using the lower turrey, detected by this information.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="sergequiblier_0-1648043066879.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1039735i00D94B86170CC41C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="sergequiblier_0-1648043066879.png" alt="sergequiblier_0-1648043066879.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So i find it strange that you added the code to your upper turret post.&lt;/P&gt;
&lt;P&gt;Are you using the turret number in Fusion?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Mar 2022 13:45:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/doosan-mx2100st-fanuc-31i-model-a/m-p/11023898#M4180</guid>
      <dc:creator>serge.quiblier</dc:creator>
      <dc:date>2022-03-23T13:45:27Z</dc:date>
    </item>
    <item>
      <title>Re: Doosan MX2100ST Fanuc 31i Model A</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/doosan-mx2100st-fanuc-31i-model-a/m-p/11023960#M4181</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/4762571"&gt;@serge.quiblier&lt;/a&gt;&amp;nbsp;, found the problem at my end ! I was not using the updated post but another from a different location DOH! all is working ok&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you very much&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":beaming_face_with_smiling_eyes:"&gt;😁&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Mar 2022 14:10:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/doosan-mx2100st-fanuc-31i-model-a/m-p/11023960#M4181</guid>
      <dc:creator>ubi.james13</dc:creator>
      <dc:date>2022-03-23T14:10:03Z</dc:date>
    </item>
    <item>
      <title>Re: Doosan MX2100ST Fanuc 31i Model A</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/doosan-mx2100st-fanuc-31i-model-a/m-p/11023968#M4182</link>
      <description>&lt;P&gt;Regarding the G19/G17 issue, is this for drilling operations, or for all milling operations?&lt;/P&gt;
&lt;P&gt;Because circular interpolations may be incorrect, if we don't use the correct plane.&lt;/P&gt;
&lt;P&gt;What is the toolpath involved, machining on the part front, or outer diameter?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards.&lt;/P&gt;</description>
      <pubDate>Wed, 23 Mar 2022 14:12:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/doosan-mx2100st-fanuc-31i-model-a/m-p/11023968#M4182</guid>
      <dc:creator>serge.quiblier</dc:creator>
      <dc:date>2022-03-23T14:12:42Z</dc:date>
    </item>
  </channel>
</rss>

