<?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: post processor 3/5 assi VMC in Fusion Manufacture Forum</title>
    <link>https://forums.autodesk.com/t5/fusion-manufacture-forum/post-processor-3-5-assi-vmc/m-p/12688670#M15763</link>
    <description>&lt;P&gt;GRAZIE per la risposta... ho provato a cambiare ma non mi sembra essersi modificato nulla... tutto rimane come prima!&lt;/P&gt;</description>
    <pubDate>Fri, 05 Apr 2024 06:33:30 GMT</pubDate>
    <dc:creator>stefanovero22</dc:creator>
    <dc:date>2024-04-05T06:33:30Z</dc:date>
    <item>
      <title>post processor 3/5 assi VMC</title>
      <link>https://forums.autodesk.com/t5/fusion-manufacture-forum/post-processor-3-5-assi-vmc/m-p/12674150#M15759</link>
      <description>&lt;P&gt;&lt;FONT&gt;Buongiorno avrei bisogno di modificare il post processore doosan 3/5 assi VMC (Fanuc) perchè in base alle mie lavorazioni e agli ingombri della macchina lui svincola dopo il G43 in contemporanea con asse X,Y e Z! Io avrei bisogno che nel G43 prima svincolasse con asse Z e successivamente con asse X e Y! Vi allego una parte del mio programma per farvi capire il mio problema! Grazie&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT&gt;______________________________________________________________&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT&gt;(translation added by Community Manager)&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT&gt;Good morning I would need to change the post processor doosan 3/5 axis VMC (Fanuc) because according to my machining and the overall dimensions of the machine he releases after G43 at the same time with X,Y and Z axis! I would need in the G43 first to release with Z axis and then with X and Y axis! I am attaching a part of my program to make you understand my problem! Thanks&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 29 Mar 2024 10:50:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-manufacture-forum/post-processor-3-5-assi-vmc/m-p/12674150#M15759</guid>
      <dc:creator>stefanovero22</dc:creator>
      <dc:date>2024-03-29T10:50:04Z</dc:date>
    </item>
    <item>
      <title>Re: post processor 3/5 assi VMC</title>
      <link>https://forums.autodesk.com/t5/fusion-manufacture-forum/post-processor-3-5-assi-vmc/m-p/12678113#M15760</link>
      <description>&lt;P&gt;could you attach the postprocessor that needs to be changed?&lt;/P&gt;</description>
      <pubDate>Mon, 01 Apr 2024 05:59:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-manufacture-forum/post-processor-3-5-assi-vmc/m-p/12678113#M15760</guid>
      <dc:creator>RoccoHilton</dc:creator>
      <dc:date>2024-04-01T05:59:06Z</dc:date>
    </item>
    <item>
      <title>Re: post processor 3/5 assi VMC</title>
      <link>https://forums.autodesk.com/t5/fusion-manufacture-forum/post-processor-3-5-assi-vmc/m-p/12683372#M15761</link>
      <description>&lt;P&gt;Buongiorno... allego il file .cps per eventuale modifica! io avrei bisogno di avere per prima il posizionamento in Z e successivamente lo spostamento X Y&amp;nbsp;&lt;/P&gt;&lt;P&gt;Grazie&lt;/P&gt;</description>
      <pubDate>Wed, 03 Apr 2024 08:28:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-manufacture-forum/post-processor-3-5-assi-vmc/m-p/12683372#M15761</guid>
      <dc:creator>stefanovero22</dc:creator>
      <dc:date>2024-04-03T08:28:01Z</dc:date>
    </item>
    <item>
      <title>Re: post processor 3/5 assi VMC</title>
      <link>https://forums.autodesk.com/t5/fusion-manufacture-forum/post-processor-3-5-assi-vmc/m-p/12683850#M15762</link>
      <description>&lt;P&gt;Hello &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/13234351"&gt;@stefanovero22&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for your patience. It seems that switching lines 2945 and 2946 could solve your issue. Here's a comparison of the original and modified code for clarity:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Original:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;        writeBlock(modalCodes, gMotionModal.format(motionCode.multi), xOutput.format(position.x), yOutput.format(position.y), feed, additionalCodes[0]);
        writeBlock(gMotionModal.format(motionCode.single), gOffset, zOutput.format(position.z), hOffset, additionalCodes[1]);&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Modified:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;        writeBlock(gMotionModal.format(motionCode.single), gOffset, zOutput.format(position.z), hOffset, additionalCodes[1]);
        writeBlock(modalCodes, gMotionModal.format(motionCode.multi), xOutput.format(position.x), yOutput.format(position.y), feed, additionalCodes[0]);&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try making these changes and let us know if it resolved your problem. If not, don't hesitate to reach out again.&lt;/P&gt;</description>
      <pubDate>Wed, 03 Apr 2024 12:08:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-manufacture-forum/post-processor-3-5-assi-vmc/m-p/12683850#M15762</guid>
      <dc:creator>aju_augustine</dc:creator>
      <dc:date>2024-04-03T12:08:50Z</dc:date>
    </item>
    <item>
      <title>Re: post processor 3/5 assi VMC</title>
      <link>https://forums.autodesk.com/t5/fusion-manufacture-forum/post-processor-3-5-assi-vmc/m-p/12688670#M15763</link>
      <description>&lt;P&gt;GRAZIE per la risposta... ho provato a cambiare ma non mi sembra essersi modificato nulla... tutto rimane come prima!&lt;/P&gt;</description>
      <pubDate>Fri, 05 Apr 2024 06:33:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-manufacture-forum/post-processor-3-5-assi-vmc/m-p/12688670#M15763</guid>
      <dc:creator>stefanovero22</dc:creator>
      <dc:date>2024-04-05T06:33:30Z</dc:date>
    </item>
    <item>
      <title>Re: post processor 3/5 assi VMC</title>
      <link>https://forums.autodesk.com/t5/fusion-manufacture-forum/post-processor-3-5-assi-vmc/m-p/12688750#M15764</link>
      <description>&lt;P&gt;Is this what you wanted to get?&lt;/P&gt;</description>
      <pubDate>Fri, 05 Apr 2024 07:16:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-manufacture-forum/post-processor-3-5-assi-vmc/m-p/12688750#M15764</guid>
      <dc:creator>RoccoHilton</dc:creator>
      <dc:date>2024-04-05T07:16:09Z</dc:date>
    </item>
    <item>
      <title>Re: post processor 3/5 assi VMC</title>
      <link>https://forums.autodesk.com/t5/fusion-manufacture-forum/post-processor-3-5-assi-vmc/m-p/12688762#M15765</link>
      <description>&lt;P&gt;questo è quello che mi succede ora&lt;/P&gt;&lt;P&gt;N10 T4 M06&lt;BR /&gt;T3&lt;BR /&gt;S2387 M03&lt;BR /&gt;G17 G90 G94&lt;BR /&gt;G55&lt;BR /&gt;M11&lt;BR /&gt;M39&lt;BR /&gt;G00 B0. C0.&lt;BR /&gt;M10&lt;BR /&gt;M38&lt;BR /&gt;G00 G43 X-19.85 Y70.99 Z243. H04&lt;BR /&gt;G00 Z29.5&lt;BR /&gt;G01 Z25.5 F477.&lt;BR /&gt;Z22.5&lt;BR /&gt;Y-69.99 F955.&lt;BR /&gt;G00 Z29.5&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;questo è quello che vorrei avere&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;N10 T4 M06&lt;BR /&gt;T3&lt;BR /&gt;S2387 M03&lt;BR /&gt;G17 G90 G94&lt;BR /&gt;G55&lt;BR /&gt;M11&lt;BR /&gt;M39&lt;BR /&gt;G00 B0. C0.&lt;BR /&gt;M10&lt;BR /&gt;M38&lt;BR /&gt;G00 G43 Z243. H04&lt;/P&gt;&lt;P&gt;X-19.85 Y70.99&lt;BR /&gt;G00 Z29.5&lt;BR /&gt;G01 Z25.5 F477.&lt;BR /&gt;Z22.5&lt;BR /&gt;Y-69.99 F955.&lt;BR /&gt;G00 Z29.5&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Apr 2024 07:25:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-manufacture-forum/post-processor-3-5-assi-vmc/m-p/12688762#M15765</guid>
      <dc:creator>stefanovero22</dc:creator>
      <dc:date>2024-04-05T07:25:10Z</dc:date>
    </item>
    <item>
      <title>Re: post processor 3/5 assi VMC</title>
      <link>https://forums.autodesk.com/t5/fusion-manufacture-forum/post-processor-3-5-assi-vmc/m-p/12688765#M15766</link>
      <description>&lt;P&gt;prima il posizionamento con asse z&amp;nbsp;&lt;/P&gt;&lt;P&gt;e nel comando sottostante il posizionamento x e y&lt;/P&gt;</description>
      <pubDate>Fri, 05 Apr 2024 07:27:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-manufacture-forum/post-processor-3-5-assi-vmc/m-p/12688765#M15766</guid>
      <dc:creator>stefanovero22</dc:creator>
      <dc:date>2024-04-05T07:27:59Z</dc:date>
    </item>
    <item>
      <title>Re: post processor 3/5 assi VMC</title>
      <link>https://forums.autodesk.com/t5/fusion-manufacture-forum/post-processor-3-5-assi-vmc/m-p/12688769#M15767</link>
      <description>&lt;P&gt;I am assuming you have defined machine with Head Type configuration i.e XYZB from the given .nc code, if that's the case previous modification wont work, you will have to replace the lines (from 2939 line no.) in the post as shown below:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Original:&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;      if (machineConfiguration.isHeadConfiguration()) {
        writeBlock(modalCodes, gMotionModal.format(motionCode.multi), gOffset,
          xOutput.format(position.x), yOutput.format(position.y), zOutput.format(position.z),
          hOffset, feed, additionalCodes
        );
      } else {&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Modified:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;      if (machineConfiguration.isHeadConfiguration()) {
        writeBlock(modalCodes, gMotionModal.format(motionCode.multi), xOutput.format(position.x), yOutput.format(position.y), feed, additionalCodes[0]);
        writeBlock(gMotionModal.format(motionCode.single), gOffset, zOutput.format(position.z), hOffset, additionalCodes[1]);
      } else {&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Your output should look like the below screenshot:&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-left" image-alt="4.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1346183i69C6DC32117AFA43/image-size/medium?v=v2&amp;amp;px=400" role="button" title="4.png" alt="4.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&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;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this helps.&lt;/P&gt;</description>
      <pubDate>Fri, 05 Apr 2024 07:30:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-manufacture-forum/post-processor-3-5-assi-vmc/m-p/12688769#M15767</guid>
      <dc:creator>aju_augustine</dc:creator>
      <dc:date>2024-04-05T07:30:37Z</dc:date>
    </item>
    <item>
      <title>Re: post processor 3/5 assi VMC</title>
      <link>https://forums.autodesk.com/t5/fusion-manufacture-forum/post-processor-3-5-assi-vmc/m-p/12688833#M15768</link>
      <description>&lt;P&gt;Ho trovato la soluzione a mio modo grazie al tuo aiuto... se vuoi controllare ti lascio il file in allegato..&lt;/P&gt;&lt;P&gt;grazie! A presto&lt;/P&gt;</description>
      <pubDate>Fri, 05 Apr 2024 08:17:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-manufacture-forum/post-processor-3-5-assi-vmc/m-p/12688833#M15768</guid>
      <dc:creator>stefanovero22</dc:creator>
      <dc:date>2024-04-05T08:17:03Z</dc:date>
    </item>
    <item>
      <title>Re: post processor 3/5 assi VMC</title>
      <link>https://forums.autodesk.com/t5/fusion-manufacture-forum/post-processor-3-5-assi-vmc/m-p/13907891#M173087</link>
      <description>&lt;P&gt;Buongiorno. sono di nuovo qui a disturbare... avrei bisogno di escludere nella parte finale del programma la X0 che si trova dentro al G28. vorrei che ci fosse solo G28 Y0.&lt;/P&gt;&lt;P&gt;Grazie in anticipo&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;&amp;nbsp;&lt;/P&gt;&lt;P&gt;M09&lt;BR /&gt;G28 G91 Z0.&lt;BR /&gt;G90&lt;BR /&gt;G49&lt;BR /&gt;M11&lt;BR /&gt;M39&lt;BR /&gt;G69&lt;BR /&gt;G00 B0. C0.&lt;BR /&gt;M10&lt;BR /&gt;M38&lt;BR /&gt;G28 G91 X0. Y0.&lt;BR /&gt;G90&lt;BR /&gt;M30&lt;/P&gt;&lt;P&gt;N9999&lt;/P&gt;</description>
      <pubDate>Mon, 17 Nov 2025 13:57:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-manufacture-forum/post-processor-3-5-assi-vmc/m-p/13907891#M173087</guid>
      <dc:creator>stefanovero22</dc:creator>
      <dc:date>2025-11-17T13:57:09Z</dc:date>
    </item>
    <item>
      <title>Re: post processor 3/5 assi VMC</title>
      <link>https://forums.autodesk.com/t5/fusion-manufacture-forum/post-processor-3-5-assi-vmc/m-p/13911079#M173142</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/13234351"&gt;@stefanovero22&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;You can search for &lt;EM&gt;&lt;U&gt;&lt;STRONG&gt;homeXY&lt;/STRONG&gt;&lt;/U&gt;&lt;/EM&gt; and set &lt;EM&gt;&lt;U&gt;&lt;STRONG&gt;onProgramEnd&lt;/STRONG&gt;&lt;/U&gt;&lt;/EM&gt; to&amp;nbsp;&lt;EM&gt;&lt;STRONG&gt;&lt;SPAN&gt;axes&lt;/SPAN&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;[&lt;/SPAN&gt;&lt;SPAN&gt;Y&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/EM&gt;&lt;SPAN&gt;&lt;EM&gt;&lt;STRONG&gt;]&lt;/STRONG&gt;&lt;/EM&gt; to output only Y.&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;Original&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;homeXY                    : {onIndexing:false, onToolChange:false, onProgramEnd:{axes:[X, Y]}} // Specifies when the machine should be homed in X/Y. Sample: onIndexing:{axes:[X, Y], singleLine:false}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;BR /&gt;&lt;U&gt;&lt;STRONG&gt;Modified&lt;BR /&gt;&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;homeXY                    : {onIndexing:false, onToolChange:false, onProgramEnd:{axes:[Y]}} // Specifies when the machine should be homed in X/Y. Sample: onIndexing:{axes:[X, Y], singleLine:false}
&lt;/LI-CODE&gt;
&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Nov 2025 11:11:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-manufacture-forum/post-processor-3-5-assi-vmc/m-p/13911079#M173142</guid>
      <dc:creator>aju_augustine</dc:creator>
      <dc:date>2025-11-19T11:11:21Z</dc:date>
    </item>
  </channel>
</rss>

