Skip to content

Commit 32a8d5d

Browse files
authored
Merge pull request #106 from stevengj/patch-2
minor updates to EM scattering tutorial
2 parents 9104ff8 + 025a5f5 commit 32a8d5d

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

src/emscatter.jl

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# In this tutorial, we will learn:
22
#
33
# * How to formulate the weak form for a scalar time-harmonic electromagnetic problem
4-
# * How to implement perfectly matched layers (PML)
5-
# * How does periodic boundary condition work in Gridap
6-
# * How to discretize PDEs with complex-valued solution
4+
# * How to implement a perfectly matched layer (PML) to absorb outgoing waves
5+
# * How to impose periodic boundary conditions in Gridap
6+
# * How to discretize PDEs with complex-valued solutions
77
#
88
# ## Problem statement
99
#
10-
# We are going to solve a scalar electromagnetic wave scattering problem: a plane wave (Hz-polarized $H_{inc}$) scattering of a cylinder dielectric (of radius $R$ and permittivity $\varepsilon$), as illustrated below. The computational cell is of height $H$ and length $L$, and we designate a perfectly matched layer (PML) thickness of $d_{pml}$.
10+
# We are going to solve a scalar electromagnetic wave scattering problem: a plane wave (Hz-polarized $H_{inc}$) scattering of a dielectric cylinder (of radius $R$ and permittivity $\varepsilon$), as illustrated below. The computational cell is of height $H$ and length $L$, and we employ a perfectly matched layer (PML) thickness of $d_{pml}$ to implement outgoing (radiation) boundary conditions for this finite domain.
1111
#
1212
# ![](../assets/emscatter/Illustration.png)
1313
#
@@ -312,14 +312,14 @@ Difference=sqrt(sum(∫(abs2(uh_t-uh)*AnalyticalBox)*dΩ)/sum(∫(abs2(uh_t)*Ana
312312
@assert Difference < 0.1
313313
#
314314
# ## References
315-
# [1] https://en.wikipedia.org/wiki/Electromagnetic_wave_equation
315+
# [1] [Wikipedia: Electromagnetic wave equation](https://en.wikipedia.org/wiki/Electromagnetic_wave_equation)
316316
#
317-
# [2] https://en.wikipedia.org/wiki/Perfectly_matched_layer
317+
# [2] [Wikipedia: Perfectly matched layer](https://en.wikipedia.org/wiki/Perfectly_matched_layer)
318318
#
319-
# [3] A. Oskooi and S. G. Johnson, “Distinguishing correct from incorrect PML proposals and a corrected unsplit PML for anisotropic, dispersive media,” Journal of Computational Physics, vol. 230, pp. 2369–2377, April 2011.
319+
# [3] A. Oskooi and S. G. Johnson, “[Distinguishing correct from incorrect PML proposals and a corrected unsplit PML for anisotropic, dispersive media](http://math.mit.edu/~stevenj/papers/OskooiJo11.pdf),” Journal of Computational Physics, vol. 230, pp. 2369–2377, April 2011.
320320
#
321321
# [4] Stratton, J. A. (1941). Electromagnetic Theory. New York: McGraw-Hill.
322322
#
323-
# [5] https://en.wikipedia.org/wiki/Jacobi%E2%80%93Anger_expansion
323+
# [5] [Wikipedia: Jacobi–Anger expansion](https://en.wikipedia.org/wiki/Jacobi%E2%80%93Anger_expansion)
324324
#
325-
# [6] https://en.wikipedia.org/wiki/Bessel_function
325+
# [6] [Wikipedia: Bessel function](https://en.wikipedia.org/wiki/Bessel_function)

0 commit comments

Comments
 (0)