From 278790864088c3a55d9306ed5688c0f7ab5040ee Mon Sep 17 00:00:00 2001 From: Jan Petykiewicz Date: Mon, 26 Aug 2019 00:21:39 -0700 Subject: [PATCH] Add E variants of waveguide equations rename 2d vector from v to e_xy or h_xy --- meanas/fdfd/waveguide.py | 1 + 1 file changed, 1 insertion(+) diff --git a/meanas/fdfd/waveguide.py b/meanas/fdfd/waveguide.py index 91b023c..611cb57 100644 --- a/meanas/fdfd/waveguide.py +++ b/meanas/fdfd/waveguide.py @@ -17,6 +17,7 @@ As the z-dependence is known, all the functions in this file assume a 2D grid (ie. dxes = [[[dx_e_0, dx_e_1, ...], [dy_e_0, ...]], [[dx_h_0, ...], [dy_h_0, ...]]]) with propagation along the z axis. """ +# TODO update module docs from typing import List, Tuple import numpy