Skip to content

Commit d35a9a3

Browse files
Move to top level to visualise relatonships
1 parent 418c37c commit d35a9a3

31 files changed

+27
-44
lines changed

tidy3d/components/microwave/__init__.py

Lines changed: 0 additions & 43 deletions
This file was deleted.

tidy3d/microwave/__init__.py

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
"""Imports from microwave plugin."""
2+
3+
from __future__ import annotations
4+
5+
from tidy3d.components.microwave import models
6+
from tidy3d.components.microwave.array_factor import (
7+
RectangularAntennaArrayCalculator,
8+
)
9+
from tidy3d.microwave.lobe_measurer import LobeMeasurer
10+
11+
__all__ = [
12+
"AxisAlignedPathIntegral",
13+
"CurrentIntegralAxisAligned",
14+
"CurrentIntegralTypes",
15+
"CustomCurrentIntegral2D",
16+
"CustomPathIntegral2D",
17+
"CustomVoltageIntegral2D",
18+
"ImpedanceCalculator",
19+
"LobeMeasurer",
20+
"RectangularAntennaArrayCalculator",
21+
"VoltageIntegralAxisAligned",
22+
"VoltageIntegralTypes",
23+
"models",
24+
"path_integrals_from_lumped_element",
25+
"rf_material_library",
26+
]

0 commit comments

Comments
 (0)