start_continue_from_previous_setup#

SetupMaxwell.start_continue_from_previous_setup(design_name, solution_name, map_variables_by_name=True, parameters_dict=None, project_name='This Project*', force_source_to_solve=True, preserve_partner_solution=True)[source]#

Start or continue from a previously solved setup.

Parameters:
design_namestr

Name of the design.

solution_namestr, optional

Name of the solution in the format "setupname : solutionname". 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_dictdict, optional

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

project_namestr, 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_name="IM", solution_name="Setup1 : Transient")