Let's I have three phase voltage grid which is unbalanced. The phase voltages are sampled by the adc and I would like to determine in the C language software the positive sequence, negative sequence and zero sequence (i.e. symmetrical components). My first idea how to do that was to use the transformation invented by the C.L. Fortescue i.e.
\begin{eqnarray} \left[ \begin{array}{c} \widehat{U}_{A1} \\ \widehat{U}_{A2} \\ \widehat{U}_{A0} \end{array} \right] = \frac{1}{3} \left[ \begin{array}{ccc} 1 & \widehat{a} & \widehat{a}^2 \\ 1 &\widehat{a}^2 & \widehat{a} \\ 1 & 1 & 1 \\ \end{array} \right] \cdot \left[ \begin{array}{c} \widehat{U}_{A} \\ \widehat{U}_{B} \\ \widehat{U}_{C} \end{array} \right] \end{eqnarray}
where the \$\widehat{U}_{A}\$, \$\widehat{U}_{B}\$ and \$\widehat{U}_{C}\$ are the phasors of the individual phase voltages of the unbalanced three phase voltage grid, \$\widehat{U}_{A1}\$, \$\widehat{U}_{A2}\$, \$\widehat{U}_{A0}\$ are the phasors of the voltage in phase A for the positive, negative and zero sequence and \$\hat{a} = e^{j\cdot\frac{2\pi}{3}}\$.
The obstacle which I see in this method is that the transformation is defined for the phasors and not for the time domain signals. Due to that I have been looking for another method. Does anybody know another method for decomposition of the three phase unbalanced grid into the symmetrical components which is applicable directly in the time domain?