Package for digitial communications functions
Project description
# DigCommPy Python3 package for digital communications simulations.
It includes channel coding and different channel models. Simulations can be run to calculate bit/block error rates for different configurations.
# Installation The package can be installed using pip with the command pip install digcommpy.
Alternatively, you can clone the Gitlab repository and install the local copy using the following commands:
- git clone https://gitlab.com/klb2/digcommpy.git
cd digcommpy pip install .
# Usage There are multiple example files in the examples folder.
## Basic Encoding/Decoding Example A simple encoding example using a polar code: `python from digcommpy import messages, encoders n, k = 16, 4 encoder = encoders.PolarEncoder(n, k, "BAWGN", 0.) mess = messages.generate_data(k, number=1000, binary=True) codewords = encoder.encode_messages(mess) `
A full transmission chain can be simulated as follows: `python from digcommpy import messages, encoders, decoders, channels, modulators, metrics # Parameters n, k = 16, 4 snr = 5. # dB # Blocks encoder = encoders.PolarEncoder(n, k, "BAWGN", snr) modulator = modulator.BpskModulator() channel = channels.BawgnChannel(snr, rate=k/n) decoder = decoders.PolarDecoder(n, k, "BAWGN", snr) # Simulation mess = messages.generate_data(k, number=1000, binary=True) codewords = encoder.encode_messages(mess) channel_input = modulator.modulate_symbols(codewords) channel_output = channel.transmit_data(channel_input) est_mess = decoder.decode_messages(channel_output) ber = metrics.ber(mess, est_mess) print("The BER is {}".format(ber)) `
This can be simplified by using the simulations module from the package (in progress).
# Used Software Some parts of this library are based on different open source implementations. The polar code encoding and decoding code is based on the Matlab implementation from Harish Vangala et al. (http://polarcodes.com/). The implementation of some functions, e.g., the QAM-modulation are based on the Octave communications package (https://octave.sourceforge.io/).
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file digcommpy-0.9.tar.gz
.
File metadata
- Download URL: digcommpy-0.9.tar.gz
- Upload date:
- Size: 20.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.8.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e7f7ab22e87b2b605647fbe256e9c7cfc64689d6874ee7b1a4a18a6e2345d297 |
|
MD5 | aad95a5db02efa21ee50c8c5ae4773bb |
|
BLAKE2b-256 | b879d7e78b5dc91863242a5e801c78ef90b047dd8cc7bbfe68eadaf2b1106e00 |
File details
Details for the file digcommpy-0.9-py3-none-any.whl
.
File metadata
- Download URL: digcommpy-0.9-py3-none-any.whl
- Upload date:
- Size: 24.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.8.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fe12fd58043ecfd864c0822e9cc545f46dc835352651f404926b6e6af588b21c |
|
MD5 | f7565391f14e1932edd21abd2b32ef52 |
|
BLAKE2b-256 | e44c1f3a302ac63b7322137138055c2c23ca759c7cf1699ae7a95e76d306ba6d |