Patch#

This page lists the classes available for patch antennas:

RectangularPatchEdge(*args, **kwargs)

Manages a rectangular patch edge antenna.

RectangularPatchProbe(*args, **kwargs)

Manages a rectangular patch antenna with a coaxial probe.

RectangularPatchInset(*args, **kwargs)

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()