complete_symmetrical_components

typhoon.test.transformations.complete_symmetrical_components(V0, V1, V2)

Calculates three three-phase “abc” sets from symmetrical components.

Parameters:
  • V0 (same type as input) – Zero-sequence component of phase “a”.

  • V1 (same type as input) – Positive-sequence component of phase “a”.

  • V2 (same type as input) – Negative-sequence component of phase “a”.

Returns:

V0abc, V1abc, V2abc – “abc” phasor set of zero-component, positive-component and negative-component respectively.

Return type:

Phasors3ph tuple

Examples

>>> Va = Phasor(mag=5, angle=53)
>>> Vb = Phasor(mag=7, angle=-164)
>>> Vc = Phasor(mag=7, angle=105)
>>> V0, V1, V2 = symmetrical_components(Va, Vb, Vc)
>>> [[Va0, Vb0, Vc0], [Va1, Vb1, Vc1], [Va2, Vb2, Vc2]] = complete_symmetrical_components(V0, V1, V2)