|
8 | 8 | "source": [ |
9 | 9 | "# Note on the derivation of the reflection and transmission coefficents in\n", |
10 | 10 | "Formulation for stable and efficient implementation of the rigorous coupled-wave analysis of binary gratings\n", |
11 | | - "M. G. Moharam, Eric B. Grann, Drew A. Pommet, and T. K. Gaylord </br>\n", |
| 11 | + "M. G. Moharam, Eric B. Grann, Drew A. Pommet, and T. K. Gaylord <br>\n", |
12 | 12 | "\n", |
13 | 13 | "The final step in this paper seems straightforward but is actually non-trivial to work out to get the final working RCWA code" |
14 | 14 | ] |
|
19 | 19 | "source": [ |
20 | 20 | "We start with a system of four equations:\n", |
21 | 21 | "\n", |
22 | | - "$\\begin{align}\n", |
| 22 | + "$\\begin{align*}\n", |
23 | 23 | "\\begin{bmatrix}\n", |
24 | 24 | "\\delta_{i0} \\\\ jn_Icos(\\theta)\\delta_{i0}\n", |
25 | 25 | "\\end{bmatrix} +\n", |
|
46 | 46 | "c^{+} \\\\\n", |
47 | 47 | "c^{-} \\\\\n", |
48 | 48 | "\\end{bmatrix}\n", |
49 | | - "\\end{align}$\n", |
| 49 | + "\\end{align*}$\n", |
50 | 50 | "\n", |
51 | 51 | "This is the original form written in the paper, but it is more transparent to write them out so you see all four equations\n", |
52 | 52 | "\n", |
53 | 53 | "$\n", |
54 | | - "\\begin{align}\n", |
| 54 | + "\\begin{align*}\n", |
55 | 55 | "\\delta_{i0} + R &= Wc^{+}+WXc^{-} &(1)\\\\\n", |
56 | 56 | "jn_{I}cos(\\theta) -jY_IR &= Vc^{+}-VXc^{-} &(2)\\\\\n", |
57 | 57 | "T &= WXc^{+} + Wc^{-} &(3)\\\\\n", |
58 | 58 | "jY_{II} &= VXc^{+} - Vc^{-} &(4)\n", |
59 | | - "\\end{align}\n", |
| 59 | + "\\end{align*}\n", |
60 | 60 | "$" |
61 | 61 | ] |
62 | 62 | }, |
|
78 | 78 | "Now we can solve $c^{+}$ using the expression (3) and (4)\n", |
79 | 79 | "\n", |
80 | 80 | "$\n", |
81 | | - "\\begin{align}\n", |
| 81 | + "\\begin{align*}\n", |
82 | 82 | "jY_{II}T &= VXC^+ -V(W^{-1}(T-WXC^+)) \\\\\n", |
83 | 83 | "jY_{II}T &= VXC^+ -VW^{-1}T+VW^{-1}WXC^+ \\\\\n", |
84 | 84 | "&=(VX+VX)c^+ -VW^{-1}T \\\\\n", |
85 | 85 | "2VXc^+ &= jY_{II}T + VW^{-1}T \\\\\n", |
86 | 86 | "c^+ &= 0.5X^{-1}V^{-1}(jY_{II}T + VW^{-1}T) \\\\\n", |
87 | 87 | "&= 0.5X^{-1}V^{-1}(jY_{II} + VW^{-1})T \\\\\n", |
88 | 88 | "&= 0.5X^{-1}(W^{-1} + jV^{-1}Y_{II})T \\\\\n", |
89 | | - "\\end{align}\n", |
| 89 | + "\\end{align*}\n", |
90 | 90 | "$" |
91 | 91 | ] |
92 | 92 | }, |
|
95 | 95 | "source": [ |
96 | 96 | "We can substitute this back into the expression for $c^{-}$ <br>\n", |
97 | 97 | "$\n", |
98 | | - "\\begin{align}\n", |
| 98 | + "\\begin{align*}\n", |
99 | 99 | "c^{-} &= W^{-1}\\bigg[T - WX\\big( 0.5X^{-1}V^{-1}(jY_{II}+VW^{-1})T\\big)\\bigg]\\\\\n", |
100 | 100 | "&= W^{-1}\\bigg[T - 0.5WV^{-1}(jY_{II}+VW^{-1})T\\bigg] \\\\\n", |
101 | 101 | "&= W^{-1}T - 0.5V^{-1}(jY_{II}+VW^{-1})T \\\\\n", |
102 | 102 | "&= W^{-1}T - 0.5(V^{-1}jY_{II}+W^{-1})T \\\\\n", |
103 | 103 | "&= 0.5W^{-1}T - 0.5V^{-1}jY_{II}T \\\\\n", |
104 | 104 | "&= 0.5(W^{-1} -jV^{-1}Y_{II})T\n", |
105 | | - "\\end{align}\n", |
| 105 | + "\\end{align*}\n", |
106 | 106 | "$" |
107 | 107 | ], |
108 | 108 | "metadata": { |
|
115 | 115 | "#### Now we mark the steps that substitutes our expressions above into the reflection equations\n", |
116 | 116 | "First we rewrite the two reflection equations: <br>\n", |
117 | 117 | "$\n", |
118 | | - "\\begin{align}\n", |
| 118 | + "\\begin{align*}\n", |
119 | 119 | "\\delta_{i0} + R &= Wc^{+}+WXc^{-} \\\\\n", |
120 | 120 | "jn_{I}cos(\\theta) -jY_IR &= Vc^{+}-VXc^{-}\n", |
121 | | - "\\end{align}\n", |
| 121 | + "\\end{align*}\n", |
122 | 122 | "$\n", |
123 | 123 | "\n", |
124 | 124 | "Now we begin substitution:<br>\n", |
125 | 125 | "$\n", |
126 | | - "\\begin{align}\n", |
| 126 | + "\\begin{align*}\n", |
127 | 127 | "\\begin{matrix}\n", |
128 | 128 | "\\delta_{i0} + R = W\\bigg(0.5X^{-1}(W^{-1} +jV^{-1}Y_{II})T \\bigg)+WX\\bigg(0.5(W^{-1} -jV^{-1}Y_{II})T \\bigg) \\\\\n", |
129 | 129 | "jn_{I}cos(\\theta) -jY_IR = V\\bigg(0.5X^{-1}(W^{-1} +jV^{-1}Y_{II})T \\bigg)-VX\\bigg(0.5(W^{-1} -jV^{-1}Y_{II})T \\bigg) \\\\\n", |
130 | 130 | "\\vdots\n", |
131 | 131 | "\\end{matrix}\n", |
132 | | - "\\end{align}\n", |
| 132 | + "\\end{align*}\n", |
133 | 133 | "$" |
134 | 134 | ], |
135 | 135 | "metadata": { |
|
0 commit comments