Differential Encoder and Decoder Python Script

differential encoder
differential decoder
python
data transmission
error correction

This document provides Python code for a differential encoder and decoder, designed for binary data input. It explains the concepts and provides functional scripts using modulo-2 sum and delay.

Introduction

A binary differential encoder is an electronic circuit that transforms a binary input signal (a sequence of ones and zeros) into a differential output signal. This technique is commonly used in digital communication systems to facilitate bit error detection and correction. By reducing the impact of noise, it enhances the reliability and accuracy of both digital communication and data storage. Differential encoders/decoders find applications in various domains, including data transmission/reception, data storage devices, Analog-to-Digital Converters (ADCs), motor control, and Digital Signal Processing (DSP) systems.

differential encoder

Figure 1: Differential Encoder

Figure 1 illustrates a differential encoder circuit employing a modulo-2 SUM logic gate (EX-OR) combined with a delay element. The input binary data bits are subjected to a modulo-2 SUM operation with the previous output bits.

The mathematical representation of the differential encoder is as follows:

en=dnen1e_n = d_n \oplus e_{n-1}

Where:

  • ene_n is the current encoded bit.
  • dnd_n is the current data bit.
  • en1e_{n-1} is the previous encoded bit.
  • \oplus represents the modulo-2 sum (XOR) operation.

Differential Decoder

differential decoder

Figure 2: Differential Decoder

Figure 2 shows the differential decoder circuit. The current input and a delayed version of the same input are fed into a modulo-2 sum operation, generating the output bits.

The mathematical equation for the differential decoder is:

dn=enen1d'_n = e'_n \oplus e'_{n-1}

Where:

  • dnd'_n is the current decoded bit.
  • ene'_n is the current encoded bit.
  • en1e'_{n-1} is the previous encoded bit.

Differential Encoder and Decoder Python Script

The following Python code demonstrates how to generate differentially encoded data and recover the original binary data using a differential decoder.

# Differential encoder python script
input_data = [1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 1]
output_data = [input_data[0]]
delay = 0

for i in range(1, len(input_data)):
    mod_2_sum = (input_data[i] + delay) % 2
    output_data.append(mod_2_sum)
    delay = output_data[i]

encoded_data = output_data
print("Input data:", input_data)
print("Encoded data:", encoded_data)

# Differential decoder python script
input_data = encoded_data
output_data = [input_data[0]]
delay = 0

for i in range(1, len(input_data)):
    decoded_value = (input_data[i] + delay) % 2
    output_data.append(decoded_value)
    delay = input_data[i]

decoded_data = output_data
print("Decoded data:", decoded_data)

Differential Encoder and Decoder Output

The following image shows the outputs at various stages of the differential encoder and decoder Python code, including the binary data input, the encoder’s output, and the decoder’s output, which should match the original binary data.

Differential encoder decoder python output

Linear Block Code vs. Cyclic Code: Key Differences

Explore the differences between linear block codes and cyclic codes, focusing on their properties, generation methods, and applications in error detection and correction.

linear block code
cyclic code
error correction
FSK Modulation: Types and Applications

FSK Modulation: Types and Applications

Explore Frequency Shift Keying (FSK) modulation, its types (BFSK, MFSK, CPFSK), and diverse applications in communication systems. Learn about its benefits for reliable data transmission.

fsk modulation
communication system
data transmission