|
dreadnaut -> RE: Prints for building airplanes? (5/20/2008 11:02:48 PM)
|
quote:
ORIGINAL: mmattockx John, Look in the Scratchbuilding Forum, there is a sticky thread at the top with a long list of sources for plans and designs. For ribs, it depends on how your airfoil shape is defined. If you are ballparking one by eye (which works fine for almost any model), then you can use arcs or ellipses combined with straight lines. If you are using airfoil data from NACA or similar info, then you plot the coordinates using a polyline and then SPLINE it to smooth the corners. I always draw all my airfoils with a 10" chord in my source file and then it is easy to scale them to any chord as a simple multiple of 10. It's really critical because CAD will scale anything to anything, it is just an easy thing to remember when pulling in a block to a new drawing. Mark I avoid using splines. They are not really necessary for this kind of work, and become difficult to work with if you intend to use a laser cutter. Laser cutting works better if it is a ployline with only straight line segments. If not, many laser cutters will charge extra to get to into this form. For drawing airfoils, I use a data file that lists points. I use a script file to draw the points in ACAD (this might not work in LT). Then I trace them with a pline. The script file is just a text file, where tou change the file extension to.scr, and contains the follwing Pline 1.1,1 1.2,2 1.3,3 at the command line type "script" then enter. you will be prompted to enter the name of the script file, enter the one you made. The first word -pline- is entered into the command line. the hard return after Pline in the script file is read as "enter" by the command line. find a data set of the airfoil you want and try this. You may have to insert some blank lines in the .scr file because some command inputs require you to enter twice. I agree withs johns technique of drawing the airfoil to a size that can be easily scaled. I use 1 instead of 10, but either will work.
|
|
|
|