home *** CD-ROM | disk | FTP | other *** search
/ Antennas / Antennas_CD-ROM_Walnut_Creek_September_1996.iso / w4mb / vol1 / basic / menu.asc < prev    next >
Text File  |  1996-06-30  |  3KB  |  88 lines

  1. 10 REM INFORMATION
  2. 20 KEY OFF
  3. 50 COLOR 7,1
  4. 80 CLS
  5. 85 PRINT
  6. 90 PRINT"                       PRACTICAL ANTENNA DESIGN PROGRAMS"
  7. 92 PRINT"                                 Copyright 1988"
  8. 94 PRINT"                             R.P.Haviland, PE, W4MB
  9. 96 PRINT"                                    ********
  10. 100 PRINT"                    The programs on this disk are intended "
  11. 110 PRINT"                    for the design and analysis of antennas"
  12. 120 PRINT"                    over the range between MF and SHF."
  13. 130 PRINT
  14. 140 PRINT"                    For each type, the design variables are"
  15. 150 PRINT"                    frequency and either physical size or "
  16. 160 PRINT"                    performance."
  17. 170 PRINT
  18. 180 PRINT"                    A reference is given for each program:"
  19. 190 PRINT"                    Nomenclature follows the reference. "
  20. 200 PRINT
  21. 210 PRINT"                    For a discussion of the capabilities and"
  22. 220 PRINT"                    limitations of each program, see the"
  23. 230 PRINT"                    companion volume:"
  24. 240 PRINT"                       PRACTICAL ANTENNA DESIGN BY COMPUTER"
  25. 250 PRINT"                          BY R. P. Haviland, PE, W4MB"
  26. 260 PRINT
  27. 270 PRINT"Press any key to continue"
  28. 280 Q$=INKEY$:IF Q$="" THEN 280
  29. 300 CLS:PRINT TAB(38);"MENU"
  30. 305 PRINT
  31. 310 PRINT"                     1-DIPOLES NEAR RES   17-FLAT TOP BEAMS"
  32. 320 PRINT"                     2-CYLINDRICAL ANTS   18-UNIFORM YAGI  "
  33. 330 PRINT"                     3-LOADED ANTENNAS    19-NBS YAGI      "
  34. 340 PRINT"                     4-WINDOM ANTENNA     20-HIGH GAIN YAGI"
  35. 350 PRINT"                     5-INVERTED VEE       21-LOG PERIODIC  "
  36. 360 PRINT"                     6-CAGE DIAMETER      22-OPTIMUM HORN  "
  37. 370 PRINT"                     7-SHORT VERTICAL     23-PARABOLIC DISH"
  38. 380 PRINT"                     8-MULTIBAND TRAP     24-VEE BEAM      "
  39. 390 PRINT"                     9-SYMMETRICAL TEE    25-LONG WIRE     "
  40. 400 PRINT"                    10-COIL (RAD. HELIX)  26-COAX LOSS     "
  41. 410 PRINT"                    11-DISK CONE          27-FOLDED DIPOLE "
  42. 420 PRINT"                    12-SMALL LOOP         28-ELEMENT SAG   "
  43. 430 PRINT"                    13-LARGE LOOP         29-TOWER DESIGN  "
  44. 440 PRINT"                    14-QUAD LOOPS         30-POLE DEPTHS   "
  45. 450 PRINT"                    15-HELICAL            31-SELF SUPP MAST"
  46. 460 PRINT"                    16-ARRAYS             32-GUY TENSION   "
  47. 470 PRINT"                    33-MININEC (33&33A COMBINED)"
  48. 475 PRINT"                           34-QUIT ANTENNA PROGRAMS"
  49. 480 PRINT
  50. 500 PRINT"ENTER NUMBER OF PROGRAM TO RUN."
  51. 510 INPUT A
  52. 520 IF A<1 OR A>34 THEN 300
  53. 530 ON A GOTO 600,610,620,630,640,650,660,670,680,690,700,710,720,730,740,750,760,770,780,790,800,810,820,830,840,850,860,870,880,890,900,910,920,930
  54. 600 RUN "DIPOLES"
  55. 610 RUN "CYLIND"
  56. 620 RUN "COILSRT"
  57. 630 RUN "WINDOM"
  58. 640 RUN "INVEE"
  59. 650 RUN "CAGE"
  60. 660 RUN "SHORTVER"
  61. 670 RUN "MULTRAP"
  62. 680 RUN "SYMTEE"
  63. 690 RUN "COIL"
  64. 700 RUN "DISCONE"
  65. 710 RUN "SMLOOP"
  66. 720 RUN "LGLOOPS"
  67. 730 RUN "QDLOOP"
  68. 740 RUN "HELIX"
  69. 750 RUN "POINT"
  70. 760 RUN "FLAT"
  71. 770 RUN "YAGI"
  72. 780 RUN "NBSYAGI"
  73. 790 RUN "HGYAGI"
  74. 800 RUN "LOG-PER"
  75. 810 RUN "OPHORN"
  76. 820 RUN "PARAB"
  77. 830 RUN "VBEAM"
  78. 840 RUN "LWIRE"
  79. 850 RUN "CO-LOSS"
  80. 860 RUN "FODIPOLE"
  81. 870 RUN "SAG"
  82. 880 RUN "TOWER"
  83. 890 RUN "DEPTH"
  84. 900 RUN "SELFPIPE"
  85. 910 RUN "TENSION"
  86. 920 RUN "MININEC"
  87. 930 SYSTEM
  88.