Adding accessor functions for both alpha and beta.
[debian/gnuradio] / gnuradio-core / src / lib / filter / gr_pfb_clock_sync_ccf.cc
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2009 Free Software Foundation, Inc.
4  * 
5  * This file is part of GNU Radio
6  * 
7  * GNU Radio is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 3, or (at your option)
10  * any later version.
11  * 
12  * GNU Radio is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  * 
17  * You should have received a copy of the GNU General Public License
18  * along with GNU Radio; see the file COPYING.  If not, write to
19  * the Free Software Foundation, Inc., 51 Franklin Street,
20  * Boston, MA 02110-1301, USA.
21  */
22
23 #ifdef HAVE_CONFIG_H
24 #include "config.h"
25 #endif
26
27 #include <cstdio>
28 #include <cmath>
29
30 #include <gr_pfb_clock_sync_ccf.h>
31 #include <gr_fir_ccf.h>
32 #include <gr_fir_util.h>
33 #include <gr_io_signature.h>
34 #include <gr_math.h>
35
36 gr_pfb_clock_sync_ccf_sptr gr_make_pfb_clock_sync_ccf (float sps, float gain,
37                                                        const std::vector<float> &taps,
38                                                        unsigned int filter_size,
39                                                        float init_phase)
40 {
41   return gr_pfb_clock_sync_ccf_sptr (new gr_pfb_clock_sync_ccf (sps, gain, taps,
42                                                                 filter_size,
43                                                                 init_phase));
44 }
45
46 int ios[] = {sizeof(gr_complex), sizeof(float), sizeof(float), sizeof(float)};
47 std::vector<int> iosig(ios, ios+sizeof(ios)/sizeof(int));
48 gr_pfb_clock_sync_ccf::gr_pfb_clock_sync_ccf (float sps, float gain,
49                                               const std::vector<float> &taps,
50                                               unsigned int filter_size,
51                                               float init_phase)
52   : gr_block ("pfb_clock_sync_ccf",
53               gr_make_io_signature (1, 1, sizeof(gr_complex)),
54               gr_make_io_signaturev (1, 4, iosig)),
55     d_updated (false), d_sps(sps)
56 {
57   d_nfilters = filter_size;
58
59   // Store the last filter between calls to work
60   // The accumulator keeps track of overflow to increment the stride correctly.
61   // set it here to the fractional difference based on the initial phaes
62   // assert(init_phase <= 2*M_PI);
63   set_alpha(gain);
64   set_beta(0.25*gain*gain);
65   d_k = d_nfilters / 2;
66   d_rate = 0;
67   d_start_count = 0;
68   
69
70   d_filters = std::vector<gr_fir_ccf*>(d_nfilters);
71   d_diff_filters = std::vector<gr_fir_ccf*>(d_nfilters);
72
73   // Create an FIR filter for each channel and zero out the taps
74   std::vector<float> vtaps(0, d_nfilters);
75   for(unsigned int i = 0; i < d_nfilters; i++) {
76     d_filters[i] = gr_fir_util::create_gr_fir_ccf(vtaps);
77     d_diff_filters[i] = gr_fir_util::create_gr_fir_ccf(vtaps);
78   }
79
80   // Now, actually set the filters' taps
81   std::vector<float> dtaps;
82   create_diff_taps(taps, dtaps);
83   set_taps(taps, d_taps, d_filters);
84   set_taps(dtaps, d_dtaps, d_diff_filters);
85 }
86
87 gr_pfb_clock_sync_ccf::~gr_pfb_clock_sync_ccf ()
88 {
89   for(unsigned int i = 0; i < d_nfilters; i++) {
90     delete d_filters[i];
91   }
92 }
93
94 void
95 gr_pfb_clock_sync_ccf::set_taps (const std::vector<float> &newtaps,
96                                  std::vector< std::vector<float> > &ourtaps,
97                                  std::vector<gr_fir_ccf*> &ourfilter)
98 {
99   unsigned int i,j;
100
101   unsigned int ntaps = newtaps.size();
102   d_taps_per_filter = (unsigned int)ceil((double)ntaps/(double)d_nfilters);
103
104   // Create d_numchan vectors to store each channel's taps
105   ourtaps.resize(d_nfilters);
106   
107   // Make a vector of the taps plus fill it out with 0's to fill
108   // each polyphase filter with exactly d_taps_per_filter
109   std::vector<float> tmp_taps;
110   tmp_taps = newtaps;
111   while((float)(tmp_taps.size()) < d_nfilters*d_taps_per_filter) {
112     tmp_taps.push_back(0.0);
113   }
114   
115   // Partition the filter
116   for(i = 0; i < d_nfilters; i++) {
117     // Each channel uses all d_taps_per_filter with 0's if not enough taps to fill out
118     ourtaps[i] = std::vector<float>(d_taps_per_filter, 0);
119     for(j = 0; j < d_taps_per_filter; j++) {
120       ourtaps[i][j] = tmp_taps[i + j*d_nfilters];  // add taps to channels in reverse order
121     }
122     
123     // Build a filter for each channel and add it's taps to it
124     ourfilter[i]->set_taps(ourtaps[i]);
125   }
126
127   // Set the history to ensure enough input items for each filter
128   set_history (d_taps_per_filter + d_sps);
129
130   d_updated = true;
131 }
132
133 void
134 gr_pfb_clock_sync_ccf::create_diff_taps(const std::vector<float> &newtaps,
135                                         std::vector<float> &difftaps)
136 {
137   float maxtap = -1e12;
138   difftaps.clear();
139   difftaps.push_back(0); //newtaps[0]);
140   for(unsigned int i = 1; i < newtaps.size()-1; i++) {
141     float tap = newtaps[i+1] - newtaps[i-1];
142     if(tap > maxtap) {
143      maxtap = tap;
144     }
145     //maxtap += tap;
146     difftaps.push_back(tap);
147   }
148   difftaps.push_back(0);//-newtaps[newtaps.size()-1]);
149
150   for(unsigned int i = 0; i < difftaps.size(); i++) {
151     difftaps[i] /= 1;//maxtap;
152   }
153 }
154
155 void
156 gr_pfb_clock_sync_ccf::print_taps()
157 {
158   unsigned int i, j;
159   for(i = 0; i < d_nfilters; i++) {
160     printf("filter[%d]: [%.4e, ", i, d_taps[i][0]);
161     for(j = 1; j < d_taps_per_filter-1; j++) {
162       printf("%.4e,", d_taps[i][j]);
163     }
164     printf("%.4e]\n", d_taps[i][j]);
165   }
166 }
167
168 void
169 gr_pfb_clock_sync_ccf::print_diff_taps()
170 {
171   unsigned int i, j;
172   for(i = 0; i < d_nfilters; i++) {
173     printf("filter[%d]: [%.4e, ", i, d_dtaps[i][0]);
174     for(j = 1; j < d_taps_per_filter-1; j++) {
175       printf("%.4e,", d_dtaps[i][j]);
176     }
177     printf("%.4e]\n", d_dtaps[i][j]);
178   }
179 }
180
181
182 std::vector<float>
183 gr_pfb_clock_sync_ccf::channel_taps(int channel)
184 {
185   std::vector<float> taps;
186   unsigned int i;
187   for(i = 0; i < d_taps_per_filter; i++) {
188     taps.push_back(d_taps[channel][i]);
189   }
190   return taps;
191 }
192
193 std::vector<float>
194 gr_pfb_clock_sync_ccf::diff_channel_taps(int channel)
195 {
196   std::vector<float> taps;
197   unsigned int i;
198   for(i = 0; i < d_taps_per_filter; i++) {
199     taps.push_back(d_dtaps[channel][i]);
200   }
201   return taps;
202 }
203
204
205 int
206 gr_pfb_clock_sync_ccf::general_work (int noutput_items,
207                                      gr_vector_int &ninput_items,
208                                      gr_vector_const_void_star &input_items,
209                                      gr_vector_void_star &output_items)
210 {
211   gr_complex *in = (gr_complex *) input_items[0];
212   gr_complex *out = (gr_complex *) output_items[0];
213
214   float *err, *outrate, *outk;
215   if(output_items.size() > 2) {
216     err = (float *) output_items[1];
217     outrate = (float*)output_items[2];
218     outk = (float*)output_items[3];
219   }
220   
221   if (d_updated) {
222     d_updated = false;
223     return 0;                // history requirements may have changed.
224   }
225
226   // We need this many to process one output
227   int nrequired = ninput_items[0] - d_taps_per_filter;
228
229   int i = 0, count = d_start_count;
230   float error = 0;
231
232   // produce output as long as we can and there are enough input samples
233   while((i < noutput_items) && (count < nrequired)) {
234     int filtnum = (int)d_k;
235     out[i] = d_filters[filtnum]->filter(&in[count]);
236     error =  (out[i] * d_diff_filters[filtnum]->filter(&in[count])).real();
237
238     d_k = d_k + d_alpha*error + d_rate;
239     d_rate = d_rate + d_beta*error;
240     while(d_k >= d_nfilters) {
241       d_k -= d_nfilters;
242       count++;
243     }
244     while(d_k < 0) {
245       d_k += d_nfilters;
246       count--;
247     }
248
249     i++;
250     count += d_sps;
251
252     if(output_items.size() > 2) {
253       err[i] = error;
254       outrate[i] = d_rate;
255       outk[i] = d_k;
256     }
257
258     //printf("error: %f  k: %f  rate: %f\n",
259     //     error, d_k, d_rate);
260   }
261
262   // Set the start index at the next entrance to the work function
263   // if we stop because we run out of input items, jump ahead in the
264   // next call to work. Otherwise, we can start at zero.
265   if(count > nrequired) {
266     d_start_count = count - (nrequired);
267     consume_each(ninput_items[0]-d_taps_per_filter);
268   }
269   else {
270     d_start_count = 0;
271     consume_each(count);
272   }
273   
274   return i;
275 }