diff options
author | andreas128 <Andreas> | 2017-09-28 12:13:42 +0200 |
---|---|---|
committer | andreas128 <Andreas> | 2017-09-28 12:13:42 +0200 |
commit | 41a2f79220132a49b1ecaf710b494c278fc8d0d6 (patch) | |
tree | abd21bad2a8a87a29fc48285c78e5fec1773f666 /dpd/src | |
parent | df943d798ffb16214fcf714d1b308a366e1566d1 (diff) | |
download | dabmod-41a2f79220132a49b1ecaf710b494c278fc8d0d6.tar.gz dabmod-41a2f79220132a49b1ecaf710b494c278fc8d0d6.tar.bz2 dabmod-41a2f79220132a49b1ecaf710b494c278fc8d0d6.zip |
Change default for plots
Diffstat (limited to 'dpd/src')
-rw-r--r-- | dpd/src/Const.py | 16 | ||||
-rw-r--r-- | dpd/src/Test_data.py | 2 |
2 files changed, 8 insertions, 10 deletions
diff --git a/dpd/src/Const.py b/dpd/src/Const.py index bf46796..ebdfeb2 100644 --- a/dpd/src/Const.py +++ b/dpd/src/Const.py @@ -6,9 +6,8 @@ import numpy as np class Const: - def __init__(self, sample_rate, target_median, n_bins, n_per_bin, n_meas): + def __init__(self, sample_rate, target_median, plot): self.sample_rate = sample_rate - self.n_meas = n_meas self.tx_gain_max = 89 @@ -41,11 +40,11 @@ class Const: self.phase_offset_per_sample = 1. / sample_rate * 2 * np.pi * 1000 # Constants for ExtractStatistic - self.ES_plot = False + self.ES_plot = plot self.ES_start = 0.0 self.ES_end = 1.0 - self.ES_n_bins = n_bins - self.ES_n_per_bin = n_per_bin + self.ES_n_bins = 64 + self.ES_n_per_bin = 128 # Constants for TX_Agc self.TAGC_max_txgain = 89 @@ -53,22 +52,21 @@ class Const: self.TAGC_tx_median_max = self.TAGC_tx_median_target*1.4 self.TAGC_tx_median_min = self.TAGC_tx_median_target/1.4 - self.RAGC_min_rxgain = 25 self.RAGC_rx_median_target = self.TAGC_tx_median_target # Constants for Model - self.MDL_plot = True + self.MDL_plot = True or plot # Override default # Constants for MER - self.MER_plot = False + self.MER_plot = plot # Constants for Model_PM self.MPM_tx_min = 0.1 # Constants for Measure_Shoulder self.MS_enable = False - self.MS_plot = False + self.MS_plot = plot assert sample_rate==8192000 meas_offset = 976 # Offset from center frequency to measure shoulder [kHz] meas_width = 100 # Size of frequency delta to measure shoulder [kHz] diff --git a/dpd/src/Test_data.py b/dpd/src/Test_data.py index 67f4dff..bbef282 100644 --- a/dpd/src/Test_data.py +++ b/dpd/src/Test_data.py @@ -40,7 +40,7 @@ class Test_data: plt.plot(np.angle(np.fft.fftshift(np.fft.fft(tx_orig))), 'p') """ - self.c = src.Const.Const(sample_rate) + self.c = src.Const.Const(sample_rate,, False self.du = src.Dab_Util.Dab_Util(sample_rate) self.file_paths = { |