We are happy to announce that our project “E2C” is accepted and that we got an 18 month funding.
The project E2C will include 5 axes RTCP support of OpenCN with a kinematic module.
Feedrate planning will also be reworked in order to diminue computation time.
Hi Raoul,
Just for curiosity, will the tool orientation corner smoothing also be conducted in an optimization way like the method mentioned in the paper Optimal G2 Hermite interpolation for 3D curves?
for simultaneous 5 axis CNC machining, the G code is only a “cloud” of points.
These points are very dense, depending of the parametrization of the CAD-CAM tool.
It makes no sense to insert “smooth transitions” between these points.
So, the answer to your question is
List item YES, we’ll use Optimal G2 Hermite interpolation for 3D curves if the points are far away. This typically happens for CAD-CAM generated G-codes if only 2 axes are working simultanously.
List item Otherwise, for real 5 axes operation we will “compress” the original points into a B-Spline.
For item YES, What if both the position and orientation points are faraway? Maybe the tool waypoint is programmed by the user. In this case, will orientation smoothing also be conducted on the sphere?
For item Otherwise, do you mean to create two separate B-splines: p(u) for positions and q(u) for orientations (maybe represented as a quaternion spline)? How could their path parameter be synchronized then?
for sure, orientation smoothing between transitions will be necessary for waypoints that are far away.
For “compressing”, there are 2 possibilities :
Either a single B-spline with values in R^5. In this case the knot distribution and the spline degree is the same for position and orientation.
Or two separate B-splines, one for position, and one for orientation.
But a common abscissa u running from 0 to 1.
Any ideas from you are welcome.
Before starting with new ideas it is absolutely necessary to have a literature survey.
I’m open to read publications you would like to share with me.
Hi Raoul,
I think it would be great if the orientation is described by the general representation (like quaternion) instead of axis vector of alpha/beta spherical coordinate. Actually I am from the field of robotics and is investigating trajectory planning method for Cartesian space move. Using general description will make the algorithm more versatile also in robotic application.
Hi Yakunix,
that’s a good point.
Converting the angle information (B, C in our case) included in the G-code to quaternion is easy, and at the end of the computation chain back from quaternion to joint angles B and C is also easy.
I know that there is litterature about quaternion B-splines and interpolation, I’ll have to search a little bit … any hint from your side is appreciated.
Using OpenCN for robotics is possible.
We recently had an industrial application in the field of pick & place.
Hi Raoul,
This paper may be good start. The orientation spline of tool axis is described by general bezier curve. And the synchronization of position and orientation waypoints is achieved by an additional reparameterization spline.