home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 136.lha / AirFoil / airfoilx.readme < prev    next >
Encoding:
Text File  |  1986-11-20  |  2.8 KB  |  69 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.  
  10.     Any comments?  Just leave me a message on the Lighthouse BBS,
  11.     (805) 272-1812 (my user name is under Russ Leighton) or write to
  12.     me at the address above.
  13.  
  14.     This program was mostly an exercise in C programming using the 
  15.     intuition and graphics routines found in the ROM kernal.  It 
  16.     should, at least, serve as a fairly good example of how to use 
  17.     these routines especially in combination (not as straight forward 
  18.     as the manuals imply).
  19.  
  20.     The program was compiled using the MANX Aztec C compiler version
  21.     3.40a.  The following lines show the command sequence I used.
  22.  
  23.         cc airfoil.c
  24.         ln -v airfoil.o -lm -lc
  25.  
  26.     This program is free to do with as you please as long as you give
  27.     me a little credit if you use the transformation algorithms.  Also,
  28.     if you make any improvements or additions please let me know about
  29.     them.  Please include this documentation with the program if you
  30.     choose to give it to anyone else.
  31.  
  32. ================================================================================
  33.  
  34. Note from Fred Wright:
  35.  
  36.     The original version of this didn't work properly with expansion RAM,
  37. due to the static-allocated gadget images.  I added code to copy these to
  38. CHIP memory at run time.  This could serve as an example of how to fix other
  39. programs with the same disease (custom Pointers are another common source of
  40. trouble).
  41.  
  42.                     Now back to Russ ...
  43.  
  44. ================================================================================
  45.  
  46.     This program generates airfoils as well as their corresponding
  47.     streamline and pressure distributions.  The equations used are
  48.     described in airfoil.doc.  To use this program first run it 
  49.     (either by selecting its' icon or typing "run airfoil" at the CLI 
  50.     prompt) then bring up the requester by double clicking the right 
  51.     mouse button (the menu button).  This requester can be brought up 
  52.     at any time (even during plotting) by double clicking the right 
  53.     mouse button.  The requester gadgets are located and described as 
  54.     follows.
  55.  
  56.     Gadget     Location                Description
  57.     ------     --------                -----------
  58.  
  59.     Quit       Upper left corner       Exits from program
  60.     Close      Upper right corner      Starts or continues plot
  61.     ShowTitle  Upper center            Toggles screen title bar
  62.     Airfoil    Below ShowTitle gadget  Toggles streamline/pressure plot
  63.     Camber     Below Airfoil gadget    Mid-chord camber entry
  64.     Thickness  Below Camber gadget     Mid-chord thickness entry
  65.     Angle      Below Thickness gadget  Angle of attack entry
  66.     Velocity   Bottom edge             Slider for velocity entry
  67.  
  68. ================================================================================
  69.