idaholab / moose

Multiphysics Object Oriented Simulation Environment
https://www.mooseframework.org
GNU Lesser General Public License v2.1
1.67k stars 1.03k forks source link

EM Module: Generalized reflection and scattering problems #21075

Open moosebuild opened 2 years ago

moosebuild commented 2 years ago

Imported from idaholab/elk#3 by @cticenhour at May 30, 2018 12:10PM MST

Mentioned merge requests:


Rationale

Antenna problems will require a more general reflection and scattering model than has been created so far (in JinSlab1D). This should be included in Elk.

Description

This will require a rework of the boundary and interface conditions currently developed for 1-D, as well as test benchmarks. Resources for this would include mostly Jin texts:

  1. The Finite Element Method in Electromagnetics, 3rd Edition
  2. Theory and Computation of Electromagnetic Fields
  3. Finite Element Analysis of Antennas and Arrays

Impact

New capability for future antenna problems.

moosebuild commented 2 years ago

Imported from idaholab/elk#3 by @cticenhour at May 23, 2019 10:33AM MST


Additionally, the more general interface conditions derived naturally from Maxwell's (as shown in Introduction to Electrodynamics, 3rd Edition by David Griffiths in Section 7.3, pg 333), could/should be more useful than those in Jin's texts, which could be considered more specific. I need to explore this difference more.

Maxwells general conditions between two materials (1 and 2) are:

  1. eps_1 E_1_perpendicular - eps_2 E_2_perpendicular = sigma_f
  2. E_1_parallel - E_2_parallel = 0
  3. B_1_perpendicular - B_2_perpendicular = 0
  4. (1 / _mu_1) B_1_parallel - (1 / _mu_2) B_2_parallel = K_f x normal

where:

  1. eps is the material permittivity
  2. mu is the material magnetic permeability
  3. sigma_f is the free charge on the interface
  4. K_f is the free current on the interface

(7) and (8) are zero on a dielectric interface, but non-zero for conductors.