aboutsummaryrefslogtreecommitdiffstats
path: root/tex/filters.tex
diff options
context:
space:
mode:
authorNao Pross <np@0hm.ch>2021-08-19 18:46:28 +0200
committerNao Pross <np@0hm.ch>2021-08-19 19:02:10 +0200
commit08522b830cd1dd1d0d1d5a060574f50f388205a7 (patch)
treee714f5dc0e50597c2500b9b7875fd518d55b4396 /tex/filters.tex
parentAdd refs (diff)
downloadSigSys-08522b830cd1dd1d0d1d5a060574f50f388205a7.tar.gz
SigSys-08522b830cd1dd1d0d1d5a060574f50f388205a7.zip
Continue working
Diffstat (limited to 'tex/filters.tex')
-rw-r--r--tex/filters.tex68
1 files changed, 66 insertions, 2 deletions
diff --git a/tex/filters.tex b/tex/filters.tex
index e785e0a..f1ec820 100644
--- a/tex/filters.tex
+++ b/tex/filters.tex
@@ -1,6 +1,10 @@
\section{Filters}
-\begin{figure}
+\subsection{Normalized Frequency}
+
+For this section we will always use a normalized frequency \(\Omega = \omega/\omega_r\) for some reference frequency \(\omega_r\). For TP and HP filters \(\omega_r = \omega_D\) (cut-off frequency), whereas for BP and BS \(\omega_r = \omega_m\) (frequency in the middle of the band).
+
+\begin{figure}[]
\centering
\begin{tikzpicture}[
axis tick/.style = {
@@ -38,7 +42,7 @@
\draw[thick, ->] (O) to
node[pos = .2, y axis tick, label = 180:\(A_\text{max}\)] (Amax) {}
node[pos = .7, y axis tick, label = 180:\(A_\text{min}\)] (Amin) {}
- ++(0,\ylen) node[above] {\(A\)};
+ ++(0,\ylen) node[above] {\(A\)/dB};
\draw[dashed, lightgray]
(Amin) -- ++(\xlen,0)
@@ -55,4 +59,64 @@
\end{tikzpicture}
\end{figure}
+\subsection{LPF Approximations}
+The approximations of ideal low pass filters generally have (with some exceptions) the form
+\[
+ |H(j\Omega)|^2 = H(j\Omega)\cdot H^*(j\Omega)= \frac{1}{1 + K(\Omega^2)},
+\]
+where \(K\) is the so called \emph{charcteristic function}. For a nicer notation we will define the \emph{attenuation} function
+\[
+ A(\Omega) = 10 \log \left(|H(j\Omega)|^{-2}\right),
+ \quad [A] = \text{dB}.
+\]
+With that, ideally wish to have an approximation that satisfies the following requirements:
+\begin{itemize}
+ \item \(A(\Omega = 0) = 1\) = 0\text{ dB}
+ \item \(A(\Omega = 1) = 1/\sqrt{2} \approx -3\text{ dB}\)
+ \item \(A(\Omega \to \infty) = 0\)
+\end{itemize}
+
+\paragraph{Critically damped filter}
+
+\paragraph{Butterworth} Let \(K(\Omega^2) = \Omega^{2n}\), thus
+\[
+ A(\Omega) = 10 \log\left(1 + \Omega^{2n}\right).
+\]
+To find the order of the filter given two parameters the formula is
+\[
+ n = \left\lceil \frac{1}{2} \log\left(
+ \frac{10^{A_\text{min}/10} -1}{10^{A_\text{max}/10} -1}
+ - \frac{\Omega_S}{\Omega_D}
+ \right) \right\rceil.
+\]
+
+\paragraph{Chebyshev I} Let \(K(\Omega^2) = e^2 C_n^2(\Omega)\), so
+\[
+ A(\Omega) = 10 \log\left(1 + e^2C_n^2(\Omega) \right),
+\]
+where \(C_n = \cos(n\arccos(\Omega))\) for \(|\Omega| \leq 1\) (in the passband), and when \(|\Omega| > 1\) (in the stopband) \(C_n = \cosh(n\arccosh(\Omega))\), is a so called Chebyshev polynomial of \(n\)-th order. \(e\) is a parameter, \emph{not the natural number (2.71\ldots)}. Chebyshev polynomials can be computed recursively with the formula
+\[
+ C_n = 2\Omega C_{n-1} - C_{n-2},
+\]
+and knowing that \(C_1 = \Omega\) and \(C_2 = 2\Omega^2 - 1\).
+
+The idea is that in the passband the attenuation is periodic and stays more or less constant, and in the stopband the function is no longer periodic and damps the frequencies. To find the parameter \(e\) given an \(A_\text{max}\)
+\[
+ e = \sqrt{10^{A_\text{max}/10} - 1},
+\]
+and to find the order given two parameters
+\[
+ n = \left\lceil \frac{
+ \arccosh\sqrt{
+ \frac{10^{A_\text{min}/10} -1}{10^{A_\text{max}}-1}
+ }
+ }{
+ \arccosh(\Omega_S/\Omega_D)
+ } \right\rceil.
+\]
+
+\paragraph{Chebyshev II} Also known as \emph{inverse} Chebyshev. Let \(K(\Omega^2) = 1/e^2 C_n^2(1/\Omega)\).
+
+\paragraph{Cauer}
+
% vim:ts=2 sw=2 et: