summaryrefslogtreecommitdiffstats
path: root/dpd/src/RX_Agc.py
blob: 670fbbbdd96c2db93fd2d244beef8bf2c040d3fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
# -*- coding: utf-8 -*-
#
# Automatic Gain Control
#
# http://www.opendigitalradio.org
# Licence: The MIT License, see notice at the end of this file

import datetime
import os
import logging
import time
logging_path = os.path.dirname(logging.getLoggerClass().root.handlers[0].baseFilename)

import numpy as np
import matplotlib
matplotlib.use('agg')
import matplotlib.pyplot as plt

import src.Adapt as Adapt
import src.Measure as Measure

class Agc:
    """The goal of the automatic gain control is to set the 
    RX gain to a value at which all received amplitudes can 
    be detected. This means that the maximum possible amplitude 
    should be quantized at the highest possible digital value.

    A problem we have to face, is that the estimation of the 
    maximum amplitude by applying the max() function is very 
    unstable. This is due to the maximum’s rareness. Therefore 
    we estimate a far more robust value, such as the median, 
    and then approximate the maximum amplitude from it.

    Given this, we tune the RX gain in such a way, that the 
    received signal fulfills our desired property, of having 
    all amplitudes properly quantized."""

    def __init__(self, measure, adapt, c):
        assert isinstance(measure, Measure.Measure)
        assert isinstance(adapt, Adapt.Adapt)
        self.measure = measure
        self.adapt = adapt
        self.min_rxgain = c.RAGC_min_rxgain
        self.rxgain = self.min_rxgain
        self.peak_to_median = 1./c.RAGC_rx_median_target

    def run(self):
        self.adapt.set_rxgain(self.rxgain)

        for i in range(2):
            # Measure
            txframe_aligned, tx_ts, rxframe_aligned, rx_ts, rx_median= \
                self.measure.get_samples()

            # Estimate Maximum
            rx_peak = self.peak_to_median * rx_median
            correction_factor = 20*np.log10(1/rx_peak)
            self.rxgain = self.rxgain + correction_factor

            assert self.min_rxgain <= self.rxgain, ("Desired RX Gain is {} which is smaller than the minimum of {}".format(
                self.rxgain, self.min_rxgain))

            logging.info("RX Median {:1.4f}, estimated peak {:1.4f}, correction factor {:1.4f}, new RX gain {:1.4f}".format(
            rx_median, rx_peak, correction_factor, self.rxgain
            ))

            self.adapt.set_rxgain(self.rxgain)
            time.sleep(0.5)

    def plot_estimates(self):
        """Plots the estimate of for Max, Median, Mean for different
        number of samples."""
        self.adapt.set_rxgain(self.min_rxgain)
        time.sleep(1)

        dt = datetime.datetime.now().isoformat()
        fig_path = logging_path + "/" + dt + "_agc.svg"
        fig, axs = plt.subplots(2, 2, figsize=(3*6,1*6))
        axs = axs.ravel()

        for j in range(5):
            txframe_aligned, tx_ts, rxframe_aligned, rx_ts, rx_median =\
                self.measure.get_samples()

            rxframe_aligned_abs = np.abs(rxframe_aligned)

            x = np.arange(100, rxframe_aligned_abs.shape[0], dtype=int)
            rx_max_until = []
            rx_median_until = []
            rx_mean_until = []
            for i in x:
                rx_max_until.append(np.max(rxframe_aligned_abs[:i]))
                rx_median_until.append(np.median(rxframe_aligned_abs[:i]))
                rx_mean_until.append(np.mean(rxframe_aligned_abs[:i]))

            axs[0].plot(x,
                    rx_max_until,
                    label="Run {}".format(j+1),
                    color=matplotlib.colors.hsv_to_rgb((1./(j+1.),0.8,0.7)),
                    linestyle="-", linewidth=0.25)
            axs[0].set_xlabel("Samples")
            axs[0].set_ylabel("Amplitude")
            axs[0].set_title("Estimation for Maximum RX Amplitude")
            axs[0].legend()

            axs[1].plot(x,
                    rx_median_until,
                    label="Run {}".format(j+1),
                    color=matplotlib.colors.hsv_to_rgb((1./(j+1.),0.9,0.7)),
                    linestyle="-", linewidth=0.25)
            axs[1].set_xlabel("Samples")
            axs[1].set_ylabel("Amplitude")
            axs[1].set_title("Estimation for Median RX Amplitude")
            axs[1].legend()
            ylim_1 = axs[1].get_ylim()

            axs[2].plot(x,
                    rx_mean_until,
                    label="Run {}".format(j+1),
                    color=matplotlib.colors.hsv_to_rgb((1./(j+1.),0.9,0.7)),
                    linestyle="-", linewidth=0.25)
            axs[2].set_xlabel("Samples")
            axs[2].set_ylabel("Amplitude")
            axs[2].set_title("Estimation for Mean RX Amplitude")
            ylim_2 = axs[2].get_ylim()
            axs[2].legend()

            axs[1].set_ylim(min(ylim_1[0], ylim_2[0]),
                            max(ylim_1[1], ylim_2[1]))

            fig.tight_layout()
            fig.savefig(fig_path)

        axs[3].hist(rxframe_aligned_abs, bins=60)
        axs[3].set_xlabel("Amplitude")
        axs[3].set_ylabel("Frequency")
        axs[3].set_title("Histogram of Amplitudes")
        axs[3].legend()

        fig.tight_layout()
        fig.savefig(fig_path)
        plt.close(fig)


# The MIT License (MIT)
#
# Copyright (c) 2017 Andreas Steger
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.