Difference between revisions of "Electromagnetic scattering"

From Medusa: Coordinate Free Mehless Method implementation
Jump to: navigation, search
Line 64: Line 64:
 
   \frac{\partial v}{\partial n_A\!\!\!} = n \cdot A \nabla {v}.
 
   \frac{\partial v}{\partial n_A\!\!\!} = n \cdot A \nabla {v}.
 
\end{equation*}
 
\end{equation*}
 +
 +
The system is implemented below
 +
 +
<syntaxhighlight lang="c++" line>
 +
    for (int i : inner.interior()) {
 +
        //Wave eq on the inner circle
 +
        //(mxx*v_xx + myy*v_yy + mxy*v_xy + myx*v_yx) + k0^2*er*v = 0
 +
        mxx * op_inner.der2(i, 0, 0) + myy * op_inner.der2(i, 1, 1) +
 +
        (mxy + myx) * op_inner.der2(i, 0, 1)
 +
        + k0 * k0 * er * op_inner.value(i) = 0;
 +
    }
 +
    for (int i : inner.boundary()) {
 +
        //dirichlet, u_inside - u_scattered = u_incident <- incoming wave from t0 angle
 +
        double x = inner.pos(i, 0);
 +
        double y = inner.pos(i, 1);
 +
        double theta = atan2(y, x); // get phase
 +
 +
        // in the upper side of the matrix
 +
        std::complex<double> incident = std::exp(1.0i * k0 * (x * std::cos(t0) + y * std::sin(t0)));
 +
        op_inner.value(i) + (-1) * op_outer.value(inner_bnd[i], N_outer + i) = incident;
 +
 +
        // Neumann boundary condition on the inside circle
 +
        auto norm = inner.normal(i);
 +
        double n0 = norm[0];
 +
        double n1 = norm[1];
 +
 +
        // Anisotropic normal derivative
 +
        // (n0*mxx+n1*myx)*v_x + (n0*mxy+n1*myy)*v_y + du/dn = d(incident)/dn
 +
        op_outer.neumann(inner_bnd[i], outer.normal(inner_bnd[i]))
 +
        + (n0 * mxx + n1 * myx) * op_inner.der1(i, 0, -N_outer + inner_bnd[i])
 +
        + (n0 * mxy + n1 * myy) * op_inner.der1(i, 1, -N_outer + inner_bnd[i])
 +
                = 1.0i * k0 * std::cos(theta - t0) *
 +
                  std::exp(1.0i * k0 * (x * std::cos(t0) + y * std::sin(t0)));
 +
    }
 +
    for (int i : outer.interior()) {
 +
        // wave equation for the outer region
 +
        op_outer.lap(i) + k0 * k0 * op_outer.value(i) = 0;
 +
    }
 +
    for (int i : outer_bnd) {
 +
        // Sommerfeld boundary condition
 +
        op_outer.neumann(i, outer.normal(i)) + (k0 * 1.0i + 1 / (2 * r2)) * op_outer.value(i) = 0.0;
 +
    }
 +
</syntaxhighlight>
 +
 +
Solving the system gives the complex valued solution to both fields.
 +
 +
<gallery>
 +
File:ImagInsideField.png
 +
File:ImagOutsideField.png
 +
File:InsideField.png
 +
File:OutsideField.png
 +
File:RealInsideField.png
 +
File:RealOutsideField.png
 +
</gallery>

Revision as of 20:05, 18 April 2019

In this example we will show how to solve an electromagnetic scattering problem in Medusa. The example uses both complex numbers as well as domain coupling, so we recommend firstly reading tutorials on Coupled domains and Complex-valued problems.

Anisotropic cylinder

Let us first quickly derive the problem we are about to solve. Beginning with the electromagnetic wave equation in anisotropic media

\[ \label{eq:frekaniwave} \nabla \times \left( \underline{\varepsilon}^{-1} \nabla \times \boldsymbol{H} \right) = \omega^2 \mu_0 \varepsilon_0 \underline{\mu} \boldsymbol{H}, \] where \(\underline{\varepsilon}\) is the relative dielectric tensor, and \(\underline{\mu}\) is the magnetic permeability tensor of the anisotropic material

\[ \label{eq:relepsmi} \underline{\varepsilon} = \begin{pmatrix} \varepsilon_{xx} & \varepsilon_{xy} & \varepsilon_{xz} \\ \varepsilon_{yx} & \varepsilon_{yy} & \varepsilon_{yz} \\ \varepsilon_{zx} & \varepsilon_{zy} & \varepsilon_{zz} \end{pmatrix} , \qquad \underline{\mu} = \begin{pmatrix} \mu_{xx} & \mu_{xy} & \mu_{xz} \\ \mu_{yx} & \mu_{yy} & \mu_{yz} \\ \mu_{zx} & \mu_{zy} & \mu_{zz} \end{pmatrix}. \]

