<?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: Feedrate Units Adjustment in HSM Post Processor Forum</title>
    <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/feedrate-units-adjustment/m-p/8526701#M12489</link>
    <description>&lt;P&gt;So I've finished the adjustments and everything appears to be working correctly. The easiest and most clear solution I found is to add the line "feed = feed/60;" to any function that takes in "feed" as an argument.&lt;/P&gt;</description>
    <pubDate>Wed, 16 Jan 2019 14:39:31 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2019-01-16T14:39:31Z</dc:date>
    <item>
      <title>Feedrate Units Adjustment</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/feedrate-units-adjustment/m-p/8514266#M12487</link>
      <description>&lt;P&gt;So I am currently transitioning from toolpathing with AlphaCam to Inventor HSM and I am having some issues. The problem is that the feedrates output by the alphcam post appear to be in units of in/sec as opposed to in/min, but the feedrates stored in the tool library are certainly in in/min so the post is apparently converting the numbers. Is there a way to get similar performance out of the HSM post by modifying the code? As it stands the gcode from HSM has feedrates 60 times the feedrate coming from alphacam and I'd prefer to not do the conversion by hand.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm using the MultiCam ISO post.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jan 2019 19:50:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/feedrate-units-adjustment/m-p/8514266#M12487</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-01-10T19:50:56Z</dc:date>
    </item>
    <item>
      <title>Re: Feedrate Units Adjustment</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/feedrate-units-adjustment/m-p/8514334#M12488</link>
      <description>&lt;P&gt;So I figured out what to do, but I'm still wondering if there's anything else I should do to have a more complete solution.&lt;/P&gt;
&lt;P&gt;I changed a line "var f = feedOutput.format(feed/60);" in the "onLinear" function adding the "/60" to the input. My worry is that this is not the only time a feedrate is set, but I cannot find anywhere else that a similar function is being used, e.g. in the "onCircular" function there is a "feed" parameter but I don't see that parameter used anywhere within the function. Thoughts?&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jan 2019 20:09:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/feedrate-units-adjustment/m-p/8514334#M12488</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-01-10T20:09:37Z</dc:date>
    </item>
    <item>
      <title>Re: Feedrate Units Adjustment</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/feedrate-units-adjustment/m-p/8526701#M12489</link>
      <description>&lt;P&gt;So I've finished the adjustments and everything appears to be working correctly. The easiest and most clear solution I found is to add the line "feed = feed/60;" to any function that takes in "feed" as an argument.&lt;/P&gt;</description>
      <pubDate>Wed, 16 Jan 2019 14:39:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/feedrate-units-adjustment/m-p/8526701#M12489</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-01-16T14:39:31Z</dc:date>
    </item>
    <item>
      <title>Re: Feedrate Units Adjustment</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/feedrate-units-adjustment/m-p/8529947#M12490</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@Anonymous&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think an easier and prettier solution is tho scale all the feed output in one go.&lt;/P&gt;
&lt;P&gt;To do that change this line:&lt;/P&gt;
&lt;PRE&gt;var feedFormat = createFormat({decimals:(unit == MM ? 1 : 2)});&lt;/PRE&gt;
&lt;P&gt;To:&lt;/P&gt;
&lt;PRE&gt;var feedFormat = createFormat({decimals:(unit == MM ? 1 : 2), scale:(1/60)});&lt;/PRE&gt;
&lt;P&gt;That should divide all the feed output by 60.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Jan 2019 14:34:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/feedrate-units-adjustment/m-p/8529947#M12490</guid>
      <dc:creator>Laurens-3DTechDraw</dc:creator>
      <dc:date>2019-01-17T14:34:23Z</dc:date>
    </item>
    <item>
      <title>Re: Feedrate Units Adjustment</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/feedrate-units-adjustment/m-p/8530419#M12491</link>
      <description>&lt;P&gt;Yes I agree 100%! I did skim through the post processor manual but I didn't know that was an option. Thanks!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also, how did you make those code blocks?&lt;/P&gt;</description>
      <pubDate>Thu, 17 Jan 2019 16:57:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/feedrate-units-adjustment/m-p/8530419#M12491</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-01-17T16:57:01Z</dc:date>
    </item>
    <item>
      <title>Re: Feedrate Units Adjustment</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/feedrate-units-adjustment/m-p/8534635#M12492</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When replying online there is a &amp;lt;/&amp;gt; button.&lt;/P&gt;
&lt;P&gt;That allows you to add code blocks.&lt;/P&gt;</description>
      <pubDate>Sat, 19 Jan 2019 10:19:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/feedrate-units-adjustment/m-p/8534635#M12492</guid>
      <dc:creator>Laurens-3DTechDraw</dc:creator>
      <dc:date>2019-01-19T10:19:39Z</dc:date>
    </item>
    <item>
      <title>Re: Feedrate Units Adjustment</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/feedrate-units-adjustment/m-p/10037273#M12493</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've been trying to add those lines to my post processor, but the federate remains way too high since fusion 360 is in in/min and milticam in in/sec.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does anybody have any idea why it wouldn't work ?&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you !&lt;/P&gt;</description>
      <pubDate>Thu, 28 Jan 2021 02:13:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/feedrate-units-adjustment/m-p/10037273#M12493</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-01-28T02:13:09Z</dc:date>
    </item>
  </channel>
</rss>

