| 
									
										
										
										
											2015-09-07 23:31:34 +02:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * agc.cpp | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  Created on: Sep 7, 2015 | 
					
						
							|  |  |  |  *      Author: f4exb | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-26 08:39:20 +02:00
										 |  |  | #include <algorithm>
 | 
					
						
							| 
									
										
										
										
											2015-09-07 23:31:34 +02:00
										 |  |  | #include "dsp/agc.h"
 | 
					
						
							| 
									
										
										
										
											2017-07-27 11:24:01 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include "util/stepfunctions.h"
 | 
					
						
							| 
									
										
										
										
											2015-09-07 23:31:34 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-26 16:23:34 +02:00
										 |  |  | #define StepLengthMax 2400 // 50ms
 | 
					
						
							| 
									
										
										
										
											2015-09-07 23:31:34 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | AGC::AGC(int historySize, Real R) : | 
					
						
							|  |  |  | 	m_u0(1.0), | 
					
						
							|  |  |  | 	m_R(R), | 
					
						
							|  |  |  | 	m_moving_average(historySize, m_R), | 
					
						
							|  |  |  | 	m_historySize(historySize), | 
					
						
							|  |  |  | 	m_count(0) | 
					
						
							|  |  |  | {} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | AGC::~AGC() | 
					
						
							|  |  |  | {} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void AGC::resize(int historySize, Real R) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	m_R = R; | 
					
						
							|  |  |  | 	m_moving_average.resize(historySize, R); | 
					
						
							|  |  |  | 	m_historySize = historySize; | 
					
						
							|  |  |  | 	m_count = 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Real AGC::getValue() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return m_u0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-12 16:34:57 +02:00
										 |  |  | Real AGC::getAverage() | 
					
						
							| 
									
										
										
										
											2015-09-07 23:31:34 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-09-12 16:34:57 +02:00
										 |  |  | 	return m_moving_average.average(); | 
					
						
							| 
									
										
										
										
											2015-09-07 23:31:34 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-25 00:58:16 +02:00
										 |  |  | MagAGC::MagAGC(int historySize, double R, double threshold) : | 
					
						
							| 
									
										
										
										
											2015-10-04 06:26:06 +02:00
										 |  |  | 	AGC(historySize, R), | 
					
						
							| 
									
										
										
										
											2017-07-27 10:50:41 +02:00
										 |  |  | 	m_squared(false), | 
					
						
							| 
									
										
										
										
											2017-07-25 00:58:16 +02:00
										 |  |  | 	m_magsq(0.0), | 
					
						
							| 
									
										
										
										
											2017-07-25 21:21:48 +02:00
										 |  |  | 	m_threshold(threshold), | 
					
						
							| 
									
										
										
										
											2017-07-27 10:50:41 +02:00
										 |  |  | 	m_thresholdEnable(true), | 
					
						
							| 
									
										
										
										
											2017-07-25 23:39:27 +02:00
										 |  |  | 	m_gate(0), | 
					
						
							| 
									
										
										
										
											2017-07-26 13:36:18 +02:00
										 |  |  | 	m_stepLength(std::min(StepLengthMax, historySize/2)), | 
					
						
							| 
									
										
										
										
											2017-07-26 16:23:34 +02:00
										 |  |  |     m_stepDelta(1.0/m_stepLength), | 
					
						
							| 
									
										
										
										
											2017-07-26 08:39:20 +02:00
										 |  |  | 	m_stepUpCounter(0), | 
					
						
							| 
									
										
										
										
											2017-07-26 13:36:18 +02:00
										 |  |  |     m_stepDownCounter(m_stepLength), | 
					
						
							| 
									
										
										
										
											2017-07-25 23:39:27 +02:00
										 |  |  | 	m_gateCounter(0) | 
					
						
							| 
									
										
										
										
											2015-09-07 23:31:34 +02:00
										 |  |  | {} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | MagAGC::~MagAGC() | 
					
						
							|  |  |  | {} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-26 08:39:20 +02:00
										 |  |  | void MagAGC::resize(int historySize, Real R) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2017-07-26 13:36:18 +02:00
										 |  |  |     m_stepLength = std::min(StepLengthMax, historySize/2); | 
					
						
							| 
									
										
										
										
											2017-07-26 16:23:34 +02:00
										 |  |  |     m_stepDelta = 1.0 / m_stepLength; | 
					
						
							|  |  |  |     m_stepUpCounter = 0; | 
					
						
							|  |  |  |     m_stepDownCounter = m_stepLength; | 
					
						
							| 
									
										
										
										
											2017-07-26 08:39:20 +02:00
										 |  |  |     AGC::resize(historySize, R); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-27 10:50:41 +02:00
										 |  |  | void MagAGC::setThresholdEnable(bool enable) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (m_thresholdEnable != enable) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         m_stepUpCounter = 0; | 
					
						
							|  |  |  |         m_stepDownCounter = m_stepLength; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     m_thresholdEnable = enable; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-07 23:31:34 +02:00
										 |  |  | void MagAGC::feed(Complex& ci) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2017-07-26 16:23:34 +02:00
										 |  |  | 	ci *= feedAndGetValue(ci); | 
					
						
							| 
									
										
										
										
											2015-09-07 23:31:34 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-25 00:58:16 +02:00
										 |  |  | double MagAGC::feedAndGetValue(const Complex& ci) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     m_magsq = ci.real()*ci.real() + ci.imag()*ci.imag(); | 
					
						
							|  |  |  |     m_moving_average.feed(m_magsq); | 
					
						
							| 
									
										
										
										
											2017-07-27 10:50:41 +02:00
										 |  |  |     m_u0 = m_R / (m_squared ? m_moving_average.average() : sqrt(m_moving_average.average())); | 
					
						
							| 
									
										
										
										
											2017-07-25 21:21:48 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-27 10:50:41 +02:00
										 |  |  |     if (m_thresholdEnable) | 
					
						
							| 
									
										
										
										
											2017-07-25 21:21:48 +02:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2017-07-27 10:50:41 +02:00
										 |  |  |         if (m_magsq > m_threshold) | 
					
						
							| 
									
										
										
										
											2017-07-25 23:39:27 +02:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2017-07-27 10:50:41 +02:00
										 |  |  |             if (m_gateCounter < m_gate) | 
					
						
							|  |  |  |             { | 
					
						
							|  |  |  |                 m_gateCounter++; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             else | 
					
						
							|  |  |  |             { | 
					
						
							|  |  |  |                 m_count = 0; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2017-07-25 23:39:27 +02:00
										 |  |  |         } | 
					
						
							|  |  |  |         else | 
					
						
							|  |  |  |         { | 
					
						
							| 
									
										
										
										
											2017-07-27 10:50:41 +02:00
										 |  |  |             if (m_count < m_moving_average.historySize()) { | 
					
						
							|  |  |  |                 m_count++; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2017-07-25 23:39:27 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-27 10:50:41 +02:00
										 |  |  |             m_gateCounter = 0; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2017-07-26 08:39:20 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-27 10:50:41 +02:00
										 |  |  |         if (m_count <  m_moving_average.historySize()) | 
					
						
							| 
									
										
										
										
											2017-07-26 16:23:34 +02:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2017-07-27 10:50:41 +02:00
										 |  |  |             m_stepDownCounter = m_stepUpCounter; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if (m_stepUpCounter < m_stepLength) | 
					
						
							|  |  |  |             { | 
					
						
							|  |  |  |                 m_stepUpCounter++; | 
					
						
							|  |  |  |                 return m_u0 * StepFunctions::smootherstep(m_stepUpCounter * m_stepDelta); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             else | 
					
						
							|  |  |  |             { | 
					
						
							|  |  |  |                 return m_u0; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2017-07-26 16:23:34 +02:00
										 |  |  |         } | 
					
						
							|  |  |  |         else | 
					
						
							|  |  |  |         { | 
					
						
							| 
									
										
										
										
											2017-07-27 10:50:41 +02:00
										 |  |  |             m_stepUpCounter = m_stepDownCounter; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if (m_stepDownCounter > 0) | 
					
						
							|  |  |  |             { | 
					
						
							|  |  |  |                 m_stepDownCounter--; | 
					
						
							|  |  |  |                 return m_u0 * StepFunctions::smootherstep(m_stepDownCounter * m_stepDelta); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             else | 
					
						
							|  |  |  |             { | 
					
						
							|  |  |  |                 return 0.0; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2017-07-25 23:39:27 +02:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2017-07-27 10:50:41 +02:00
										 |  |  |         return m_u0; | 
					
						
							| 
									
										
										
										
											2017-07-25 21:21:48 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-07-25 00:58:16 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2015-09-07 23:31:34 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | AlphaAGC::AlphaAGC(int historySize, Real R) : | 
					
						
							|  |  |  | 	AGC(historySize, R), | 
					
						
							|  |  |  | 	m_alpha(0.5), | 
					
						
							| 
									
										
										
										
											2015-10-04 06:26:06 +02:00
										 |  |  | 	m_magsq(0.0), | 
					
						
							| 
									
										
										
										
											2015-09-07 23:31:34 +02:00
										 |  |  | 	m_squelchOpen(true) | 
					
						
							|  |  |  | {} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | AlphaAGC::AlphaAGC(int historySize, Real R, Real alpha) : | 
					
						
							|  |  |  | 	AGC(historySize, R), | 
					
						
							|  |  |  | 	m_alpha(alpha), | 
					
						
							| 
									
										
										
										
											2015-10-04 06:26:06 +02:00
										 |  |  | 	m_magsq(0.0), | 
					
						
							| 
									
										
										
										
											2015-09-07 23:31:34 +02:00
										 |  |  | 	m_squelchOpen(true) | 
					
						
							|  |  |  | {} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | AlphaAGC::~AlphaAGC() | 
					
						
							|  |  |  | {} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void AlphaAGC::resize(int historySize, Real R, Real alpha) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	 m_R = R; | 
					
						
							|  |  |  | 	 m_alpha = alpha; | 
					
						
							|  |  |  | 	 m_squelchOpen = true; | 
					
						
							|  |  |  | 	 m_moving_average.resize(historySize, R); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void AlphaAGC::feed(Complex& ci) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2015-10-04 06:26:06 +02:00
										 |  |  | 	m_magsq = ci.real()*ci.real() + ci.imag()*ci.imag(); | 
					
						
							| 
									
										
										
										
											2015-09-07 23:31:34 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-04 06:26:06 +02:00
										 |  |  | 	if (m_squelchOpen && (m_magsq)) | 
					
						
							| 
									
										
										
										
											2015-09-07 23:31:34 +02:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2015-10-04 06:26:06 +02:00
										 |  |  | 		m_moving_average.feed(m_moving_average.average() - m_alpha*(m_moving_average.average() - m_magsq)); | 
					
						
							| 
									
										
										
										
											2015-09-07 23:31:34 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		//m_squelchOpen = true;
 | 
					
						
							| 
									
										
										
										
											2015-10-04 06:26:06 +02:00
										 |  |  | 		m_moving_average.feed(m_magsq); | 
					
						
							| 
									
										
										
										
											2015-09-07 23:31:34 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-09-12 16:34:57 +02:00
										 |  |  | 	ci *= m_u0; | 
					
						
							| 
									
										
										
										
											2015-09-07 23:31:34 +02:00
										 |  |  | } |