home *** CD-ROM | disk | FTP | other *** search
/ HAM Radio 1 / HamRadio.cdr / tech / vswr / vswr.doc next >
Text File  |  1988-04-15  |  3KB  |  58 lines

  1.    In radio and television broadcasting (as well as in amateur 
  2. radio) the measure of signal transmission quality from the 
  3. transmitter through the transmission line to the antenna is the 
  4. ratio of the forward voltage (or current) to the reflected voltage 
  5. (or current). This ratio is called SWR, or Standing Wave Ratio. It 
  6. is a simple ratio and can be mathematically represented as: 
  7.  
  8.               SWR = Reverse Voltage / Forward Voltage 
  9.  
  10.    In commercial broadcasting VSWR or Voltage Standing Wave Ratio 
  11. is the most commonly used parameter. It reflects the quality of 
  12. the impedance match of the transmission line to the antenna system 
  13. or the combination of transmitter, transmission line, and antenna 
  14. system. It is the ratio of the square root of the Reflected Power 
  15. to the square root of the Forward Power. This ratio is called 
  16. GAMMA in several texts and can be mathematically represented as: 
  17.  
  18.          GAMMA = sqrt( (Reflected Power / Forward Power) ) 
  19.  
  20.    Thus, to find the VSWR of an antenna system, one needs to know 
  21. the forward and reflected powers (assuming matched impedances). 
  22.  
  23.                VSWR = ( (1 + GAMMA) / (1 - GAMMA) ) 
  24.  
  25.    However, if the Forward Power and VSWR are known, the reflected 
  26. power can be computed: 
  27.  
  28.  Reflected Power = sqr( (VSWR - 1) / (VSWR + 1) ) * Forward Power 
  29.  
  30.    Because many VSWR meters are accurrate to only two decimal 
  31. places, there can be a large area of reflected power values given 
  32. for a given VSWR. For example, assuming a forward visual power of 
  33. 18.6 KW at 100% power and a VSWR of 1.06, a reflected power 
  34. anywhere from 13.3 Watts to 18.4 Watts could be expected to be 
  35. measured. Therefore, this program displays VSWR to the nearest 
  36. hundredth and the reflected power to the nearest tenth of a watt. 
  37.  
  38.    This program will compute the VSWR and/or Reflected Power of 
  39. any television aural and visual transmitter. Under the current FCC 
  40. ruling concerning measurement of aural power (73.1560c(2)), 100% 
  41. is the maximum allowable aural power any TV station can radiate 
  42. and represents 22% of the station's peak visual power. When 
  43. calibrating the visual reflectometer (73.663b(1)(2)(3)), the peak 
  44. video power of the transmitter should be measured with a wattmeter 
  45. of known calibration, with carrier modulated with black picture at 
  46. 75% set-up and 25% sync at 4.8 usec horizontal sync pulse duration 
  47. into a dummy load of substantially zero reactance and resistance 
  48. equal to the transmission line characteristic impedance, visual 
  49. carrier only. The wattmeter reading then should be multiplied by 
  50. the FCC correction factor of 1.68 to obtain the peak visual power 
  51. of license. 
  52.  
  53.    This program was written to satisfy a need to correlate remote 
  54. monitor data against the calibrated local transmitter forward 
  55. power and VSWR reflectometers. 
  56.  
  57.