HFSSGeneralSettings#
- class pyedb.grpc.database.simulation_setup.hfss_general_settings.HFSSGeneralSettings(pedb, core: ansys.edb.core.simulation_setup.hfss_simulation_settings.HFSSGeneralSettings)#
PyEDB-core HFSS general settings class.
Overview#
Adaptation type. |
|
Adaptive solution type. |
|
Settings for a broadband adaptive solution. |
|
Name of the mesh region to use. |
|
Indicates whether to save fields. |
|
Indicates whether to save radiation field only. |
|
Indicates whether to save radiation fields only. |
|
Indicates whether to use a mesh region. |
|
Indicates whether to use parallel refinement. |
|
Maximum refinement per pass. |
|
Minimum number of passes. |
|
Indicates whether to use maximum refinement. |
Import detail#
from pyedb.grpc.database.simulation_setup.hfss_general_settings import HFSSGeneralSettings
Property detail#
- property HFSSGeneralSettings.adapt_type: str#
Adaptation type.
- ..deprecated:: 0.67.0
This property is deprecated and will be removed in future versions. Attribute added for dotnet compatibility. Use
adaptive_solution_typeinstead.
- property HFSSGeneralSettings.adaptive_solution_type: str#
Adaptive solution type.
- Returns:
strAdaptive solution type name. Returned values are single, multi_frequencies, broad_band, or num_adapt_type.
- property HFSSGeneralSettings.broadband_adaptive_solution: BroadbandAdaptiveSolution#
Settings for a broadband adaptive solution.
- Returns:
- :class:`HFSSBroadbandAdaptiveSolution
` Broadband adaptive solution settings object.
- property HFSSGeneralSettings.mesh_region_name: str#
Name of the mesh region to use.
- Returns:
strMesh region name.
- property HFSSGeneralSettings.multi_frequency_adaptive_solution: MultiFrequencyAdaptiveSolution#
- property HFSSGeneralSettings.save_fields: bool#
Indicates whether to save fields.
- Returns:
- bool
True if fields are to be saved, False otherwise.
- property HFSSGeneralSettings.save_rad_field_only: bool#
Indicates whether to save radiation field only.
Deprecated since version 0.67.0: This property is deprecated and will be removed in future versions. Use
save_rad_fields_onlyinstead.
- property HFSSGeneralSettings.save_rad_fields_only: bool#
Indicates whether to save radiation fields only.
- Returns:
- bool
True if only radiation fields are to be saved, False otherwise.
- property HFSSGeneralSettings.single_frequency_adaptive_solution#
- property HFSSGeneralSettings.use_mesh_region: bool#
Indicates whether to use a mesh region.
- Returns:
- bool
True if a mesh region is used, False otherwise.
- property HFSSGeneralSettings.use_parallel_refinement: bool#
Indicates whether to use parallel refinement.
- Returns:
- bool
True if parallel refinement is used, False otherwise.
- property HFSSGeneralSettings.max_refine_per_pass: float#
Maximum refinement per pass.
Deprecated since version 0.67.0.
This property is deprecated and will be removed in future versions. use settings.options.max_refinement_per_pass instead.
Attribute detail#
- HFSSGeneralSettings.core#