aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Kummerlaender2018-03-01 14:39:20 +0100
committerAdrian Kummerlaender2018-03-01 14:39:20 +0100
commit65accaf8e4b7814a136afc15762c9e2d02bd1e33 (patch)
treea683b72ceb50b152a32c0dd6467c2b7985cda8e7
parent0f570cf722e40b7aeb5d18efac071b1c93de8850 (diff)
downloadmath_reference_sheets-65accaf8e4b7814a136afc15762c9e2d02bd1e33.tar
math_reference_sheets-65accaf8e4b7814a136afc15762c9e2d02bd1e33.tar.gz
math_reference_sheets-65accaf8e4b7814a136afc15762c9e2d02bd1e33.tar.bz2
math_reference_sheets-65accaf8e4b7814a136afc15762c9e2d02bd1e33.tar.lz
math_reference_sheets-65accaf8e4b7814a136afc15762c9e2d02bd1e33.tar.xz
math_reference_sheets-65accaf8e4b7814a136afc15762c9e2d02bd1e33.tar.zst
math_reference_sheets-65accaf8e4b7814a136afc15762c9e2d02bd1e33.zip
Add section on stencils to NumaDGL digest
-rw-r--r--content/numerik_dgl.tex10
1 files changed, 10 insertions, 0 deletions
diff --git a/content/numerik_dgl.tex b/content/numerik_dgl.tex
index 81826fc..331ba77 100644
--- a/content/numerik_dgl.tex
+++ b/content/numerik_dgl.tex
@@ -478,3 +478,13 @@ $$\forall v \in \mathcal{C}^\infty(\Omega) : \|I_h^o Lv - L_h I_h v\|_h \leq C h
Norm $\|\cdot\|_{h,\infty}$ auf $V_h$ ist def.: $\|v_h\|_{h,\infty} := \displaystyle\max_{x \in \mathcal{G}_h} |v_h(x)|$
\subsubsection*{Differenzensterne}
+
+Für $S := \{ e \in \Z^d | |e|_\infty \leq 1 \}$ können diskrete Operatoren dargestellt werden als:
+
+$$L_h v_h(x) = \sum_{e \in S} a_e(x) v_h(x+he)$$
+
+\emph{Stencil} für $d=1$: $\begin{bmatrix} a_{-1}(x) & a_0(x) & a_1(x) \end{bmatrix}$.
+
+z.B. der diskrete Laplace-Operator in $d \in \{ 1, 2 \}$:
+
+$\Delta_h = \frac{1}{h^2} \begin{bmatrix} 1 & -2 & 1 \end{bmatrix}$ bzw. $\Delta_h = \frac{1}{h^2} \begin{bmatrix} 0 & 1 & 0 \\ 1 & -4 & 1 \\ 0 & 1 & 0 \end{bmatrix}$