AdaptiveFrequency#

class pyedb.grpc.database.simulation_setup.adaptive_frequency.AdaptiveFrequency(core: ansys.edb.core.simulation_setup.adaptive_solutions.AdaptiveFrequency)#

PyEDB Adaptive Frequency class.

Overview#

add_output_variable

Add an output variable with its maximum delta S.

adaptive_frequency

Get the adaptive frequency value.

max_delta

Get the maximum delta value.

output_variables

Map of output variable names to maximum delta S.

Import detail#

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

Property detail#

property AdaptiveFrequency.adaptive_frequency: float#

Get the adaptive frequency value.

Returns:
float

Adaptive frequency value.

property AdaptiveFrequency.max_delta#

Get the maximum delta value.

Returns:
float

Maximum delta value.

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

Map of output variable names to maximum delta S.

Attribute detail#

AdaptiveFrequency.core#

Method detail#

AdaptiveFrequency.add_output_variable(variable_name: str, max_delta_s: float)#

Add an output variable with its maximum delta S.

Parameters:
variable_namestr

Name of the output variable.

max_delta_sfloat

Maximum delta S for the output variable.