Let $D \subset \R^2$ be the cross section of an infinitely long anisotropic dielectric cylindrical scatterer with its axis alligned with the $z$-axis, surrounded by a free space, with an outward normal $n$ on boundary $\partial D$. The cylinder is isotropic along its axis, and is excited by an $e^{i \omega t}$ time-harmonic plane wave with $\b{TM}^z$ polarization, with $\omega$ standing for its angular frequency. Let $v \in C^2(\C)$ denote the complex valued field inside the scatterer and $u \in C^2(\C)$ the field outside of the scatterer. Field $u$ can be further decomposed into the incident $u^i$ and the scattered field $u^s$.

ScatteringDiagram.png

The fields $u^s$ and $v$ must satisfy the set of PDE \begin{align*} \nabla \cdot A \nabla v + \epsilon_r k^2 \thinspace v = 0 \qquad &\text{in} \quad D \label{eq:inner} \\ \nabla^2 u^s + k^2 \thinspace u^s = 0 \qquad &\text{in} \quad \Omega \setminus D \label{eq:outer} \end{align*} with boundary conditions \begin{align*} v - u^s =u^i \qquad &\text{on} \quad \partial D \label{eq:BC1} \\ \frac{\partial v}{\partial n_A\!\!\!} - \frac{\partial u^s}{\partial n} = \frac{\partial u^i}{\partial n} \qquad &\text{on} \quad \partial D \label{eq:BC2} \\ \frac{\partial u^s}{\partial n} + \left( ik + \frac{1}{2r_2} \right)u^s = 0 \quad &\text{on} \quad \partial \Omega \end{align*} where $k = \omega \sqrt{\mu_0 \epsilon_0} = \frac{2 \pi}{\lambda}$ is the wave number of free space, $\mu_0$ and $\epsilon_0$ are magnetic permeability and electric permittivity of free space, while $\epsilon_r$ is the relative electric permittivity of the scatterer. Relative magnetic permeability matrix $A$ is of the following form \begin{equation*} A = \frac{1}{\mu_{xx}\mu_{yy} - \mu_{xy}^2} \begin{pmatrix} \mu_{xx} & \mu_{xy} \\ \mu_{xy} & \mu_{yy} \end{pmatrix} \end{equation*} and the anisotropic normal derivative is calculated as \begin{equation*} \frac{\partial v}{\partial n_A\!\!\!} = n \cdot A \nabla {v}. \end{equation*}

The system is implemented below

 1     for (int i : inner.interior()) {
 2         //Wave eq on the inner circle
 3         //(mxx*v_xx + myy*v_yy + mxy*v_xy + myx*v_yx) + k0^2*er*v = 0
 4         mxx * op_inner.der2(i, 0, 0) + myy * op_inner.der2(i, 1, 1) +
 5         (mxy + myx) * op_inner.der2(i, 0, 1)
 6         + k0 * k0 * er * op_inner.value(i) = 0;
 7     }
 8     for (int i : inner.boundary()) {
 9         //dirichlet, u_inside - u_scattered = u_incident <- incoming wave from t0 angle
10         double x = inner.pos(i, 0);
11         double y = inner.pos(i, 1);
12         double theta = atan2(y, x); // get phase
13 
14         // in the upper side of the matrix
15         std::complex<double> incident = std::exp(1.0i * k0 * (x * std::cos(t0) + y * std::sin(t0)));
16         op_inner.value(i) + (-1) * op_outer.value(inner_bnd[i], N_outer + i) = incident;
17 
18         // Neumann boundary condition on the inside circle
19         auto norm = inner.normal(i);
20         double n0 = norm[0];
21         double n1 = norm[1];
22 
23         // Anisotropic normal derivative
24         // (n0*mxx+n1*myx)*v_x + (n0*mxy+n1*myy)*v_y + du/dn = d(incident)/dn
25         op_outer.neumann(inner_bnd[i], outer.normal(inner_bnd[i]))
26         + (n0 * mxx + n1 * myx) * op_inner.der1(i, 0, -N_outer + inner_bnd[i])
27         + (n0 * mxy + n1 * myy) * op_inner.der1(i, 1, -N_outer + inner_bnd[i])
28                 = 1.0i * k0 * std::cos(theta - t0) *
29                   std::exp(1.0i * k0 * (x * std::cos(t0) + y * std::sin(t0)));
30     }
31     for (int i : outer.interior()) {
32         // wave equation for the outer region
33         op_outer.lap(i) + k0 * k0 * op_outer.value(i) = 0;
34     }
35     for (int i : outer_bnd) {
36         // Sommerfeld boundary condition
37         op_outer.neumann(i, outer.normal(i)) + (k0 * 1.0i + 1 / (2 * r2)) * op_outer.value(i) = 0.0;
38     }

Solving the system gives the complex valued solution to both fields.