BowTieNormal#

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

Manages a bowtie antenna.

This class is accessible through the Hfss object [1].

Parameters:
frequencyfloat, optional

Center frequency. The default is 10.0.

frequency_unitstr, optional

Frequency units. The default is "GHz".

materialstr, optional

Substrate material. If a material is not defined, a new material, parametrized, is defined. The default is "FR4_epoxy".

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".

substrate_heightfloat, optional

Substrate height. The default is 1.575.

parametrizedbool, optional

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

Returns:
aedt.toolkits.antenna.BowTie

Bowtie antenna object.

Notes

[1]

C. Balanis, “Wideband and Travelling-Wave Antennas,” Modern Antenna Handbook, New York, 2008.

Examples

>>> from ansys.aedt.toolkits.antenna.backend.antenna_models.bowtie import BowTieNormal
>>> import ansys.aedt.core
>>> app = ansys.aedt.core.Hfss()
>>> oantenna1 = BowTieNormal(app)
>>> oantenna1.frequency = 12.0
>>> oantenna1.model_hfss()
>>> oantenna1.setup_hfss()
>>> oantenna2 = BowTieNormal(app, origin=[200, 50, 0])
>>> oantenna2.model_hfss()
>>> oantenna2.setup_hfss()
>>> app.release_desktop(False, False)

Methods

BowTieNormal.create_3dcomponent([...])

Create a 3D component of the antenna.

BowTieNormal.create_lattice_pair([...])

Create a lattice pair box.

BowTieNormal.duplicate_along_line(vector[, ...])

Duplicate the object along a line.

BowTieNormal.init_model()

Create a radiation boundary.

BowTieNormal.model_disco()

Model the bowtie antenna in PyDiscovery.

BowTieNormal.model_hfss()

Draw a bowtie antenna.

BowTieNormal.set_variables_in_hfss([not_used])

Create HFSS design variables.

BowTieNormal.setup_disco()

Set up the model in PyDiscovery.

BowTieNormal.setup_hfss()

Set up an antenna in HFSS.

BowTieNormal.synthesis()

Antenna synthesis.

BowTieNormal.update_synthesis_parameters(...)

Update the synthesis parameter from the antenna list.

Attributes

BowTieNormal.antenna_type

BowTieNormal.coordinate_system

Reference coordinate system.

BowTieNormal.frequency

Center frequency.

BowTieNormal.frequency_unit

Frequency units.

BowTieNormal.length_unit

Length unit.

BowTieNormal.material

Substrate material.

BowTieNormal.material_properties

Substrate material properties.

BowTieNormal.name

Antenna name.

BowTieNormal.origin

Antenna origin.

BowTieNormal.outer_boundary

Outer boundary.

BowTieNormal.substrate_height

Substrate height.