필터 지우기
필터 지우기

Phasor Diagram for three phase sinusoidal signal

조회 수: 14 (최근 30일)
Bharath Kumar S
Bharath Kumar S 2022년 7월 23일
답변: Hari 2023년 9월 11일
How to plot the phasor diagram for three phase signal?
eg:
clc;
t = 0:100e-6:0.1;
f = 50;
w = 2*pi*f;
Vm = 1;
R = Vm*sin(w*t);
Y = Vm*sin(w*t - 120(pi/180));
B = Vm*sin(w*t - 240(pi/180));
I would appreciate if someone can answer this, i.e., how to represent the phasor diagram for RYB with vector magnitude and each phase displaced by 120 degree apart.

답변 (1개)

Hari
Hari 2023년 9월 11일
Hi Bharath,
As per my understanding, you want to plot a phasor diagram for a three-phase signal.
You can calculate the real and imaginary components for each signal and then use the “quiver” function to plot the vectors.
  1. Use the magnitude and the phase angle of the signal to calculate the real and imaginary parts:
% Calculating the real and imaginary components of the three-phase signal
Real = Mag * cos(Phase);
Imag = Mag * sin(Phase);
2. Plot the function using “quiver”
% Plotting the phasor diagram using "quiver" function
quiver(start_x, start_y, Real, Imag);
“quiver” function takes the starting point coordinates (start_x, start_y), and the real and imaginary components of each vector as arguments. You can also specify other parameters such as colours, labels, etc. By plotting each your “R”, “Y”, “B” signals in this way, you can get the phasor diagram for the three-phase signal, whose phases are 120 degrees displaced.
Refer to the below documentation to learn more about “quiver” function in MATLAB.

카테고리

Help CenterFile Exchange에서 Vector Fields에 대해 자세히 알아보기

제품


릴리스

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by