start_continue_from_previous_setup#
- SetupSBR.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)#
Start or continue from a previously solved setup.
- Parameters:
- design
str Name of the design.
- solution
str Name of the solution in the format
"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.- parameters
dict,optional Dictionary of the parameters. This parameter is not considered if
map_variables_by_name=True. IfNone, the default isappname.available_variations.nominal_values.- project
strorpathlib.Path,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.
- design
- Returns:
- bool
Truewhen successful,Falsewhen failed.
References
>>> oModule.EditSetup
Examples
>>> m2d = ansys.aedt.core.Maxwell2d() >>> setup = m2d.get_setup("Setup1") >>> setup.start_continue_from_previous_setup(design="IM", solution="Setup1 : Transient")