home *** CD-ROM | disk | FTP | other *** search
/ Hacker Chronicles 2 / HACKER2.BIN / 281.UPDATE.NOT < prev    next >
Text File  |  1986-05-12  |  2KB  |  49 lines

  1.  
  2.     Corrections required to update version 2.05 to 2.06
  3.     These may be ignored if your version is 2.06 or greater.
  4.  
  5. To correct the program I made the following changes to
  6.        Function Flight_Speed within the file, WING.PAS :
  7.  
  8. #1) Calculation of Parasite_Drag_Coef changed to read :
  9.     Parasite_Drag_Coef :=
  10.                Tail_Drag_Coef + ( 0.004 * ( Sqr ( Lift_Coef )));
  11.  
  12. #2) Remove the term Tail_Drag_Coef from the calculation of Total_Drag_Coef.
  13.     The line now reads :
  14.         Total_Drag_Coef :=
  15.           Profile_Drag_Coef + Induced_Drag_Coef + Parasite_Drag_Coef;
  16.  
  17. #3) Remove the term 0.0085 from calculation of Tail_Drag_Coef and change
  18.    the line to read as follows :
  19.       Tail_Drag_Coef := (( 3.75615 / Sqrt ( Reynolds )) / Wing_Area );
  20.  
  21.          & To Procedure Reset_Defaults if the same file, WING.PAS :
  22.  
  23. #4) Tail_Drag_Coef := 0.005;
  24.    (* Initial value of Tail_Drag_Coef changes after first run of Functions *)
  25.     The above value was := 0.01;.
  26.  
  27. Also there are changes in the notes at the above places that read :
  28. (* Note changes made upon the advice of Herk Stokely to correct CD *)
  29. and corrections to the descriptions of the formulae.
  30.  
  31.        & lastly To the Procedure Display_Extras in the file, WINGIT.INC :
  32.  
  33. #5) at about 75 lines down from the top of the Procedure, remove both of
  34. the " * 2 " terms from the display of the value of Stab_Area. I can't
  35. remember why I did this but I do remember that at the time it seemed like
  36. a good idea.
  37.  
  38.        and lastly to the both files. WING.PAS and WINGIT.INC :
  39.  
  40. #6) do a global find and replace of the version number from 2.05 to 2.06
  41. and of the date , March to May.
  42.  
  43. That fixes that !! An edited version of this file will tag along with any
  44. new issues of the program and serve as documentation notes of the above
  45. changes.
  46.  
  47.  
  48.  
  49.