Plot Impedance Diagram from values

7 ビュー (過去 30 日間)
Cyriac Jose
Cyriac Jose 2018 年 9 月 11 日
コメント済み: Cyriac Jose 2018 年 11 月 19 日
I have a set of 50 Hz Voltage and Current values stored as arrays under variable name 'Volt' and 'Cur' sampled at 1000 Hz. How can I plot the impedance diagram (R+jX) from these? Thanks

回答 (1 件)

Ashutosh Prasad
Ashutosh Prasad 2018 年 9 月 14 日
From what I understand is that you have complex valued Voltages(Volt) and Currents(Cur). To get the impedance value for a particular value of voltage and current, the following relations will hold.
R = real(Volt/Cur);
X = imag(Volt/Cur);
Now to get the impedance diagram you just need to plot the data obtained above in appropriate axes.
Let me know if this is what you intend to do.
  1 件のコメント
Cyriac Jose
Cyriac Jose 2018 年 11 月 19 日
No we can plot them directly. The issue is to do an fft on a 20 ms window and then plot the same.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeLine Plots についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by