PyramidalRidged#

class ansys.aedt.toolkits.antenna.backend.antenna_models.horn.PyramidalRidged(*args, **kwargs)[source]#

Manages a pyramidal ridged horn antenna.

This class is accessible through the app hfss object [1].

Parameters:
frequencyfloat, optional

Center frequency. The default is 10.0.

frequency_unitstr, optional

Frequency units. The default is "GHz".

materialstr, optional

Horn material. If a material is not defined, a new material, parametrized, is defined. The default is "pec".

outer_boundarystr, optional

Boundary type to use. The default is None. Options are "FEBI", "PML", "Radiation", and None.

length_unitstr, optional

Length units. The default is "mm".

parametrizedbool, optional

Whether to create a parametrized antenna. The default is True.

Returns:
aedt.toolkits.antenna.PyramidalRidged

Pyramidal ridged horn object.

Notes

[1]

C. Balanis, “Aperture Antennas: Analysis, Design, and Applications,” Modern Antenna Handbook, New York, 2008.

Examples

>>> from ansys.aedt.toolkits.antenna.backend.antenna_models.horn import PyramidalRidged
>>> import ansys.aedt.core
>>> app = ansys.aedt.core.Hfss()
>>> oantenna1 = PyramidalRidged(app)
>>> oantenna1.frequency = 12.0
>>> oantenna1.model_hfss()
>>> oantenna1.setup_hfss()
>>> oantenna2 = PyramidalRidged(app, origin=[0.2, 0.5, 0])
>>> oantenna2.model_hfss()
>>> oantenna2.setup_hfss()
>>> app.release_desktop(False, False)

Methods

PyramidalRidged.create_3dcomponent([...])

Create a 3D component of the antenna.

PyramidalRidged.create_lattice_pair([...])

Create a lattice pair box.

PyramidalRidged.duplicate_along_line(vector)

Duplicate the object along a line.

PyramidalRidged.init_model()

Create a radiation boundary.

PyramidalRidged.model_disco()

Model in PyDiscovery.

PyramidalRidged.model_hfss()

Draw conical horn antenna.

PyramidalRidged.set_variables_in_hfss([not_used])

Create HFSS design variables.

PyramidalRidged.setup_disco()

Set up model in PyDiscovery.

PyramidalRidged.setup_hfss()

Set up an antenna in HFSS.

PyramidalRidged.synthesis()

Antenna synthesis.

PyramidalRidged.update_synthesis_parameters(...)

Update the synthesis parameter from the antenna list.

Attributes