AM Modulation Simulation with Python

am modulation
signal processing
python
modulation
analog modulation

This document provides Python code for simulating Amplitude Modulation (AM) and demodulation.

Introduction

Modulation techniques fall into two main categories: analog and digital.

  • Analog Modulation: The baseband information or message signal is analog. Examples include AM, FM, and PM.
  • Digital Modulation: The baseband information or message signal is digital (binary). Examples include ASK, FSK, and PSK.

This article focuses on AM, an analog modulation technique.

amplitude modulation

The figure above illustrates the AM process. An analog message signal modulates an RF carrier. The amplitude of the RF carrier varies in accordance with the amplitude of the modulating signal. This is in contrast to ASK, which uses a digital message signal.

For single-tone modulation, the AM process can be expressed as follows:

  • Carrier signal: C(t)=Acsin(Wct)C(t) = A_c \cdot sin(W_c \cdot t)
  • Message signal: m(t)=Amsin(Wmt)m(t) = A_m \cdot sin(W_m \cdot t)
  • AM modulated signal: s(t)=C(t)[1+m(t)/Ac]s(t) = C(t) \cdot [1 + m(t)/A_c]

Where:

  • Wc=2πFcW_c = 2 \cdot \pi \cdot F_c
  • Wm=2πFmW_m = 2 \cdot \pi \cdot F_m
  • 1/Ac=K01/A_c = K_0, where K0K_0 is the amplitude sensitivity.

AM Modulation and Demodulation Python Script

The following Python script generates AM modulated data and demonstrates AM demodulation.

# AM Modulation Python Script
import numpy as np
import matplotlib.pyplot as plt
from math import pi

plt.close('all')

# Setting up AM modulation simulation parameters
Fs = 1500
n = np.arange(0,2,1/Fs)

# Generate carrier frequency
Fc = 50
Ac = 1
c = Ac*np.sin(2*pi*Fc*n) # carrier frequency wave

# Generate message signal
Fm = 2 # Signal frequency
Am = 0.5
m = Am*np.sin(2*pi*Fm*n)

# Generate Amplitude modulated signal
s = c * (1 + m/Ac)

# Plots
plt.subplot(3,1,1)
plt.plot(n,s)
plt.title("Unmodulated case, Am = 0.5")
plt.xlabel('Time(s)')
plt.ylabel('Amplitude')
plt.grid(True)

Am = 1
m = Am * np.sin(2*pi*Fm*n)
s = c * ( 1 + m/Ac)

plt.subplot(3,1,2)
plt.plot(n,s)
plt.title("Full modulation case, Am = 1")
plt.xlabel('Time(s)')
plt.ylabel('Amplitude')
plt.grid(True)

Am = 1.5
m = Am * np.sin(2*pi*Fm*n)
s = c * ( 1 + m/Ac)

plt.subplot(3,1,3)
plt.plot(n,s)
plt.title("Over modulation case, Am = 1.5")
plt.xlabel('Time(s)')
plt.ylabel('Amplitude')
plt.grid(True)

plt.tight_layout()
plt.show()

Output Plots

The following plots are generated by the AM modulation Python script above.

AM modulation python plots

FSK Modulation Implementation in Python

FSK Modulation Implementation in Python

This article provides Python code for Frequency Shift Keying (FSK) modulation, generating an FSK modulated waveform from binary data.

fsk
modulation
python
ASK Modulation in Python: Code and Explanation

ASK Modulation in Python: Code and Explanation

Explore Amplitude Shift Keying (ASK) modulation using Python. Includes code, explanation of principles, and waveform visualizations for digital data transmission.

ask modulation
python
signal processing