<?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: Thread turning cycle spring pass in HSM Post Processor Forum</title>
    <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/thread-turning-cycle-spring-pass/m-p/9819093#M6657</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/2813555"&gt;@patrik_stellgren&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There is not a way to select the number, but if it did get added down the line then the logic in your post processor would only do the one spring pass which isn't so bad. Not anything to worry about.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Will&lt;/P&gt;</description>
    <pubDate>Thu, 22 Oct 2020 20:56:25 GMT</pubDate>
    <dc:creator>will_1</dc:creator>
    <dc:date>2020-10-22T20:56:25Z</dc:date>
    <item>
      <title>Thread turning cycle spring pass</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/thread-turning-cycle-spring-pass/m-p/9817964#M6651</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm editing a post for my lathe and kind of got stuck.&lt;/P&gt;&lt;P&gt;I have tried a few different turning posts but most of them does not support "Springpass" when using the cycle.&lt;/P&gt;&lt;P&gt;The only post i found it to be working in is the Generic Haas turning post. I've looked in to it but can't really wrap my head around it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The problem is my post doesn't generate a spring pass when using threading cycle. The dump shows two passes at the same X value. But not the posted code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My guess is to use the &amp;nbsp;&lt;SPAN style="font-family: inherit;"&gt;isLastCyclePoint() function but not sure what to write in it.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Oct 2020 12:57:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/thread-turning-cycle-spring-pass/m-p/9817964#M6651</guid>
      <dc:creator>patrik_stellgren</dc:creator>
      <dc:date>2020-10-22T12:57:25Z</dc:date>
    </item>
    <item>
      <title>Re: Thread turning cycle spring pass</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/thread-turning-cycle-spring-pass/m-p/9818300#M6652</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/2813555"&gt;@patrik_stellgren&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What control and cycle are you using?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Will&lt;/P&gt;</description>
      <pubDate>Thu, 22 Oct 2020 14:49:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/thread-turning-cycle-spring-pass/m-p/9818300#M6652</guid>
      <dc:creator>will_1</dc:creator>
      <dc:date>2020-10-22T14:49:05Z</dc:date>
    </item>
    <item>
      <title>Re: Thread turning cycle spring pass</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/thread-turning-cycle-spring-pass/m-p/9818310#M6653</link>
      <description>&lt;P&gt;Been tinkering a bit and might actually have solved it. Probably not the best way and it might cause other problems further down. But it works for now.&lt;/P&gt;&lt;P&gt;I created a variable for the parameter nullpass &amp;nbsp; and a if statement using isLastCyclePoint &amp;nbsp;&amp;amp; the created var&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Looks like this.&lt;/P&gt;&lt;P&gt;Feel free to give input&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;    if (hasParameter("operation:nullPass")) { 
      var NullPass = getParameter("operation:nullPass")
    }
    
  
    if (isLastCyclePoint() &amp;amp;&amp;amp; (NullPass == 1)) {        
      writeBlock(
        xOutput.reset(),
        xOutput.format(x - cycle.incrementalX)
        
      );
    }
    return;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Oct 2020 14:53:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/thread-turning-cycle-spring-pass/m-p/9818310#M6653</guid>
      <dc:creator>patrik_stellgren</dc:creator>
      <dc:date>2020-10-22T14:53:56Z</dc:date>
    </item>
    <item>
      <title>Re: Thread turning cycle spring pass</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/thread-turning-cycle-spring-pass/m-p/9818328#M6654</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/4006584"&gt;@will_1&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It's a Seicos L multi &amp;nbsp;&lt;span class="lia-unicode-emoji" title=":rolling_on_the_floor_laughing:"&gt;🤣&lt;/span&gt; based on a yasnax LX 3 back end. &amp;nbsp; &amp;nbsp;G92 threading cycle modified for my control.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 22 Oct 2020 14:58:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/thread-turning-cycle-spring-pass/m-p/9818328#M6654</guid>
      <dc:creator>patrik_stellgren</dc:creator>
      <dc:date>2020-10-22T14:58:13Z</dc:date>
    </item>
    <item>
      <title>Re: Thread turning cycle spring pass</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/thread-turning-cycle-spring-pass/m-p/9818465#M6655</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/2813555"&gt;@patrik_stellgren&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That makes sense to me. If functionality for the number of spring passes gets added it probably wouldn't work with that.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Will&lt;/P&gt;</description>
      <pubDate>Thu, 22 Oct 2020 15:47:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/thread-turning-cycle-spring-pass/m-p/9818465#M6655</guid>
      <dc:creator>will_1</dc:creator>
      <dc:date>2020-10-22T15:47:44Z</dc:date>
    </item>
    <item>
      <title>Re: Thread turning cycle spring pass</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/thread-turning-cycle-spring-pass/m-p/9818835#M6656</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/4006584"&gt;@will_1&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a way to select the number of spring passes in fusion? I don't see any such option?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 22 Oct 2020 18:28:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/thread-turning-cycle-spring-pass/m-p/9818835#M6656</guid>
      <dc:creator>patrik_stellgren</dc:creator>
      <dc:date>2020-10-22T18:28:09Z</dc:date>
    </item>
    <item>
      <title>Re: Thread turning cycle spring pass</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/thread-turning-cycle-spring-pass/m-p/9819093#M6657</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/2813555"&gt;@patrik_stellgren&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There is not a way to select the number, but if it did get added down the line then the logic in your post processor would only do the one spring pass which isn't so bad. Not anything to worry about.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Will&lt;/P&gt;</description>
      <pubDate>Thu, 22 Oct 2020 20:56:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/thread-turning-cycle-spring-pass/m-p/9819093#M6657</guid>
      <dc:creator>will_1</dc:creator>
      <dc:date>2020-10-22T20:56:25Z</dc:date>
    </item>
  </channel>
</rss>

