LoadAirfoilFile:

--------------------------------------------------------------------------
   Loads an airfoil file with the file extension .af

   The file format is
   CL
   Reynold's numbers
   alpha CL at Reynold's numbers
   CD
   Reynold's numbers
   alpha CD at Reynold's numbers
   CM
   Reynold's numbers
   alpha CM at Reynold's numbers

   Type LoadAirfoilFile('demo') for a demo

--------------------------------------------------------------------------
   Form:
   airfoil = LoadAirfoilFile( file )
--------------------------------------------------------------------------

   ------
   Inputs
   ------
   file               (1,:)  Airfoil file name

   -------
   Outputs
   -------
   airfoil            (1,1)  Airfoil data structure
                            .reCL    (1,:) Reynold's number
                            .alphaCL (1,:) Angle of attack (deg)
                            .cL      (:,:) Lift coefficient
                            .reCD    (1,:) Drag Reynold's number
                            .alphaCD (1,:) Angle of attack (deg)
                            .cD      (:,:) Drag coefficient
                            .reCM    (1,:) Reynold's number
                            .alphaCM (1,:) Angle of attack (deg)
                            .cM      (:,:) Moment coefficient

--------------------------------------------------------------------------

Children:

Common: Graphics/Plot2D