@@ -46,27 +46,27 @@ If it is desired to only solve for the 2D port mode, one can use the ``to_mode_s
4646 :toctree: ../_autosummary/
4747 :template: module.rst
4848
49- tidy3d.plugins.microwave.VoltageIntegralAxisAligned
50- tidy3d.plugins.microwave.CurrentIntegralAxisAligned
51- tidy3d.plugins.microwave.CustomVoltageIntegral2D
52- tidy3d.plugins.microwave.CustomCurrentIntegral2D
49+ tidy3d.plugins.microwave.AxisAlignedVoltageIntegral
50+ tidy3d.plugins.microwave.AxisAlignedCurrentIntegral
51+ tidy3d.plugins.microwave.Custom2DVoltageIntegral
52+ tidy3d.plugins.microwave.Custom2DCurrentIntegral
5353 tidy3d.plugins.microwave.AxisAlignedPathIntegral
54- tidy3d.plugins.microwave.CustomPathIntegral2D
54+ tidy3d.plugins.microwave.Custom2DPathIntegral
5555 tidy3d.plugins.microwave.ImpedanceCalculator
5656
5757The classes above are used to define the voltage/current integration paths for impedance calculation.
5858
5959.. code-block :: python
6060
6161 # Define voltage integration line
62- my_voltage_integral = VoltageIntegralAxisAligned (
62+ my_voltage_integral = AxisAlignedVoltageIntegral (
6363 center = (0 ,0 ,0 ), # center of integration line
6464 size = (5 , 0 , 0 ), # length of integration line
6565 sign = ' +' , # sign of integral
6666 )
6767
6868 # Define current integration loop
69- my_current_integral = CurrentIntegralAxisAligned (
69+ my_current_integral = AxisAlignedCurrentIntegral (
7070 center = (0 ,0 ,0 ), # center of integration loop
7171 size = (20 , 20 , 0 ), # size of integration loop
7272 sign = ' +' , # sign of integral (should match wave port direction)
0 commit comments