change_inductance_computation#

Maxwell3d.change_inductance_computation(compute_transient_inductance=True, incremental_matrix=False)#

Enable the inductance computation for the transient analysis and set the incremental matrix.

Parameters:
compute_transient_inductancebool, optional

Whether to enable the inductance calculation for the transient analysis. The default is True.

incremental_matrixbool, optional

Whether to set the inductance calculation to Incremental if compute_transient_inductance=True. The default is False, in which case the Apparent inductance calculation is enabled.

Returns:
bool

True when successful, False when failed.

References

>>> oDesign.SetDesignSettings

Examples

Set Incremental as inductance calculation.

>>> from ansys.aedt.core import Maxwell3d
>>> m3d = Maxwell3d("Transient")
>>> m3d.change_inductance_computation(compute_transient_inductance=True, incremental_matrix=True)
>>> m3d.release_desktop(True, True)