SimulationSetup#
- class pyedb.workflows.sipi.hfss_auto_configuration.SimulationSetup#
HFSS simulation setup parameters.
This dataclass defines the simulation configuration including meshing frequency, convergence criteria, and frequency sweep settings.
- Attributes:
- meshing_frequency
strorfloat Driven frequency used during mesh generation. The default is
"10GHz".- maximum_pass_number
int Maximum number of adaptive passes. The default is
15.- start_frequency
strorfloat Lower bound of the frequency sweep. The default is
0.- stop_frequency
strorfloat Upper bound of the frequency sweep. The default is
"40GHz".- frequency_step
strorfloat Linear step size for the frequency sweep. The default is
"0.05GHz".
- meshing_frequency
Examples
>>> setup = SimulationSetup(meshing_frequency="5GHz", maximum_pass_number=20, stop_frequency="60GHz") >>> setup.maximum_pass_number 20 >>> setup.stop_frequency '60GHz'
Overview#
Import detail#
from pyedb.workflows.sipi.hfss_auto_configuration import SimulationSetup