enable_adaptive_setup_broadband#
- SetupHFSS.enable_adaptive_setup_broadband(low_frequency: float | str, high_frequency: float | str, max_passes: int = 6, max_delta_s: float = 0.02) bool#
Enable HFSS broadband setup.
- Parameters:
- low_frequency
float,str Lower Frequency at which set the adaptive convergence. It can be float (GHz) or str.
- high_frequency
float,str Lower Frequency at which set the adaptive convergence. It can be float (GHz) or str.
- max_passes
int,optional Maximum number of adaptive passes. The default is
6.- max_delta_s
float,optional Delta S Convergence criteria. The default is
0.02.
- low_frequency
- Returns:
- bool
Truewhen successful,Falsewhen failed.
Examples
>>> import ansys.aedt.core >>> hfss = ansys.aedt.core.Hfss() >>> setup1 = hfss.create_setup(name="Setup1") >>> setup1.enable_adaptive_setup_broadband(low_frequency="1GHz", high_frequency="1GHz")