AdaptiveFrequency#

class pyedb.grpc.database.simulation_setup.hfss_general_settings.AdaptiveFrequency(pedb, core)#

Overview#

add_output_variable

Add an output variable for the adaptive frequency.

delete_output_variable

Delete an output variable from the adaptive frequency.

adaptive_frequency

Adaptive frequency value.

max_delta

Maximum delta for the adaptive frequency.

output_variables

Map of output variable names to maximum delta S.

Import detail#

from pyedb.grpc.database.simulation_setup.hfss_general_settings import AdaptiveFrequency

Property detail#

property AdaptiveFrequency.adaptive_frequency: str#

Adaptive frequency value.

Returns:
float

Adaptive frequency in Hz.

property AdaptiveFrequency.max_delta: str#

Maximum delta for the adaptive frequency.

Returns:
float

Maximum delta value.

property AdaptiveFrequency.output_variables: dict[str, float]#

Map of output variable names to maximum delta S.

Returns:
dict[str, float]

Dictionary of output variable names and delta S value.

Attribute detail#

AdaptiveFrequency.core#

Method detail#

AdaptiveFrequency.add_output_variable(name: str, delta_s: float)#

Add an output variable for the adaptive frequency.

Parameters:
namestr

Name of the output variable.

delta_sfloat

Delta S value.

AdaptiveFrequency.delete_output_variable(name: str) bool#

Delete an output variable from the adaptive frequency.

Parameters:
namestr

Name of the output variable to delete.

Returns:
bool