<?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: FIDIA post in HSM Post Processor Forum</title>
    <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/fidia-post/m-p/9515154#M8035</link>
    <description>&lt;P&gt;Hi andrea.amilo.&lt;/P&gt;&lt;P&gt;Thank u so much for the rapid answer.&lt;/P&gt;&lt;P&gt;I try for the first time in the FIDIA Isograph to simulate the passes and toolpath, and some of the trajectory did&amp;nbsp; it well&amp;nbsp;but&amp;nbsp; other ones very bad.&lt;/P&gt;&lt;P&gt;It is impossible to machining like this.&lt;/P&gt;&lt;P&gt;On the first image in fusion 360 you can see the generated passes...&lt;/P&gt;&lt;P&gt;On the other two images you can see what the machine do.&lt;/P&gt;&lt;P&gt;Thank you soo much&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Fusion 360 toolpath.jpg" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/770208iF511BAE75CFA74C3/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Fusion 360 toolpath.jpg" alt="Fusion 360 toolpath.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="machining toolpath fail 2 .jpg" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/770209i9AC56B4E523F769F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="machining toolpath fail 2 .jpg" alt="machining toolpath fail 2 .jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="machining toolpath fail 3 .jpg" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/770210i6CE75ED80991FA30/image-size/medium?v=v2&amp;amp;px=400" role="button" title="machining toolpath fail 3 .jpg" alt="machining toolpath fail 3 .jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;   &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 14 May 2020 08:12:20 GMT</pubDate>
    <dc:creator>reisaXWBA5</dc:creator>
    <dc:date>2020-05-14T08:12:20Z</dc:date>
    <item>
      <title>FIDIA post</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/fidia-post/m-p/9509290#M8033</link>
      <description>&lt;P&gt;I want the center points of G02 /G03&amp;nbsp; in absolute (&lt;SPAN&gt;change I J K I value on G02 and G03 so it&amp;nbsp;&lt;/SPAN&gt;&lt;FONT&gt;count from working zero).&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;The FIDIA control didnt work on incremental center points.&lt;/P&gt;&lt;P&gt;Please I need help.&lt;/P&gt;&lt;P&gt;I cant use the milling machine with Fusion 360.&lt;/P&gt;</description>
      <pubDate>Tue, 12 May 2020 09:34:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/fidia-post/m-p/9509290#M8033</guid>
      <dc:creator>reisaXWBA5</dc:creator>
      <dc:date>2020-05-12T09:34:43Z</dc:date>
    </item>
    <item>
      <title>Re: FIDIA post</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/fidia-post/m-p/9509426#M8034</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/8776091"&gt;@reisaXWBA5&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;to configure circular interpolation to write IJK in absolute, I think you could modify few lines in onCircular function.&lt;/P&gt;
