start_continue_from_previous_setup#

SetupQ3D.start_continue_from_previous_setup(design, solution, map_variables_by_name=True, parameters=None, project='This Project*', force_source_to_solve=True, preserve_partner_solution=True)[source]#

Start or continue from a previously solved setup.

Parameters:
designstr

Name of the design.

solutionstr, optional

Name of the solution in the format "setup_name : solution_name". For example, "Setup1 : Transient", "MySetup : LastAdaptive".

map_variables_by_namebool, optional

Whether variables are mapped by name from the source design. The default is True.

parametersdict, optional

Dictionary of the parameters. This parameter is not considered if map_variables_by_name=True. If None, the default is appname.available_variations.nominal_w_values_dict.

projectstr, optional

Name of the project with the design. The default is "This Project*". However, you can supply the full path and name to another project.

force_source_to_solvebool, optional

The default is True.

preserve_partner_solutionbool, optional

The default is True.

Returns:
bool

True when successful, False when failed.

References

>>> oModule.EditSetup

Examples

>>> m2d = pyaedt.Maxwell2d()
>>> setup = m2d.get_setup("Setup1")
>>> setup.start_continue_from_previous_setup(design="IM",solution="Setup1 : Transient")