Patch#
This page lists the classes available for patch antennas:
|
Manages a rectangular patch edge antenna. |
|
Manages a rectangular patch antenna with a coaxial probe. |
|
Manages a rectangular patch antenna inset fed. |
You must use these methods from PyAEDT as shown in this example:
from ansys.aedt.core import Hfss
from ansys.aedt.toolkits.antenna.backend.antenna_models.patch import (
RectangularPatchEdge,
)
aedtapp = Hfss()
# Create antenna
oantenna1 = RectangularPatchProbe(app)
oantenna1.frequency = 12.0
oantenna1.model_hfss()
oantenna1.setup_hfss()
...
aedtapp.release_desktop()