EPlane#
- class ansys.aedt.toolkits.antenna.backend.antenna_models.horn.EPlane(*args, **kwargs)[source]#
- Manages an E plane 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.
 
- frequency
- Returns:
- aedt.toolkits.antenna.EPlaneHorn
- E plane 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 EPlane >>> import ansys.aedt.core >>> app = ansys.aedt.core.Hfss() >>> oantenna1 = EPlane(app) >>> oantenna1.frequency = 12.0 >>> oantenna1.model_hfss() >>> oantenna1.setup_hfss() >>> oantenna2 = EPlane(app, origin=[0.2, 0.5, 0]) >>> oantenna2.model_hfss() >>> oantenna2.setup_hfss() >>> app.release_desktop(False, False) - Methods - EPlane.create_3dcomponent([component_file, ...])- Create a 3D component of the antenna. - EPlane.create_lattice_pair([lattice_height, ...])- Create a lattice pair box. - EPlane.duplicate_along_line(vector[, num_clones])- Duplicate the object along a line. - Create a radiation boundary. - Model in PyDiscovery. - Draw E plane horn antenna. - EPlane.set_variables_in_hfss([not_used])- Create HFSS design variables. - Set up model in PyDiscovery. - Set up an antenna in HFSS. - Antenna synthesis. - EPlane.update_synthesis_parameters(new_params)- Update the synthesis parameter from the antenna list. - Attributes - Reference coordinate system. - Center frequency. - Frequency units. - Length unit. - Horn material. - Substrate material properties. - Antenna name. - Antenna origin. - Outer boundary. 
 
    