필터 지우기
필터 지우기

How are the R & X values calculated in the Parallel RLC Load Block?

조회 수: 1 (최근 30일)
Hello, I'm using a Parallel RLC Load block in my model & need to back calculate to find the R, X & load angle values, such that the user can enter the same through the GUI. It says the Active & Reactive Powers are proportional to the square of the voltage, but I do not get correct answers for R & X values using (V^2/P) & (V^2/Q) respectively. Could anyone please help me out in this regard by explaining how the block converts the Resistance & Inductance values to the Powers???
Thank You...

채택된 답변

Varun Jadhav
Varun Jadhav 2016년 1월 8일
편집: Varun Jadhav 2016년 1월 8일
The Code, I tried solving it:
-
Voltage = str2num(get(handles.sys_volt, 'String'));
Impedance = str2num(get(handles.imp, 'String'));
Theta = str2num(get(handles.angle, 'String'));
It = Voltage/Impedance;
Ir = sqrt((It^2)/(1+(tan(Theta*pi/180)^2)));
Il = Ir*tan(Theta*pi/180);
ActivePower = Voltage*Ir;
InductivePower = Voltage*Il;

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Switches and Breakers에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by