Sum of sines in phasor form

12 ビュー (過去 30 日間)
Ygor Marca
Ygor Marca 2023 年 9 月 21 日
回答済み: Peter O 2023 年 9 月 21 日
How to perform the sum in the following equation in phasor form? I mean analytical using matlab.
Equation:
Ax1*Ax2*sin(2*pi*50*t + Theta_a1 + Theta_a2) + Ax1*Ax3*sin(2*pi*50*t + Theta_a3 + Theta_a2)

回答 (1 件)

Peter O
Peter O 2023 年 9 月 21 日

You can treat them as the sum of 2 phasors. Assuming they always have equal frequencies then it's a vector sum of the real and imaginary components.

    Sum = Ax1*Ax2*exp(1j*(theta1+theta2-pi/2) +Ax1*Ax3*exp(1j*(theta3+theta2-pi/2)

Notice I shifted the waveforms to cosine to make the real and imaginary components work.

The magnitude and angle of the resulting wave are M=abs(sum) ThetaS = angle(sum) Y = M*cos(2*pi*50*t + ThetaS)

(Typing on mobile so please excuse if there's a typo or sign error)

コミュニティ

カテゴリ

Help Center および File ExchangeDiscrete Fourier and Cosine Transforms についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by