Skip to content

Latest commit

 

History

History
69 lines (53 loc) · 3.34 KB

AMradio.md

File metadata and controls

69 lines (53 loc) · 3.34 KB
layout title image comments
page
AM Radio Transmitter
assets/images/AMradio/AMradio.jpg
true

April 2019
with Luis Collado

For my Communication Circuits class taught by Prof. Yannis Tsividis, we designed and built an AM Radio transmitter using only 5 transistors plus passive components. The transmitter consists of 5 functional blocks:

  • Colpitts Oscillator – generates the carrier frequency
  • Buffer – buffers the output of the Colpitts Oscillator
  • Audio Amplifier – preamp for the input audio signal
  • *Mixer – uses the audio signal to modulate the amplitude of the carrier
  • *RF Power Amplifier (PA) – amplifies the AM signal to sufficient power for transmitting

*The mixer and PA are implemented with the same transistor in the output stage.

The amplitude modulation is achieved by utilizing the non-linearity of a bipolar transistor’s output current with respect to input current in order to performing mixing (ie. multiplication) of two signals which are combined additively at the transistor’s input. The two signals which are fed into the modulator are the radio frequency carrier (from the Colpitts Oscillator) and the audio signal (from the preamp). The carrier is subtracted from the audio signal (which is equivalent to adding the carrier with a 180º phase shift) by applying the audio signal to the transistor’s base and the carrier to the transistor’s emitter. Once the modulated signal, along with unwanted harmonics, has been produced in the form of the transistor’s collector current, a parallel RLC network acts as a bandpass filter so that the carrier and sidebands are passed to the antenna, while other frequency components are (mostly) rejected.

More details can be found in our report.

Here is a video of it in action:

<iframe width="560" height="315" src="https://www.youtube.com/embed/CwZQ1GSEX00" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>

And our demonstration for Prof. Tsividis:

<iframe width="560" height="315" src="https://www.youtube.com/embed/01Igx69Mof0" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<script type="text/javascript" src="assets/js/generategallery.js"></script> <script> var prefix = "AMradio/" var filenames = [ "AMradio_schematic.png", "AMradio_blockdiagram.png", "AMradio_breadboard.jpg", "AMradio_LCRmeter.jpg", "AMradio_scope.png", "AMradio_spectrum.png", "AMradio_notes.jpg" ]; var captions = [ "Complete schematic of AM radio transmitter.", "Block diagram of AM radio transmitter.", "Prototype on a breadboard.", "Measuring a hand-wound toroidal inductor using an LCR meter.", "Audio input and resulting AM signal.", "Carrier with sidebands and unwanted harmonics.", "Design in progress." ]; var images = filenames.map(function (i){ return prefix + i; }) generateGalleryHTML(images, captions); </script>
<script type="text/javascript" src="assets/js/gallery.js"></script>