&lt;P&gt;You need to modify&amp;nbsp; iOutput.format, jOutput.format and kOutput.format definition.&lt;/P&gt;
&lt;P&gt;From :&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;iOutput.format(cx - start.x, 0)&amp;nbsp; &amp;nbsp; &amp;nbsp;jOutput.format(cy - start.y, 0)&amp;nbsp; &amp;nbsp; &amp;nbsp;kOutput.format(cz - start.z, 0)&lt;/P&gt;
&lt;P&gt;To:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; iOutput.format(cx, 0)&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;jOutput.format(cy, 0)&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;kOutput.format(cz, 0)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;These are edited lines starting from line 895 :&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;    switch (getCircularPlane()) {
    case PLANE_XY:
      writeBlock(gAbsIncModal.format(90), gPlaneModal.format(17), gMotionModal.format(clockwise ? 2 : 3), iOutput.format(cx, 0), jOutput.format(cy, 0), feedOutput.format(feed));
      break;
    case PLANE_ZX:
      writeBlock(gAbsIncModal.format(90), gPlaneModal.format(18), gMotionModal.format(clockwise ? 2 : 3), iOutput.format(cx, 0), kOutput.format(cz, 0), feedOutput.format(feed));
      break;
    case PLANE_YZ:
      writeBlock(gAbsIncModal.format(90), gPlaneModal.format(19), gMotionModal.format(clockwise ? 2 : 3), jOutput.format(cy, 0), kOutput.format(cz, 0), feedOutput.format(feed));
      break;
    default:
      linearize(tolerance);
    }
  } else {
    switch (getCircularPlane()) {
    case PLANE_XY:
      writeBlock(gAbsIncModal.format(90), gPlaneModal.format(17), gMotionModal.format(clockwise ? 2 : 3), xOutput.format(x), yOutput.format(y), zOutput.format(z), iOutput.format(cx, 0), jOutput.format(cy, 0), feedOutput.format(feed));
      break;
    case PLANE_ZX:
      writeBlock(gAbsIncModal.format(90), gPlaneModal.format(18), gMotionModal.format(clockwise ? 2 : 3), xOutput.format(x), yOutput.format(y), zOutput.format(z), iOutput.format(cx, 0), kOutput.format(cz, 0), feedOutput.format(feed));
      break;
    case PLANE_YZ:
      writeBlock(gAbsIncModal.format(90), gPlaneModal.format(19), gMotionModal.format(clockwise ? 2 : 3), xOutput.format(x), yOutput.format(y), zOutput.format(z), jOutput.format(cy, 0), kOutput.format(cz, 0), feedOutput.format(feed));
      break;
    default:
      linearize(tolerance);
    }
  }&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please test it carefully and let me know.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 12 May 2020 10:33:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/fidia-post/m-p/9509426#M8034</guid>
      <dc:creator>andrea.amilo</dc:creator>
      <dc:date>2020-05-12T10:33:55Z</dc:date>
    </item>
    <item>
      <title>Re: FIDIA post</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/fidia-post/m-p/9515154#M8035</link>
      <description>&lt;P&gt;Hi andrea.amilo.&lt;/P&gt;&lt;P&gt;Thank u so much for the rapid answer.&lt;/P&gt;&lt;P&gt;I try for the first time in the FIDIA Isograph to simulate the passes and toolpath, and some of the trajectory did&amp;nbsp; it well&amp;nbsp;but&amp;nbsp; other ones very bad.&lt;/P&gt;&lt;P&gt;It is impossible to machining like this.&lt;/P&gt;&lt;P&gt;On the first image in fusion 360 you can see the generated passes...&lt;/P&gt;&lt;P&gt;On the other two images you can see what the machine do.&lt;/P&gt;&lt;P&gt;Thank you soo much&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Fusion 360 toolpath.jpg" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/770208iF511BAE75CFA74C3/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Fusion 360 toolpath.jpg" alt="Fusion 360 toolpath.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="machining toolpath fail 2 .jpg" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/770209i9AC56B4E523F769F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="machining toolpath fail 2 .jpg" alt="machining toolpath fail 2 .jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="machining toolpath fail 3 .jpg" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/770210i6CE75ED80991FA30/image-size/medium?v=v2&amp;amp;px=400" role="button" title="machining toolpath fail 3 .jpg" alt="machining toolpath fail 3 .jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;   &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 14 May 2020 08:12:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/fidia-post/m-p/9515154#M8035</guid>
      <dc:creator>reisaXWBA5</dc:creator>
      <dc:date>2020-05-14T08:12:20Z</dc:date>
    </item>
    <item>
      <title>Re: FIDIA post</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/fidia-post/m-p/9515980#M8036</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/8776091"&gt;@reisaXWBA5&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think we can start defining circular interpolation only on G17XY plane, linearising other planes and helicals.&lt;/P&gt;
&lt;P&gt;To do this I think you could modify lines 34 and 35 as shown here :&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;allowHelicalMoves = false;
allowedCircularPlanes = 1; // allow circular motion only XY plane&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please test it carefully and let me know.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 14 May 2020 13:06:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/fidia-post/m-p/9515980#M8036</guid>
      <dc:creator>andrea.amilo</dc:creator>
      <dc:date>2020-05-14T13:06:40Z</dc:date>
    </item>
    <item>
      <title>Re: FIDIA post</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/fidia-post/m-p/9518111#M8037</link>
      <description>&lt;P&gt;Same wrong toolpath with that piece.&lt;/P&gt;&lt;P&gt;Yesterday with your first answer I try with other piece and works.&lt;/P&gt;&lt;P&gt;How can it be possible?&lt;/P&gt;&lt;P&gt;The Fusion 360 generated toolpath is the same that the simulation on FIDIA.&amp;nbsp; &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;But trying with other pieces didnt work.&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="FIDIA toolpath.jpg" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/770846i92C659FB7145CFBA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="FIDIA toolpath.jpg" alt="FIDIA toolpath.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="fusion 360 toolpath.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/770845i6ACF1383A2532838/image-size/medium?v=v2&amp;amp;px=400" role="button" title="fusion 360 toolpath.png" alt="fusion 360 toolpath.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 15 May 2020 08:15:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/fidia-post/m-p/9518111#M8037</guid>
      <dc:creator>reisaXWBA5</dc:creator>
      <dc:date>2020-05-15T08:15:19Z</dc:date>
    </item>
    <item>
      <title>Re: FIDIA post</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/fidia-post/m-p/9518551#M8038</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/8776091"&gt;@reisaXWBA5&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I don't know what could be the difference between your toolpaths.&lt;/P&gt;
