How to get best spectral plot

조회 수: 7 (최근 30일)
Andreas Askvik
Andreas Askvik 2017년 11월 21일
댓글: Birdman 2017년 11월 24일
Hi, I want to get a plot from the frequency domain from the stator current in a induction motor model. The current is illustrated in figure
I want it in the same "format" as this
but I can't seem to get close, this is my best attempt using pwelch
does anyone have a comment on how to proceed? Thanks in advance.

채택된 답변

Birdman
Birdman 2017년 11월 21일
How did you set your pwelch's options? If you set them correctly, then you should obtain a very accurate plot. For instance:
h1=spectrum.welch;
set(h1,'Windowname','Hann');
Fs=1000;
set(h1,'OverlapPercent',66.7);
set(h1,'SegmentLength',512);
The lines above make the necessary settings for your pwelch function.
myPsd=psd(h1,X(:,1)-mean(X(:,1)),'Fs',Fs)
semilogx(myPsd.Frequencies,myPsd.Data);grid on
Imagine that your data is X, if you run the two lines above, then you should obtain the same result in a better way.
Please enter OverlapPercent and SegmentLength carefully, according to your data. Hope this helps.
  댓글 수: 6
Andreas Askvik
Andreas Askvik 2017년 11월 24일
I get this plot
Birdman
Birdman 2017년 11월 24일
Use this:
myPsd=psd(h1,X(:,1)-mean(X(:,1)),'Fs',Fs)
semilogx(myPsd.Frequencies,myPsd.Data);grid on
set(gca,'XLim',[0.01 100])

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Motor Drives에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by