<?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: Error in end point of circle Siemens 840D in HSM Post Processor Forum</title>
    <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/error-in-end-point-of-circle-siemens-840d/m-p/9681791#M7463</link>
    <description>&lt;P&gt;Hello Bob,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I got an error today on post&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Error&lt;/SPAN&gt;&lt;SPAN&gt;:&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;Error&lt;/SPAN&gt;&lt;SPAN&gt;:&amp;nbsp;Invalid&amp;nbsp;number&amp;nbsp;of&amp;nbsp;arguments.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;that was on circular.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;And also on 2d contour i couldn't make circular line in - now is changed to simple straight line in.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
    <pubDate>Mon, 10 Aug 2020 06:37:26 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2020-08-10T06:37:26Z</dc:date>
    <item>
      <title>Error in end point of circle Siemens 840D</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/error-in-end-point-of-circle-siemens-840d/m-p/9653083#M7447</link>
      <description>&lt;P&gt;Can anyone finally fix this error. It's caused by smoothing, and it's happening because there is no vectorized check of position after smooth made its work. But machine doesn't "like" those small differences.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please can anyone help. I'm tired of splitting processes and looking for a way to get the machine to work.&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jul 2020 07:47:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/error-in-end-point-of-circle-siemens-840d/m-p/9653083#M7447</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-07-24T07:47:48Z</dc:date>
    </item>
    <item>
      <title>Re: Error in end point of circle Siemens 840D</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/error-in-end-point-of-circle-siemens-840d/m-p/9664171#M7448</link>
      <description>&lt;P&gt;It sounds like your control does not like the round-off error on the final point of the circle.&amp;nbsp; If this is the case, you can add code to make this final point lie exactly on the circle.&amp;nbsp; We do this in some of our posts for finicky controllers, for example the &lt;A href="https://cam.autodesk.com/hsmposts?p=prototrak" target="_blank" rel="noopener"&gt;Prototrak&lt;/A&gt; post processor.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To implement this logic in your post, copy the entire &lt;EM&gt;CircularData&lt;/EM&gt; function into the post and make all changes that reference &lt;STRONG&gt;circle&lt;/STRONG&gt; in the &lt;EM&gt;onCircular&lt;/EM&gt; function.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;// COPY THIS ENTIRE FUNCTION TO YOUR POST FROM THE PROTOTRAK POST
/** Adjust final point to lie exactly on circle. */
function CircularData(_plane, _center, _end) {
...
}