&lt;P&gt;In my opinion the better thing to do is to simplify circular interpolation syntax as described in message #4.&lt;/P&gt;
&lt;P&gt;You can configure arcs only on G17XY plane, linearising other planes and helical moves.&lt;/P&gt;
&lt;P&gt;Have you tried to do this ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 15 May 2020 11:48:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/fidia-post/m-p/9518551#M8038</guid>
      <dc:creator>andrea.amilo</dc:creator>
      <dc:date>2020-05-15T11:48:04Z</dc:date>
    </item>
    <item>
      <title>Re: FIDIA post</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/fidia-post/m-p/9524132#M8039</link>
      <description>&lt;P&gt;Then, you say only to aply the changes of message 4# or...... the&amp;nbsp; 2#&amp;nbsp;&lt;FONT size="5"&gt;+&lt;/FONT&gt; 4#.&lt;/P&gt;&lt;P&gt;I have tried to aply both of them and the same as the last try.&amp;nbsp; &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&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;</description>
      <pubDate>Mon, 18 May 2020 15:36:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/fidia-post/m-p/9524132#M8039</guid>
      <dc:creator>reisaXWBA5</dc:creator>
      <dc:date>2020-05-18T15:36:55Z</dc:date>
    </item>
    <item>
      <title>Re: FIDIA post</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/fidia-post/m-p/9526370#M8040</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/8776091"&gt;@reisaXWBA5&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think circular moves syntax is correct for Fidia controller if you've applied both #2 and #4 modification.&lt;/P&gt;
&lt;P&gt;Could you please attach here a Fusion 360 project containing just one toolpath ( bad simulated in Fidia ) and your edited postprocessor ?&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 19 May 2020 12:09:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/fidia-post/m-p/9526370#M8040</guid>
      <dc:creator>andrea.amilo</dc:creator>
      <dc:date>2020-05-19T12:09:49Z</dc:date>
    </item>
    <item>
      <title>Re: FIDIA post</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/fidia-post/m-p/9537638#M8041</link>
      <description>&lt;P&gt;Hi.&lt;/P&gt;&lt;P&gt;Im sorry for the delay.&lt;/P&gt;&lt;P&gt;Here you have&amp;nbsp; the Fusion360 proyect with one toolpath and&amp;nbsp; my edited post&lt;/P&gt;</description>
      <pubDate>Mon, 25 May 2020 07:30:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/fidia-post/m-p/9537638#M8041</guid>
      <dc:creator>reisaXWBA5</dc:creator>
      <dc:date>2020-05-25T07:30:23Z</dc:date>
    </item>
    <item>
      <title>Re: FIDIA post</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/fidia-post/m-p/9537720#M8042</link>
      <description>&lt;P&gt;HI&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/8776091"&gt;@reisaXWBA5&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think there are few other issues&amp;nbsp;to be fixed about circular interpolation.&lt;/P&gt;
