DVB-S2X waveforms is have various types of modulation scheme like QPSK, APSK etc. The selection of modulation scheme is based upon channel. A novel AMR based soft algorithm is need to develop to detect the DVB S2X modulation waveform on ground in order to synchronized the ground receiver from satellite.
Challenge:
- To develop the algorithm compliant to existing DVB S2X waveform.
- To ensure the develop algorithm should not complex to implement and not taking much hardware resources.
- To integrate all DVB S2X waveform together and having a single detection algorithm.
Our workflow is as follows:
- Generate the various modulation signals with various levels of noise and number of symbols.
- Generate the symbols from the signals.
- Extract features such as magnitude, phase, as well as few cyclostationary features such as autocorrelation and spectral correlation density (SCD).
- Store the train and test datasets into separate csv files.
- Run a Random Forest Model and evaluate the model in terms of size and latency, as well as the model's accuracy.
├── data
│ ├── test.csv
│ └── train.csv
├── notebooks
│ ├── DVB-S2X Wave Generator.ipynb
│ └── rf_modelling_v2.ipynb
├── README.md
├── requirements.txt
├── DVBS2X.py
├── script.py
├── main.py
└── utils.py
- data/: contains the
train.csvandtest.csvfile. - notebooks/: contains the initial dry runs before modularity.
- requirements.txt: contains the dependencies to be installed.
- utils.py: important functions used such as feature extraction, dataset creation, etc.
- script.py: the draft script with very little modularity.
- main.py: the final execution file.
One can do so by running the command:
conda create -n <env_name>pip install -r requirements.txtThe main.py file contains the script that creates the train and test data from the features specified, as well as the noise and the symbols which are passed as variables. Simply running:
python main.pyYou could play around with notebooks/rf_modelling_v2.ipynb wiht the various features or add anything additional for experimentation.
This is not to be used publicly and is not commerically available.