// MAKE ALL CHANGES RELATED TO THE 'circle' VARIABLE
function onCircular (clockwise, cx, cy, cz, x, y, z, feed) {
...
var circle = new CircularData(getCircularPlane(), new Vector(cx, cy, cz), new Vector(x, y, z));
...
    switch (getCircularPlane()) {
    case PLANE_XY:
      writeBlock(
        gAbsIncModal.format(90), gPlaneModal.format(17), gMotionModal.format(clockwise ? 2 : 3),
        xOutput.format(circle.end.x), yOutput.format(circle.end.y), zOutput.format(circle.end.z),
        iOutput.format(circle.offset.x, 0), jOutput.format(circle.offset.y, 0), feedOutput.format(feed)
      );
      break;&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jul 2020 13:02:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/error-in-end-point-of-circle-siemens-840d/m-p/9664171#M7448</guid>
      <dc:creator>bob.schultz</dc:creator>
      <dc:date>2020-07-30T13:02:12Z</dc:date>
    </item>
    <item>
      <title>Re: Error in end point of circle Siemens 840D</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/error-in-end-point-of-circle-siemens-840d/m-p/9664251#M7449</link>
      <description>&lt;P&gt;ok &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;but ... I'm pretty sure I'm using IJK onCircular mode, and also the infeed and outfeed arcs are used differenty - I think CIP is used when all IJK coordinates are used.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PS. And yes the error is visible when for example simple chamfering in circle is made - and coordinates are like 0,001 off - ie. X should be 2.5 and in code is 2.499&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jul 2020 13:27:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/error-in-end-point-of-circle-siemens-840d/m-p/9664251#M7449</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-07-30T13:27:10Z</dc:date>
    </item>
    <item>
      <title>Re: Error in end point of circle Siemens 840D</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/error-in-end-point-of-circle-siemens-840d/m-p/9665199#M7450</link>
      <description>&lt;P&gt;The CircularData function returns the circular data so that the values generate a circular record that is exact using the truncated values and will not be off by 1 unit.&amp;nbsp; It can be used in any post just by calling it and replacing the values passed into onCircular with the CircularData (circle) values.&amp;nbsp; Here are a list of the values that are returned, and the onCircular values they replace.&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;CircularData     onCircular Variables
start   --&amp;gt;      getCurrentPosition() (start)
end     --&amp;gt;      x, y, z
center  --&amp;gt;      cx, cy, cz
offset  --&amp;gt;      center - start
radius  --&amp;gt;      getCircularRadius()
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jul 2020 20:46:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/error-in-end-point-of-circle-siemens-840d/m-p/9665199#M7450</guid>
      <dc:creator>bob.schultz</dc:creator>
      <dc:date>2020-07-30T20:46:02Z</dc:date>
    </item>
    <item>
      <title>Re: Error in end point of circle Siemens 840D</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/error-in-end-point-of-circle-siemens-840d/m-p/9674117#M7451</link>
      <description>&lt;P&gt;So finally got some time to play with it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm getting post processor error:&amp;nbsp;&lt;SPAN style="font-family: inherit;"&gt;Error&lt;/SPAN&gt;&lt;SPAN style="font-family: inherit;"&gt;:&amp;nbsp;TypeError:&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="font-family: inherit;"&gt;circle.end&lt;/SPAN&gt;&lt;SPAN style="font-family: inherit;"&gt;&amp;nbsp;is&amp;nbsp;undefined&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Aug 2020 11:34:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/error-in-end-point-of-circle-siemens-840d/m-p/9674117#M7451</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-08-05T11:34:08Z</dc:date>
    </item>
    <item>
      <title>Re: Error in end point of circle Siemens 840D</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/error-in-end-point-of-circle-siemens-840d/m-p/9674311#M7452</link>
      <description>&lt;P&gt;Did you add this line to the onCircular function?&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;var circle = new CircularData(getCircularPlane(), new Vector(cx, cy, cz), new Vector(x, y, z));&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Aug 2020 12:47:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/error-in-end-point-of-circle-siemens-840d/m-p/9674311#M7452</guid>
      <dc:creator>bob.schultz</dc:creator>
      <dc:date>2020-08-05T12:47:02Z</dc:date>
    </item>
    <item>
      <title>Re: Error in end point of circle Siemens 840D</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/error-in-end-point-of-circle-siemens-840d/m-p/9674356#M7453</link>
      <description>&lt;P&gt;Yes I did&lt;/P&gt;</description>
      <pubDate>Wed, 05 Aug 2020 13:05:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/error-in-end-point-of-circle-siemens-840d/m-p/9674356#M7453</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-08-05T13:05:30Z</dc:date>
    </item>
    <item>
      <title>Re: Error in end point of circle Siemens 840D</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/error-in-end-point-of-circle-siemens-840d/m-p/9674373#M7454</link>
      <description>&lt;P&gt;The CircularData function should have been copied from the Prototrak post.&amp;nbsp; It is blank in your post.&amp;nbsp; Here is a copy of the function that you can copy into your post.&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;/** Adjust final point to lie exactly on circle. */
function CircularData(_plane, _center, _end) {
  // use Output variables, since last point could have been adjusted if previous move was circular
  var start = new Vector(xOutput.getCurrent(), yOutput.getCurrent(), zOutput.getCurrent());
  var saveStart = new Vector(start.x, start.y, start.z);
  var center = new Vector(
    xyzFormat.getResultingValue(_center.x),
    xyzFormat.getResultingValue(_center.y),
    xyzFormat.getResultingValue(_center.z)
  );
  var end = new Vector(_end.x, _end.y, _end.z);
  switch (_plane) {
  case PLANE_XY:
    start.setZ(center.z);
    end.setZ(center.z);
    break;
  case PLANE_ZX:
    start.setY(center.y);
    end.setY(center.y);
    break;
  case PLANE_YZ:
    start.setX(center.x);
    end.setX(center.x);
    break;
  default:
    this.center = new Vector(_center.x, _center.y, _center.z);
    this.start = new Vector(start.x, start.y, start.z);
    this.end = new Vector(_end.x, _end.y, _end.z);
    this.offset = Vector.diff(center, start);
    this.radius = this.offset.length;
    break;
  }
  this.start = new Vector(
    xyzFormat.getResultingValue(start.x),
    xyzFormat.getResultingValue(start.y),
    xyzFormat.getResultingValue(start.z)
  );
  var temp = Vector.diff(center, start);
  this.offset = new Vector(
    xyzFormat.getResultingValue(temp.x),
    xyzFormat.getResultingValue(temp.y),
    xyzFormat.getResultingValue(temp.z)
  );
  this.center = Vector.sum(this.start, this.offset);
  this.radius = this.offset.length;

  temp = Vector.diff(end, center).normalized;
  this.end = new Vector(
    xyzFormat.getResultingValue(this.center.x + temp.x * this.radius),
    xyzFormat.getResultingValue(this.center.y + temp.y * this.radius),
    xyzFormat.getResultingValue(this.center.z + temp.z * this.radius)
  );

  switch (_plane) {
  case PLANE_XY:
    this.start.setZ(saveStart.z);
    this.end.setZ(_end.z);
    this.offset.setZ(0);
    break;
  case PLANE_ZX:
    this.start.setY(saveStart.y);
    this.end.setY(_end.y);
    this.offset.setY(0);
    break;
  case PLANE_YZ:
    this.start.setX(saveStart.x);
    this.end.setX(_end.x);
    this.offset.setX(0);
    break;
  }
}&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 05 Aug 2020 13:09:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/error-in-end-point-of-circle-siemens-840d/m-p/9674373#M7454</guid>
      <dc:creator>bob.schultz</dc:creator>
      <dc:date>2020-08-05T13:09:20Z</dc:date>
    </item>
    <item>
      <title>Re: Error in end point of circle Siemens 840D</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/error-in-end-point-of-circle-siemens-840d/m-p/9674508#M7455</link>
      <description>&lt;P&gt;Oww sorry my bad.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ok I copied all of it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And it posted fine.&lt;/P&gt;&lt;P&gt;But on machine I got error.&lt;/P&gt;&lt;P&gt;And when I look at the code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;U&gt;N20 G0 X59.25 Y-31&lt;/U&gt;&lt;BR /&gt;N21 G0 Z15&lt;BR /&gt;N22 M8&lt;BR /&gt;N23 G0 Z5&lt;BR /&gt;N24 G1 Z-13 F200&lt;BR /&gt;N25 G17&lt;BR /&gt;&lt;U&gt;N26 G3 X58.25 Y-31 Z-14 I-1 J0 F2328&lt;/U&gt;&lt;BR /&gt;N27 G1 X57.25&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It's like it tries to go circular on straight line. at this point in code it should lead-in.&lt;/P&gt;</description>
      <pubDate>Wed, 05 Aug 2020 14:01:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/error-in-end-point-of-circle-siemens-840d/m-p/9674508#M7455</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-08-05T14:01:52Z</dc:date>
    </item>
    <item>
      <title>Re: Error in end point of circle Siemens 840D</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/error-in-end-point-of-circle-siemens-840d/m-p/9674899#M7456</link>
      <description>&lt;P&gt;Yes, this output is not correct since the end point calculates to be the same as the center point.&amp;nbsp; I have tried the modifications here and cannot duplicate this issue.&amp;nbsp; Can you provide the model that you are working with as an .f3d file.&amp;nbsp; Thanks.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;FYI, the circular block is actually a helical move, since the Z-axis moves in the same block.&lt;/P&gt;</description>
      <pubDate>Wed, 05 Aug 2020 16:21:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/error-in-end-point-of-circle-siemens-840d/m-p/9674899#M7456</guid>
      <dc:creator>bob.schultz</dc:creator>
      <dc:date>2020-08-05T16:21:04Z</dc:date>
    </item>
    <item>
      <title>Re: Error in end point of circle Siemens 840D</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/error-in-end-point-of-circle-siemens-840d/m-p/9676239#M7457</link>
      <description>&lt;P&gt;Attached&lt;/P&gt;</description>
      <pubDate>Thu, 06 Aug 2020 08:36:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/error-in-end-point-of-circle-siemens-840d/m-p/9676239#M7457</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-08-06T08:36:44Z</dc:date>
    </item>
    <item>
      <title>Re: Error in end point of circle Siemens 840D</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/error-in-end-point-of-circle-siemens-840d/m-p/9677689#M7458</link>
      <description>&lt;P&gt;Thanks for providing the model, it makes things clearer.&amp;nbsp; There are a couple of issues with your post concerning circular interpolation.&amp;nbsp; First, you added the plane codes (G17, G19), but forgot to add the output of G18.&amp;nbsp; The entry arc is in the G18 (ZX) plane, but the G18 code is not output in the circular block.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The second issue is that you output circular in all planes with the Ixxx and Jyyy center point coordinates.&amp;nbsp; You need to output the correct coordinates based on the plane (G17 Ixxx Jyyy), (G18 Ixxx, Kzzz), (G19, Jyyy Kzzz).&lt;/P&gt;</description>
      <pubDate>Thu, 06 Aug 2020 21:04:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/error-in-end-point-of-circle-siemens-840d/m-p/9677689#M7458</guid>
      <dc:creator>bob.schultz</dc:creator>
      <dc:date>2020-08-06T21:04:16Z</dc:date>
    </item>
    <item>
      <title>Re: Error in end point of circle Siemens 840D</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/error-in-end-point-of-circle-siemens-840d/m-p/9678405#M7459</link>
      <description>&lt;P&gt;Thank YOU Bob so much&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I think it works now.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there some test procedure that will prove correct working of posts?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And small question: Is there a way to make bore operations on cone surfaces to not linearize in code but make true helical moves - i guess with xyz and ijk at the same time?&lt;/P&gt;</description>
      <pubDate>Fri, 07 Aug 2020 07:51:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/error-in-end-point-of-circle-siemens-840d/m-p/9678405#M7459</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-08-07T07:51:43Z</dc:date>
    </item>
    <item>
      <title>Re: Error in end point of circle Siemens 840D</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/error-in-end-point-of-circle-siemens-840d/m-p/9678728#M7460</link>
      <description>&lt;P&gt;Unfortunately something sliped throu cracks.&lt;/P&gt;&lt;P&gt;I got error again. in attached part, on last 3d contour. On line N28&lt;/P&gt;</description>
      <pubDate>Fri, 07 Aug 2020 10:54:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/error-in-end-point-of-circle-siemens-840d/m-p/9678728#M7460</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-08-07T10:54:09Z</dc:date>
    </item>
    <item>
      <title>Re: Error in end point of circle Siemens 840D</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/error-in-end-point-of-circle-siemens-840d/m-p/9679861#M7461</link>
      <description>&lt;P&gt;I checked the values here and they are exact.&amp;nbsp; The circle in question has a circular sweep of 359.215 degrees, almost a full circle.&amp;nbsp; It seems that your control does not like this for some reason, so you can limit the circular output to 90 degrees which hopefully resolves the last of your issues.&amp;nbsp; You will find this variable towards the top of the post, make it look like this.&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;var useArcTurn = true;
maximumCircularSweep = toRad(useArcTurn ? 90 : 90); // max revolutions&lt;/LI-CODE&gt;
&lt;P&gt;If this doesn't work, you can try to set &lt;EM&gt;useArcTurn&lt;/EM&gt; to &lt;EM&gt;false&lt;/EM&gt;, which will output circular records using the &lt;EM&gt;CR=radius&lt;/EM&gt; format.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Aug 2020 20:23:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/error-in-end-point-of-circle-siemens-840d/m-p/9679861#M7461</guid>
      <dc:creator>bob.schultz</dc:creator>
      <dc:date>2020-08-07T20:23:54Z</dc:date>
    </item>
    <item>
      <title>Re: Error in end point of circle Siemens 840D</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/error-in-end-point-of-circle-siemens-840d/m-p/9679917#M7462</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Thank YOU Bob so much&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think it works now.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is there some test procedure that will prove correct working of posts?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And small question: Is there a way to make bore operations on cone surfaces to not linearize in code but make true helical moves - i guess with xyz and ijk at the same time?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can run the NC code through a back plot routine, such as &lt;A href="https://ncviewer.com/" target="_blank" rel="noopener"&gt;NC Viewer&lt;/A&gt; to visualize it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For helical interpolation on a cone, it is not possible since the radius of the arc changes as the tool path progresses down the cone.&amp;nbsp; It is only valid for a cylinder.&lt;/P&gt;</description>
      <pubDate>Fri, 07 Aug 2020 21:05:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/error-in-end-point-of-circle-siemens-840d/m-p/9679917#M7462</guid>
      <dc:creator>bob.schultz</dc:creator>
      <dc:date>2020-08-07T21:05:42Z</dc:date>
    </item>
    <item>
      <title>Re: Error in end point of circle Siemens 840D</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/error-in-end-point-of-circle-siemens-840d/m-p/9681791#M7463</link>
      <description>&lt;P&gt;Hello Bob,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I got an error today on post&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Error&lt;/SPAN&gt;&lt;SPAN&gt;:&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;Error&lt;/SPAN&gt;&lt;SPAN&gt;:&amp;nbsp;Invalid&amp;nbsp;number&amp;nbsp;of&amp;nbsp;arguments.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;that was on circular.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;And also on 2d contour i couldn't make circular line in - now is changed to simple straight line in.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 10 Aug 2020 06:37:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/error-in-end-point-of-circle-siemens-840d/m-p/9681791#M7463</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-08-10T06:37:26Z</dc:date>
    </item>
    <item>
      <title>Re: Error in end point of circle Siemens 840D</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/error-in-end-point-of-circle-siemens-840d/m-p/9682424#M7464</link>
      <description>&lt;P&gt;I don't get an error running your part on my version of the post.&amp;nbsp; Can you supply the post you are using?&amp;nbsp; The vertical lead-in is controlled by Fusion, if you make the following changes in the Linking tab of the 2-D profile, you will get a circular lead-in.&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="Lead-in.png" style="width: 247px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/805531i524FDEEA0213A4FF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Lead-in.png" alt="Lead-in.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Aug 2020 13:26:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/error-in-end-point-of-circle-siemens-840d/m-p/9682424#M7464</guid>
      <dc:creator>bob.schultz</dc:creator>
      <dc:date>2020-08-10T13:26:38Z</dc:date>
    </item>
    <item>
      <title>Re: Error in end point of circle Siemens 840D</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/error-in-end-point-of-circle-siemens-840d/m-p/9682439#M7465</link>
      <description>&lt;P&gt;It occurs on 2d adaptive&lt;/P&gt;</description>
      <pubDate>Mon, 10 Aug 2020 13:33:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/error-in-end-point-of-circle-siemens-840d/m-p/9682439#M7465</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-08-10T13:33:21Z</dc:date>
    </item>
    <item>
      <title>Re: Error in end point of circle Siemens 840D</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/error-in-end-point-of-circle-siemens-840d/m-p/9682935#M7466</link>
      <description>&lt;P&gt;I don't get an error running with your part and post.&amp;nbsp; Can you provide the log file created when you get the error?&lt;/P&gt;</description>
      <pubDate>Mon, 10 Aug 2020 16:01:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/error-in-end-point-of-circle-siemens-840d/m-p/9682935#M7466</guid>
      <dc:creator>bob.schultz</dc:creator>
      <dc:date>2020-08-10T16:01:18Z</dc:date>
    </item>
  </channel>
</rss>