&lt;P&gt;I think we need to write out G02/G03 and I/J as not modal, so repeated on each circular movement.&lt;/P&gt;
&lt;P&gt;To do this, you can add 'force:true' option in circular output format ( starting from line 110 ) :&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;// circular output
var iOutput = createReferenceVariable({prefix:"I", force:true}, xyzFormat);
var jOutput = createReferenceVariable({prefix:"J", force:true}, xyzFormat);
var kOutput = createReferenceVariable({prefix:"K", force:true}, xyzFormat);&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and define gMotion to be always written, adding&amp;nbsp; gMotionModal.reset();&amp;nbsp; at line 890&amp;nbsp; :&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;  var start = getCurrentPosition();

  gMotionModal.reset();

  if (isFullCircle()) {&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think these modification will fix everything related to circular interpolation.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;At the end I think you could make another small modification to remove G28 function because I think it is not a proper Fidia function.&lt;/P&gt;
&lt;P&gt;To do this you can simply comment writeRetract call function in each occurrence (4) :&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;// writeRetract(Z);&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;//writeRetract(X, Y);&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;at line 315, 408, 1135 and 1139.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As usual, please test it carefully and let me know.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 25 May 2020 08:26:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/fidia-post/m-p/9537720#M8042</guid>
      <dc:creator>andrea.amilo</dc:creator>
      <dc:date>2020-05-25T08:26:27Z</dc:date>
    </item>
    <item>
      <title>Re: FIDIA post</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/fidia-post/m-p/9547597#M8043</link>
      <description>&lt;P&gt;Hi andrea.amilo.&lt;/P&gt;&lt;P&gt;The Fidia Isographs reads the program and does the simulation well.&lt;/P&gt;&lt;P&gt;Im going to try some finishing toolpaths in the machine&amp;nbsp; next week.&lt;/P&gt;&lt;P&gt;Im going to test it carefully but seems that every toolpaths are ok.&lt;/P&gt;&lt;P&gt;No collisions, no wrong toolpaths and strange movements....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you so much.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 29 May 2020 05:56:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/fidia-post/m-p/9547597#M8043</guid>
      <dc:creator>reisaXWBA5</dc:creator>
      <dc:date>2020-05-29T05:56:42Z</dc:date>
    </item>
    <item>
      <title>Re: FIDIA post</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/fidia-post/m-p/9565357#M8044</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/8776091"&gt;@reisaXWBA5&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;have you tested your Fidia postprocessor on machine ? Is it working properly ?&lt;/P&gt;
&lt;P&gt;If my post answers your question, please click the "Accept Solution" button. &lt;BR /&gt;This helps everyone find answers more quickly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Sun, 07 Jun 2020 14:15:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/fidia-post/m-p/9565357#M8044</guid>
      <dc:creator>andrea.amilo</dc:creator>
      <dc:date>2020-06-07T14:15:40Z</dc:date>
    </item>
    <item>
      <title>Re: FIDIA post</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/fidia-post/m-p/9566082#M8045</link>
      <description>&lt;P&gt;It works!!!!&lt;/P&gt;&lt;P&gt;Thank you so much.&lt;/P&gt;</description>
      <pubDate>Mon, 08 Jun 2020 05:02:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/fidia-post/m-p/9566082#M8045</guid>
      <dc:creator>reisaXWBA5</dc:creator>
      <dc:date>2020-06-08T05:02:22Z</dc:date>
    </item>
    <item>
      <title>Re: FIDIA post</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/fidia-post/m-p/12087176#M8046</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;N189 G00 Z107.108
N190 X-192.185 Y124.317
N191 Z55.916
N192 G01 Z55.333 F333​&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hi &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/4515634"&gt;@andrea.amilo&lt;/a&gt; . I tried this post processor, but there is a problem G00 and G01 are in the first lines, but the working logic is not like this. It works like this under normal conditions, but there is a situation like this: In the above code, G00 is used only N189, so the program moves up fast and N190 N191 behaves like G01 in these two lines.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;HR /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Jul 2023 19:57:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/fidia-post/m-p/12087176#M8046</guid>
      <dc:creator>Hunter_068</dc:creator>
      <dc:date>2023-07-07T19:57:45Z</dc:date>
    </item>
    <item>
      <title>Re: FIDIA post</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/fidia-post/m-p/12101592#M8047</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/14145525"&gt;@Hunter_068&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;it seems your Fidia controller needs G0 function on each rapid command line.&lt;/P&gt;
&lt;P&gt;To do that, you just need to reset gModal definition after every rapid move.&lt;/P&gt;
&lt;P&gt;I am showing you the modification applied to the &lt;A href="https://cam.autodesk.com/hsmposts?p=fidia" target="_blank" rel="noopener"&gt;latest version of postprocessor&lt;/A&gt; available in the library.&lt;BR /&gt;I do not know if the position (=line number) will be the same as your postprocessor:&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-center" image-alt="2023-07-14_12-33-16.png" style="width: 665px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1240492i1DC218DC4D836ED1/image-dimensions/665x234?v=v2" width="665" height="234" role="button" title="2023-07-14_12-33-16.png" alt="2023-07-14_12-33-16.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;As shown, you need to add the command&amp;nbsp; gMotionModal.reset();&amp;nbsp; on line 1446.&lt;/P&gt;
&lt;P&gt;If the line number doesn't match, it is important that you enter the command in the same position as the onRapid function (see arrow).&lt;/P&gt;
&lt;P&gt;Please test it carefully and let me know.&lt;/P&gt;
&lt;P&gt;Thanks.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jul 2023 10:36:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/fidia-post/m-p/12101592#M8047</guid>
      <dc:creator>andrea.amilo</dc:creator>
      <dc:date>2023-07-14T10:36:52Z</dc:date>
    </item>
    <item>
      <title>Re: FIDIA post</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/fidia-post/m-p/12184606#M8048</link>
      <description>Sorry for the late reply... Thank you very much for this information, I wish you a good work.</description>
      <pubDate>Mon, 21 Aug 2023 07:25:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/fidia-post/m-p/12184606#M8048</guid>
      <dc:creator>Hunter_068</dc:creator>
      <dc:date>2023-08-21T07:25:09Z</dc:date>
    </item>
  </channel>
</rss>

