home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d1xx / d150 / airfoil.lha / Airfoil / readme < prev    next >
Text File  |  1987-06-15  |  3KB  |  67 lines

  1. ================================================================================
  2.  
  3.    Airfoil generator utilizing the Joukowski transformation
  4.  
  5.    Written by:  Russell Leighton
  6.            762 1/2 W. Newgrove
  7.                 Lancaster, CA  93534
  8.                 22 March 1987
  9.    Addendum by: David Foster
  10.            1060 Hemlock Drive
  11.                 Rochester, MI 48063
  12.    To include first order approximation of the effect of circulation
  13.    induced by incidence.
  14.  
  15.    Any comments?  Just leave me a message on the Lighthouse BBS,
  16.    (805) 272-1812 (my user name is under Russ Leighton) or write to
  17.    me at the address above.
  18.  
  19.    This program was mostly an exercise in C programming using the 
  20.    intuition and graphics routines found in the ROM kernal.  It 
  21.    should, at least, serve as a fairly good example of how to use 
  22.    these routines especially in combination (not as straight forward 
  23.    as the manuals imply).
  24.  
  25.    The program was compiled using the MANX Aztec C compiler version
  26.    3.40a.  The following lines show the command sequence I used.
  27.  
  28.       cc airfoil.c
  29.       ln -v airfoil.o -lm -lc
  30.    The revision was done on a machine with Starboard extended memory,
  31.    and the link step was changed to:-
  32.       ln -v +C airfoil.o -lm -lc
  33.    to force the program and data to use chip memory, as it was found
  34.    that the small control icons did not display otherwise.
  35.    This program is free to do with as you please as long as you give
  36.    me a little credit if you use the transformation algorithms.  Also,
  37.    if you make any improvements or additions please let me know about
  38.    them.  Please include this documentation with the program if you
  39.    choose to give it to anyone else.
  40.    Revised program sent to Fred Fish.
  41.  
  42. ================================================================================
  43.  
  44.    This program generates airfoils as well as their corresponding
  45.    streamline and pressure distributions.  The equations used are
  46.    described in airfoil.doc.  To use this program first run it 
  47.    (either by selecting its' icon or typing "run airfoil" at the CLI 
  48.    prompt) then bring up the requester by double clicking the right 
  49.    mouse button (the menu button).  This requester can be brought up 
  50.    at any time (even during plotting) by double clicking the right 
  51.    mouse button.  The requester gadgets are located and described as 
  52.    follows.
  53.  
  54.    Gadget     Location                Description
  55.    ------     --------                -----------
  56.  
  57.    Quit       Upper left corner       Exits from program
  58.    Close      Upper right corner      Starts or continues plot
  59.    ShowTitle  Upper center            Toggles screen title bar
  60.    Airfoil    Below ShowTitle gadget  Toggles streamline/pressure plot
  61.    Camber     Below Airfoil gadget    Mid-chord camber entry
  62.    Thickness  Below Camber gadget     Mid-chord thickness entry
  63.    Angle      Below Thickness gadget  Angle of attack entry
  64.    Velocity   Bottom edge             Slider for velocity entry
  65.  
  66. ================================================================================
  67.