フィルターのクリア

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

1 回表示 (過去 30 日間)
Varun Jadhav
Varun Jadhav 2016 年 1 月 8 日
コメント済み: Varun Jadhav 2016 年 1 月 8 日
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 Center および File ExchangeSwitches and Breakers についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by