change_symmetry_multiplier#
- Maxwell3d.change_symmetry_multiplier(value=1)#
Set the design symmetry multiplier to a specified value.
The symmetry multiplier is automatically applied to all input quantities. Available only in AC Magnetic (Eddy Current) and Transient solvers.
- Parameters:
- value
int
,optional
Value to use as the Design Symmetry Multiplier coefficient. The default value is
1
.
- value
- Returns:
- bool
True
when successful,False
when failed.
References
>>> oDesign.SetDesignSettings
Examples
Set the design symmetry multiplier.
>>> from ansys.aedt.core import Maxwell3d >>> m3d = Maxwell3d(solution_type="Transient") >>> m3d.change_symmetry_multiplier(value=3) >>> m3d.release_desktop(True, True)