Abstract
To address the problem of low overall machining efficiency of free-form surfaces and difficulty in ensuring machining quality, this paper proposes a MATLAB-based free-form surface division method. The surface division is divided into two stages: Partition area identification and area boundary determination. In the first stage, the free-form surface is roughly divided into convex, concave, and saddle regions according to the curvature of the surface, and then the regions are subdivided based on the fuzzy c-means clustering algorithm. In the second stage, according to the clustering results, the Voronoi diagram algorithm is used to finally determine the boundary of the surface patch. We used NURBS to describe free-form surfaces and edit a set of MATLAB programs to realize the division of surfaces. The proposed method can easily and quickly divide the surface area, and the simulation results show that the proposed method can shorten machining time by 36% compared with the traditional machining method. It is proved that the method is practical and can effectively improve the machining efficiency and quality of complex surfaces.
1. Introduction
With the rapid development of geometric modeling, more and more free-form surface models are available for the mathematical representation and design of complex industrial products []. Free-form surfaces are widely used in the design and manufacture of molds, automobiles, ships, aerospace, and commercial artwork [], which have complex contours and high design and manufacturing accuracy requirements []. In order to ensure the machining quality of these large overlay molds, the surfaces are divided into several types of similar areas, different machining methods are designed, and the machining paths for each area are reasonably planned.
The production process of free-form surfaces is often divided into three stages: roughing, finishing, and benchwork []. In the roughing stage, material removal is the main focus, with high cutting forces and low requirements for surface quality. In the finishing stage, the material removal rate is low, the cutting force is low, and the surface quality is high. In the benchwork stage, the residual height is removed by grinding and polishing during the finishing process. Finishing and benchwork account for 78% of the total production time during the entire production process, which shows the importance of rational surface delineation.
Generally, free-form surfaces can be divided into convex, concave, saddle, and flat areas. The curvature between these surface pieces varies greatly and the value is uncertain. When grinding and polishing the surface using the grinding and polishing tool, the grinding force changes with the speed, thus reducing the grinding and polishing accuracy of the workpiece surface. Therefore, the surface area is reasonably divided according to the curvature of the surface, and the same grinding and polishing tool and process parameters are used for the same surface pieces, and the curvature of the surface in the same area changes within a certain range, so that the grinding force generated by the grinding and polishing tool during processing is more balanced and the grinding and polishing accuracy is improved.
A set of processing methods for dividing free-form surfaces is proposed, and its processing of surfaces can be divided into two processes: 1. partition region identification, and 2. region boundary definition. In the process of partition, area identification is further divided into surface coarse division and surface subdivision. The surface coarse division stage is based on the values of Gaussian curvature and mean curvature to classify them into convex, concave, and saddle surfaces, and then cluster analysis is performed using fuzzy c-means to get more accurate surface areas. The area boundaries are further defined by means of Voronoi diagrams.
2. Related Work
A lot of research has been done on the partitioning of specific free-form surfaces, Bendjebla et al. [] proposed a new method for defining and classifying free-form surface machining features based on decomposition combination operations, where a free-form surface is first decomposed into a set of points and divided by a triangular mesh, and then combined into sub-surfaces with ten surface types based on shape descriptors. Shi Qun et al., [] based on the triangular mesh model of a free-form surface, used a directed Voronoi diagram algorithm to divide the free-form surface, and realized the complex surface area division of cutter axis motion optimization. Liu et al. [] used T-spline to divide the free-form surface into convex, concave, and flatter areas, and then introduced the sliding frame method to describe the boundaries of the areas. You et al. [] used curvature and normal vector weight fuzzy clustering algorithms to automatically subdivide a monolithic surface into multiple surface slices. Bey et al. [] approximated the surface by constraining the minimum number of triangles to identify the local shape of each vertex based on curvature, classifying it as concave, convex, planar, concave-spreadable, convex-spreadable, and saddle-shaped. Van et al. [] developed a MATLAB program to perform surface partitioning, which first partitions the surface into planar, convex, concave, and saddle regions based on surface curvature, and then define the surface boundaries by the Freeman chain code technique.
Nguyen et al. [], also based on curvature and Freeman chain code techniques to delineate surface areas, introduced some advanced CAD/CAM techniques for free-form machining modeling and toolpath planning in [] to apply this method of surface delineation to five-axis machining. Tuyen [] et al. used the same method to partition the surface and applied it to 3-axis machining based on the partition results. They ensure the quality of surface machining while reducing the machining time by optimizing the tool and tool path when machining free-form surfaces. However, they all use B splines to describe the free-form surfaces, which result in simpler free-form surfaces with little surface variation, and are also limited by B spline input and cannot handle NURBS surfaces.
Roman [] used the fuzzy c-means method to subdivide the free-form surfaces, and the boundary of each surface patch was delineated in the u-v plane using the nearest neighbor method. Moreover, in [], the surfaces were subdivided into patches using the k-means clustering method and the boundaries between patches were identified by the minimum intra-class distance method. This method causes the number of patches generated to exceed the number of concave, convex, and saddle areas of the surface, which will increase the time for subsequent machining. Herraz et al. [] introduced various clustering algorithms for free-form surface segmentation by region processing and analyzed and compared representative algorithms in three major classes of unsupervised algorithms: k-means algorithm, RPCL algorithm, and HAC algorithm. The authors concluded that using the k-means algorithm with Euclidean metrics and dedicated feature vectors would be a better choice. However, he only made a longitudinal comparison and did not further make a cross-sectional comparison between k−means, k−medoids, and fuzzy c-means algorithms.
Elber and Cohen [] used a mixture of symbolic and numerical methods to calculate curvature, using scalar and vector fields for the analysis of surfaces, respectively, ternating the surfaces into saddle, concave and convex regions and delimiting the surface curvature. He et al. [] divided the surface into different regional facets with curvature-induced vector fields and analytically processed the scalar and vector fields and contours, covering each segmented patch with a regular quadrilateral of constant length.
After determining the distribution of each face piece on the surface, the definition of the boundary between each face piece has a critical impact on the subsequent machining. Liu et al. [] proposed a tool trajectory method for machining on a five-axis machine. After dividing the free-form surface into regions using the k-means clustering algorithm, the boundaries between the regions were defined using B spline curves. In [], Mao, based on the K−d−tree K−nearest neighbor (KNN) algorithm, formed a number of point clusters after searching the discrete points of the surface, and the boundary line of the surface slice was obtained by linearly connecting the outermost points of each discrete point cluster. After dividing the surface into different regions, Xie et al. [] proposed a concept of “easy grinding zones” and introduced an algorithm to automatically select a compatible belt grinding mode for each zone. Yin [] analyzed the variation law of machining time and surface roughness on spindle speed, feed rate, cutting width, depth of cut, and surface machining complexity after completing the zone division, and used the weighted summation method to determine the optimal grinding parameters for different machining complexities. Zhang et al. [] proposed a new damping cloth (DC) tool for non-contact polishing and a chemically enhanced non-Newtonian ultrafine (CNNU) polishing solution to achieve sub-nanometer roughness on aspheric optical molds.
In summary, using NURBS instead of B splines to describe free-form surfaces when calculating surface curvature can handle a wider variety of more complex surfaces. In the subdivision of the surface, k-means and fuzzy c-means algorithms are comprehensively compared, and the fuzzy c-means algorithm with a better clustering effect is selected. In the final determination of the surface slice boundaries, Voronoi diagrams are used to determine the boundaries of each region, and the program runs stably and quickly, while the division results are reliable.
3. Free-Form Surface Representation Geometry
3.1. Free-Form Surface Representation
Generally, free-form surfaces can be designed directly on a computer using control points, such as Bezier surfaces, B-spline surfaces, and non-uniform rational B-spline surfaces (NURBS) []. These surfaces are a common way to describe free-form surfaces. NURBS surface modeling not only has the advantages of each of these surface models, but it can also adjust the shape of the surface by modifying the control vertices and weight factors of the curved surface, so that the constructed free-form surface is closer to the true value; in this paper, NURBS is used to define free-form surfaces. A NURBS surface is usually represented by a rational fraction, rational basis function, and homogeneous coordinates. No matter what method is adopted, the curvature calculation and region division of the surface are the same. Therefore, this paper chooses rational fraction to describe the surface, and its NURBS description form is as follows:
where is the parametric equation of the free-form surface ; is the parametric equation of the ith surface slice; is a 4 × 4 square matrix indicating the vector equation of the ith surface slice; is the two parameters of the parametric surface equation and satisfies ; is the number of surface slices. The free-form surface selected in this paper is shown in Figure 1.
Figure 1.
Mesh Surface and Grid points.
When performing surface discretization, using too many parameter lines results in an excessive number of parameter points. This has little effect on the surface division results, but instead increases the workload of the algorithm and reduces the processing speed. If too few lines are used, the number of discretization points will not be large enough, and the surface division results will be inaccurate. Therefore, the selection of parametric lines should be combined with the size of parts, the complexity of surfaces, and the computing power of computers. In summary, this paper uses 25 × 25 parametric lines to discretize free-form surfaces.
3.2. Surface GEOMETRY
Given a free-form surface . Here are some geometric parameters of the surface.
(1) Normal vector of a point on the surface
The unit normal vector of the surface at the point can be calculated from the following equation:
where and are the tangential vectors along the direction of the and parameters.
(2) Mean curvature (H) and Gaussian curvature (K)
The average curvature H of the surface at the point is expressed as:
The Gaussian curvature K is expressed as:
where E, F, G, L, M, and N are the parameters of the first and second fundamental forms:
and are the principal curvatures, which are the maximum and minimum values of the normal curvature and can be given by:
Also Gaussian curvature and mean curvature need to satisfy:
The two principal curvatures , , Gaussian curvature K, and average curvature H of the surface are all valid for the description of the curvature. The principal curvatures of the surface are direction independent and are the extrinsic properties of the surface. Numerically, the main curvature is more sensitive to noise than the average curvature H but lower than the Gaussian curvature K. At the same time, the computational workload of the principal curvature is also higher than that of the Gaussian curvature K and the average curvature H. The principal curvature must also be used in pairs due to its directivity. The Gaussian curvature K and the average curvature H have nothing to do with the direction. The Gaussian curvature K is the internal characteristic of the surface, and the average curvature is the external characteristic of the surface. The average curvature H and the boundary curve together determine the unique surface. The Gaussian curvature function can determine the only convex surface. Therefore, this paper uses Gaussian curvature K and average curvature H to preliminarily determine the concave, convex, and saddle regions of free-form surfaces.
The sign of Gaussian curvature K and mean curvature H at a point on the surface can determine the type of the point and the local surface shape; summarized as shown in Table 1.
Table 1.
Relationship between surface shape and geometric parameters.
4. Division of Free-Form Surfaces
4.1. Surface Rough Division
The purpose of dividing the surface area is to divide the freeform surface into several areas with the same characteristics, and the same surface piece is processed with the same grinding and polishing tools and process parameters, which can effectively improve the efficiency of processing the freeform surface and the surface finish. In this paper, the surface is divided into a convex region (flat region), concave region, and saddle region based on Gaussian curvature K and mean curvature H. Since there is no overcutting during convex and flat surface machining and the tool size requirement is low, the convex and flat surface area is classified as part of the process. This reduces the number of surface slices divided and reduces the calculation time while improving processing efficiency. Figure 2 shows the flow diagram for the coarse partitioning of surfaces.
Figure 2.
Flow chart of a rough surface.
The above algorithm is implemented by MATLAB. After determining the positive and negative values of Gaussian curvature and mean curvature, the grid points on the surface are initially coarsely divided into groups and the convex, concave, and saddle areas of the surface are indicated by □, ◇, and ▽ respectively.
4.2. Free-Form Surface Subdivision
After the above processing, the free-form surface has been coarsely divided into three types of area slices: convex (planar), concave, and saddle piece surfaces. Then the surface is further divided by the fuzzy c-means clustering method FCM (Fuzzy c-means).
The idea of clustering is to maximize the similarity between objects that are divided into the same cluster and minimize the similarity between different clusters. The conventional K−means algorithm divides the data rigidly and divides it according to rigid standards, and the result of the division is either one or the other. The fuzzy c-means algorithm is a flexible fuzzy division. Its idea is to maximize the similarity between objects that are divided into the same cluster, while the similarity between different clusters is the smallest. The membership degree in the k−means algorithm has only two options: 0 or 1, and the membership degree of the fuzzy c-means is any number in the [0 1] interval, which makes the fuzzy c-means clustering effect better than the k−means algorithm; Figure 3 below shows the processing effect of the two algorithms on the Bunny point cloud data in the Stanford University point cloud library. It can be clearly seen that the fuzzy c-means has a more reasonable clustering effect.
Figure 3.
Comparison of FCM and K−means clustering effects under the same number of clusters: (a). K−means Algorithm, the circles represent the clustering centers of K−means; (b). FCM Algorithm, the stars represent the clustering centers of FCM.
The content of the fuzzy clustering method is as follows: let the sample space be , where each element contains attributes, fuzzy clustering is to divide into classes, are clustering centers. The objective function of FCM is as follows:
where is the affiliation of the jth element of the sample space to the ith class center, is the fuzzy index. , the larger the value of , the higher the fuzziness of the classification, usually the value of is 2; is the Euclidean distance between the ith cluster center and the jth data point; is the cluster center, is the affiliation matrix; the affiliation matrix takes values between 0, 1, and the sum of the affiliation of a data is equal to 1:
Equations (12) and (13) are used to calculate the cluster center and the membership degree , respectively:
The fuzzy C-mean clustering algorithm flows as follows:
Step 1: Initialize the membership matrix U with a random number with a value between (0, 1), so that it satisfies the constraints in Equation (11);
Step 2: Use formula (12) to calculate the cluster centers ;
Step 3: Calculate the value function according to the formula (10). If it is less than a certain threshold, or its change from the last value function value is less than a certain threshold, the algorithm stops;
Step 4: Calculate the new U matrix with (13). Return to step 2.
4.3. Surface Boundary Definition
After the above process, the free-form surface has been divided into three types of regions, but the boundaries of these regions have not been completely defined. In order to determine clear boundaries, Voronoi diagrams are used to define the boundaries in this paper. Voronoi diagrams are also known as Thiessen polygons or Dirichlet diagrams, which were proposed by Dirichlet in 1985. The Voronoi diagram is a division of the space plane, which is characterized by the fact that any position within a polygon is the closest to the site of the polygon, and far from the site in the adjacent polygon, and each polygon contains and only contains one site (Figure 4). If the Voronoi diagram is established at the center of the area block, the established Voronoi area coincides with the area block, and the Voronoi diagram becomes the boundary of the surface slice.
Figure 4.
(a) Empty characteristic, (b) Minimum angle maximization characteristic. A, B, C, D are any four points in space.
Given a plurality of stations, each station is located in the Voronoi region included in its boundary, and all Voronoi region boundaries form the Voronoi diagram. The Voronoi diagram can be built in two steps: 1. construction of the Delaunay triangular grid; 2. connecting the outer circle of the triangular grid to a line. We demonstrate these two processes with 23 random points, and the running results are shown in Figure 5 and Figure 6 below.
Figure 5.
Delaunay triangulation.
Figure 6.
Voronoi diagram of 23 sites and regions.
Definition of Delaunay Triangle Mesh: It is composed of a series of connected but non-overlapping triangles. It has two properties, 1. Empty circle property: the Delaunay triangle network is unique, any four points in space cannot be co-circular, while the external circle of these triangles does not contain any other points of this surface domain; 2. Maximizing the minimum angle characteristic: The minimum angle of the triangle formed by the Delaunay triangle is the largest, specifically, the diagonal of the convex quadrilateral is formed in two adjacent triangles. After a mutual exchange, the minimum angle of the inner angle of the convex quadrilateral will not increase, as shown in Figure 4.
In this paper, an improved point-by-point insertion method, the Bowyer-Watson algorithm, is used to generate Delaunay triangulation. Its main steps are as follows:
1. Construct a super triangle containing all scatter points;
2. Insert each point in turn, the new point inserted in the grid, draw external circles in the triangle associated with it, record all the triangles whose external circles contain the new point, delete the common edges affecting the triangle and replan the new edges;
3. Recording the triangles into the grid;
4. Repeat step 2 until all scattered points are inserted;
5. Delete the super triangle and its related triangles.
Each vertex of the Voronoi diagram is the center of the outer circle of the Delaunay triangular mesh, so the second step of the algorithm is much simpler:
Find the centers of circumscribed circles of all triangles;
Connect the centers of the circles in order according to the relationship between the triangles.
Voronoi diagrams are applied to two-dimensional parametric surface space. The free-form surface used in this experiment is a three-dimensional data structure, so it is necessary to map the projection of the three-dimensional clustering centers to the two-dimensional parametric surface space, construct Voronoi diagrams with these two-dimensional clustering centers as sites, and generate surface boundaries in two-dimensional space to show the results of free-form surface region partitioning.
5. Program Flow
The experiment in this paper uses MATLAB R2020b, the CPU is AMD Ryzen 5 4600H with Radeon Graphics, the graphics card is NVIDIA GeForce GTX 1650 4 GB, and the memory is a 16 G computer for verification.
After calculating and analyzing the Gaussian curvature (K) and mean curvature (H) of the free-form surface, the surface is divided into three major region types and represented by special symbols. This is shown in Figure 7.
Figure 7.
Preliminary division of the surface based on curvature, □ stands for convex area, ▽ stands for saddle area, ◇ stands for concave area.
A fuzzy c-means clustering method was used to optimize the convex regions based on the number of clusters and cluster centers while optimizing the saddle-shaped regions in a similar way. In Figure 8 below, different notations are used to mark different regions, and a total of 11 blocks of regions are shown, including four groups of convex regions (planar regions), three groups of concave regions, and four groups of saddle regions, while the clustering centers are positioned with (☆). Here, due to the large area of the convex and saddle areas at the beginning, the larger areas are divided again for the convenience of subsequent grinding and polishing, and to adapt to the grinding and polishing tool head.
Figure 8.
Cluster center and subdivision area.
Using the optimized clustering centers as sites, Voronoi diagrams are generated to define the region boundaries, as shown in Figure 9. After this process is processed, the free-form surface partition has been completed and each surface slice has been fully defined.
Figure 9.
The result of boundary division of Voronoi diagram.
6. Simulation Experiment
After the above-mentioned program processing, the surface area division has been completed. However, because the Voronoi diagram division result is a two-dimensional parameter space, it is necessary to convert the division result into a three-dimensional parameter space. Here, we use the projection command function of the generative shape design in Catia software to project the divided area and boundary onto the free-form surface model to be machined, the material is defined as 45 steel, as shown in Figure 10.
Figure 10.
3D projection surface segmentation.
In order to verify the rationality of surface subdivision, three-axis NC milling in the free-form surface machining module of CatiaV5R21 is used for simulation machining. At the same time, according to the previous curvature calculation, the minimum radius of the concave and saddle area is calculated as 1.4753 mm and 3.3675 mm. In order to avoid overcutting while not wasting machining time, 2 mm and 6 mm diameter tools are used for milling in the concave area and saddle area respectively, and the specific machining scheme is as follows.
Step 1: Roughing of two surface models, noted as Sample 1 and Sample 2, using a ball-ended milling cutter with diameter D1 = 10 mm, feed rate = 600 mm/min, and a scallop height of 0.5 mm, as shown in Figure 11a;
Figure 11.
Sample 1 simulation processing process, (a) Roughing, (b) Traditional finishing.
Step 2: Overall finishing of sample 1 using a ball-head milling cutter with diameter D2 = 2 mm, feed rate = 1000 mm/min, and a scallop height of 0.05 mm, as shown in Figure 11b;
Step 3: Sample 2 was machined using the same machining parameters except for the tool size, which was divided into three processes: (1) milling the convex area with a ball-head milling cutter of diameter D3 = 8 mm, as shown in the blue area of Figure 12b; (2) milling the saddle area with a ball-head milling cutter of diameter D4 = 6 mm, as shown in the yellow area of Figure 12c; (3) milling the concave area with a ball-head milling cutter of diameter D2 = 2 mm, as shown in the purple area in Figure 12d.
Figure 12.
Sample 2 sub-domain machining process: (a) rough machining process; (b) convex area machining process; (c) saddle area machining process; (d) concave area machining process.
In order to compare the processing time of finishing between domain processing and traditional processing methods, some restrictions should be added to both machining methods when generating the toolpaths, and the following machining parameters should be the same regardless of the tool used for machining: spindle speed (7000 rev/min), feed rate (1000 mm/min), depth of cut (0.5 mm), residual for roughing (0.5 mm), scallop height (0.05 mm). Moreover, to avoid overcutting in the concave area, the tool used in sample 2 to machine the concave area was used in the conventional machining method. The process of sample 1 is shown in Figure 11 and the process of sample 2 is shown in Figure 12, and the tool path length and machining time are shown in Table 2.
Table 2.
Comparison of simulation results.
With the above machining parameters and tool path strategy, the tool path is significantly shortened compared to conventional machining methods, saving machining time.
7. Conclusions
A MATLAB program was designed and developed to perform the surface division work. By inputting the surface parameter equation or the point cloud data obtained by scanning the surface, the area of the free-form surface can be divided, and the number of surface pieces generated by division can be limited and adjusted according to the actual machining requirements and production conditions. This avoids the problem of too long machining time or over-cutting of the cutter caused by too many or too few surface pieces and effectively improves the efficiency and quality of free-form surface machining.
1. Define a free-form surface model with NURBS, calculate the curvature of the free-form surface, and use the mean curvature and Gaussian curvature to initially classify the surface into a concave region, convex region, and saddle region by analyzing and comparing the effects of principal curvature with mean curvature and Gaussian curvature on the surface properties. By comparing the clustering effects of fuzzy c-means and k−means algorithms, it was decided to use the fuzzy c-means algorithm for subdividing the surface pieces. The boundary between the surface slices is determined by the Voronoi diagram in the MATLAB library based on the clustering centers generated by the clustering, and the division of the surface processing area is completed.
2. The method was verified using the simulation machining module in Catia software. The simulation results show that compared with the traditional machining method, the method in this paper can ensure the machining quality while saving 36% of the machining time, which can effectively improve the machining efficiency.
In the next step, the simulation results will be verified experimentally, and the free-form surface grinding and polishing study will be carried out to improve the smoothness between the surface pieces through the NURBS surface stitching method and the corresponding processing method, and to optimize the process parameters and rationalize the grinding and polishing path to further improve the surface quality.
Author Contributions
Software, R.S., W.G.; data curation, Z.F.; writing—original draft preparation, H.L.; writing—review and editing, E.Z.; All authors have read and agreed to the published version of the manuscript.
Funding
This research was funded by Jilin Province Science and Technology Department: 20220201035GX, 20200401121GX.
Data Availability Statement
Not applicable.
Acknowledgments
The authors are grateful to the anonymous reviewers and the Editor for their valuable comments and suggestions on improving this paper.
Conflicts of Interest
The authors declare no potential conflicts of interest with respect to the research, authorship, and/or publication of this article.
References
- Wang, J.; Wang, Z.; Zhu, W.; Ji, Y. Recognition of freeform surface machining features. J. Comput. Inf. Sci. Eng. 2010, 10, 10061–10067. [Google Scholar] [CrossRef]
- Tuong, N.V.; Pokorny, P.; Hieu, L.C. Free-form surface partitioning for 5-axis CNC milling based on surface curvature and Chain Codes. In Innovative Production Machines and Systems Virtual Conference; Pham, D.T., Eldukhri, E.E., Soroka, A.J., Eds.; Whittles Publishing: Dunbeath, UK, 2009; pp. 120–125. [Google Scholar]
- Lin, J.Q. Research on Subdivision Polishing and Trajectory Planning of Free-form Surfaces; Jilin University: Changchun, China, 2005. [Google Scholar]
- Van, T.N.; Pokorný, P. A practical approach for partitioning free-form surfaces. Int. J. Comput. Integr. Manuf. 2010, 23, 992–1001. [Google Scholar]
- Bendjebla, S.; Cai, N.; Anwer, N.; Lavernhe, S.; Mehdi-Souzani, C. Freeform machining features: New concepts and classification. In Proceedings of the 11th CIRP Conference on Intelligent Computation in Manufacturing Engineering, Naples, Italy, 19–21 July 2017; pp. 482–487. [Google Scholar]
- Qun, S.; Lei, L.; Jiajun, J.; Jiaan, T. Low vibration tool path planning of machining robot based on free-form surface with directed Voronoi tessellation. Comput. Integr. Manuf. Syst. 2019, 25, 1093–1100. [Google Scholar]
- Liu, Y.; Zhao, G.; Zavalnyi, O.; Xiao, W. Toolpath generation for partition machining of T-spline surface based on local refinement. Int. J. Adv. Manuf. Technol. 2019, 102, 3051–3064. [Google Scholar] [CrossRef]
- You, S.K.; Liu, X.C.; Deng, H.G.; Liu, J. A novel 5-axis machining method for sculptured surface. In Advanced Materials Research; Trans Tech Publications Ltd.: Bach, Switzerland, 2012; Volumes 526–564, pp. 855–860. [Google Scholar]
- Bey, M.; Bendifallah, M.; Kader, S.; Boukhalfa, K. Cutting tool combination and machining strategy affectation based on the determination of local shapes for free form surfaces. In Proceeding of the International Conference on Smart Manufacturing Application, Goyang-Si, Republic of Korea, 9–11 April 2008; pp. 120–125. [Google Scholar]
- Van, T.N.; Naprstkova, N. Matlab-based Calculation Method for Partitioning a Free-form Surface into Regions. Manuf. Technol. 2019, 19, 518–524. [Google Scholar] [CrossRef]
- Van, T.N. Advanced CAD/CAM Techniques for 5-Axis Machining of Free-Form Surfaces. Manuf. Technol. 2019, 19, 332–336. [Google Scholar]
- Tuyen, B.N.; Van, Q.H.; Nguyen, D.T. A Study on Partitioning Freeform Surface and Tool Selection Method for 3-Axes CNC Machining. J. Korean Soc. Precis. Eng. 2019, 36, 813–819. [Google Scholar] [CrossRef]
- Roman, A.; Bedi, S.; Ismail, F. Three-half and half-axis patch-by-patch NC machining of sculptured surfaces. Int. J. Adv. Manuf. Technol. 2006, 29, 524–531. [Google Scholar] [CrossRef]
- Flores, R.A. Surface Partitioning for 3+2-Axis Machining; University of Waterloo: Waterloo, ON, Canada, 2007. [Google Scholar]
- Herraz, M.; Redonnet, J.M.; Mongeau, M.; Sbihi, M. Analysis of Clustering Algorithms for By-Zone Machining of Free-Form Surfaces. 2022. Available online: https://hal.archives-ouvertes.fr/hal-03568407/ (accessed on 15 November 2022).
- Elber, G.; Cohen, E. Second-order surface analysis using hybrid symbolic and numeric operators. ACM Trans. Graph. 1993, 12, 160–178. [Google Scholar] [CrossRef]
- He, D.; Li, Z.; Li, Y.; Tang, K. Quasi-Developable and Signed Multi-Strip Approximation of a Freeform Surface Mesh for Efficient Flank Milling. Comput. Aided Des. 2021, 140, 103083. [Google Scholar] [CrossRef]
- Liu, X.; Li, Y.; Li, Q. A region-based 3+2-axis machining toolpath generation method for freeform surface. Int. J. Adv. Manuf. Technol. 2018, 97, 1149–1163. [Google Scholar] [CrossRef]
- Min, M. Research on Efficient Tool Path Planning of the Stone Relief; Shenyang Jianzhu University: Shenyang, China, 2016. [Google Scholar]
- Xie, H.L.; Li, J.R.; Liao, Z.Y.; Wang, Q.H.; Zhou, X.F. A robotic belt grinding approach based on easy-to-grind region partitioning. J. Manuf. Process. 2020, 56, 830–844. [Google Scholar] [CrossRef]
- Yin, F.C. A partitioning grinding method for complex-shaped stone based on surface machining complexity. Arab. J. Sci. Eng. 2022, 47, 8297–8314. [Google Scholar] [CrossRef]
- Zhang, P.; Li, L.; Yang, Z.; Pan, B.; Zhang, M.; Guo, X.; Li, G.; Kim, D.; Guo, J. Achieving sub-nanometer roughness on aspheric optical mold by non-contact polishing using damping-clothed tool. Opt. Express 2022, 30, 28190–28206. [Google Scholar] [CrossRef] [PubMed]
- Farin, G. Curves and Surfaces for Computer-Aided Geometric Design: A Practical Guide; Elsevier: Amsterdam, The Netherlands, 2014. [Google Scholar]
Publisher’s Note: MDPI stays neutral with regard to jurisdictional claims in published maps and institutional affiliations. |
© 2022 by the authors. Licensee MDPI, Basel, Switzerland. This article is an open access article distributed under the terms and conditions of the Creative Commons Attribution (CC BY) license (https://creativecommons.org/licenses/by/4.0/).