Sum of three phasors
4 ビュー (過去 30 日間)
古いコメントを表示
How can I find the phasor Asum∠Bsum analytically and check it in MatLab?
If Asum∠Bsum = A1∠B1 + A2∠B2 + A3∠B3
0 件のコメント
回答 (1 件)
Sulaymon Eshkabilov
2023 年 12 月 12 日
If understood correctly, what you are trying to get is:
A1B1 = 2+3i;
A2B2 = 5+6i;
A3B3 = 1.5 - 3i;
Phase_AsBs = @(a,b,c) (a+b+c);
% Simulate
Phase_AsBs(A1B1, A2B2, A3B3)
% Or furhtermore phase ansgles and abs values
Phase_AsBs_Angle_rad = @(a,b,c) [abs(a+b+c), angle(a+b+c)]; % in Radians
disp('Magnitude and Phase angle in Radians')
Phase_AsBs_Angle_rad(A1B1, A2B2, A3B3)
Phase_AsBs_Angle_deg = @(a,b,c) [abs(a+b+c), atan2d(imag(a+b+c), real(a+b+c))]; % in Degrees
disp('Magnitude and Phase angle in Degrees')
Phase_AsBs_Angle_deg(A1B1, A2B2, A3B3)
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!