SetupHFSS#

class pyaedt.modules.SolveSetup.SetupHFSS(app, solution_type, name='MySetupAuto', is_new_setup=True)[source]#

Initializes, creates, and updates an HFSS setup.

Parameters:
apppyaedt.application.Analysis.Analysis

Inherited app object.

solution_typeint, str

Type of the setup.

namestr, optional

Name of the setup. The default is "MySetupAuto".

is_new_setupbool, optional

Whether to create the setup from a template. The default is True. If False, access is to the existing setup.

Methods

SetupHFSS.add_derivatives(derivative_list)

Add derivatives to the setup.

SetupHFSS.add_mesh_link(design[, solution, ...])

Add a mesh link to another design.

SetupHFSS.add_sweep([name, sweep_type])

Add a sweep to the project.

SetupHFSS.analyze([cores, tasks, gpus, ...])

Solve the active design.

SetupHFSS.create()

Add a new setup based on class settings in AEDT.

SetupHFSS.create_frequency_sweep([unit, ...])

Create a sweep with the specified number of points.

SetupHFSS.create_linear_step_sweep([unit, ...])

Create a Sweep with a specified frequency step.

SetupHFSS.create_report([expressions, ...])

Create a report in AEDT.

SetupHFSS.create_single_point_sweep([unit, ...])

Create a Sweep with a single frequency point.

SetupHFSS.delete()

Delete actual Setup.

SetupHFSS.delete_sweep(name)

Delete a sweep.

SetupHFSS.disable([name])

Disable a setup.

SetupHFSS.enable([name])

Enable a setup.

SetupHFSS.enable_adaptive_setup_broadband(...)

Enable HFSS broadband setup.

SetupHFSS.enable_adaptive_setup_multifrequency(...)

Enable HFSS multi-frequency setup.

SetupHFSS.enable_adaptive_setup_single([...])

Enable HFSS single frequency setup.

SetupHFSS.enable_expression_cache(expressions)

Enable an expression cache.

SetupHFSS.get_derivative_variables()

Return Derivative Enabled variables.

SetupHFSS.get_solution_data([expressions, ...])

Get a simulation result from a solved setup and cast it in a SolutionData object.

SetupHFSS.get_sweep([name])

Return frequency sweep object of a given sweep.

SetupHFSS.get_sweep_names()

Get the names of all sweeps in a given analysis setup.

SetupHFSS.start_continue_from_previous_setup(...)

Start or continue from a previously solved setup.

SetupHFSS.update([properties])

Update the setup based on either the class argument or a dictionary.

Attributes

SetupHFSS.available_properties

Available properties.

SetupHFSS.default_intrinsics

Retrieve default intrinsic for actual setup.

SetupHFSS.is_solved

Verify if solutions are available for given setup.

SetupHFSS.name

Name.

SetupHFSS.omodule

Analysis module.

SetupHFSS.p_app

Parent.