|
|
| Principles for a computer controlled foam
cutting machine (CNC):
Like most modellers, you have already cut wing cores from
polystyren foam. The airfoil templates for root and tip sections are made
with plywood, aluminium or formica. They are used to guide the hot wire.
In the case of a trapezoidal wing, as both root and tip chords differ,
you will be obliged to get different cutting speeds on each template. The
speed may be adjusted manually or automatically using some tools. The system
operates very well but requires to prepare templates for each type of wing.
In fact, you physically copy the airfoil sections.
With a computer controlled machine, the outline of the
airfoil section is digitallized and described by a finite list of points.
Each point is represented by it cartesiennes coordinates (x, y). The computer
drives the cutting tool (a hot wire in our case) in order to join all points
of the section. So the wire movement is a succession of straight lines
or vectors described by a couple of points, for instance :{(x1,y1),(x2,y2)}
(see figure)
In other terms, the principle is to start from the O origin, then draw
a line up to next point Pt. The equation describing of the straight line
is y = b/a * x. The coordinates x and y will be incremented so that whatever
the point the wire is (between points O and Pt) the equation y = b/a *
x is verified. Once arrived at Pt location, we just change the reference
mark: Pt become the new origin and the next point is extracted from the
coordinate list, and so on.
In order to cut a wing section, it is necessary to drive X and Y axis
on both sides (right and left) of the wing. This simultaneous displacement
requires to face many challenges:
Challenges for computer controlled cut:
![]() Most airfoil section descriptions (selig, Naca, MH) are described with a hundred coordinates. In order to improve this definition, it is possible to add intermediate points between two original points. This interpolation may be linear (the line segment is divided in two) or polynomial (a spline curve is build between the two original points). Both technics increase the number of points describing the airfoil section. The problem is to define enough coordinates to reached the desired quality level for the cut, and to be able to handle the corresponding volume of data during the cut process. The CNCnet software actually provide support for linear interpolation. |