Fourier3

20
Sintesis Bentuk Gelombang & Spektrum Garis Agung Budi Santoso, ST

Transcript of Fourier3

Page 1: Fourier3

Sintesis Bentuk Gelombang

& Spektrum Garis

Agung Budi Santoso, ST

Page 2: Fourier3

SINTESIS BENTUK GELOMBANG

Sintesis (penyatuan) adalah gabungan dari bagian-bagian sehingga membentuk satu kesatuan. Sintesis Fourier adalah penggabungan kembali suku-suku deret trigonometri, lazimnya empat atau lima suku pertama agar menghasilkan gelombang mula-mula.

Page 3: Fourier3

SPEKTRUM GARIS

Spektrum linier adalah sebuah kurva yang memperlihatkan masing-masing amplitudo harmonik di dalam gelombang. Garis-garis bertambah secara cepat pada gelombang-gelombang dengan deret yang mengecil (konvergen) secara cepat.Kandungan harmonik dan spektrum garis dari sebuah gelombang adalah bagian yang sangat alamiah dari gelombang tersebut dan tidak pernah berubah, tanpa memperhatikan metode analisis.

Page 4: Fourier3

%% Filename: example8.m%% Description: This M-file plots the truncated Fourier Series% for a square wave as well as its amplitude% spectrum. clear; % clear all variablesclf; % clear all figures N = 11; % summation limit (use N odd)wo = pi; % fundamental frequency (rad/s)c0 = 0; % dc biast = -3:0.01:3; % declare time values figure(1) % put first two plots on figure 1 % Compute yce, the Fourier Series in complex exponential form yce = c0*ones(size(t)); % initialize yce to c0 for n = -N:2:N, % loop over series index n cn = 2/(j*n*wo); % Fourier Series Coefficient yce = yce + cn*exp(j*n*wo*t); % Fourier Series computationend subplot(2,1,1)plot([-3 -2 -2 -1 -1 0 0 1 1 2 2 3],... % plot original y(t) [-1 -1 1 1 -1 -1 1 1 -1 -1 1 1], ':');hold;

Page 5: Fourier3

plot(t,yce);grid;xlabel('t (seconds)')ylabel('y(t)');ttle = ['EE341.01: Truncated Exponential Fourier Series with N = ',... num2str(N)];title(ttle);hold % Compute yt, the Fourier Series in trigonometric form yt = c0*ones(size(t)); % initialize yce to c0 for n = 1:2:N, % loop over series index n cn = 2/(j*n*wo); % Fourier Series Coefficient yt = yt + 2*abs(cn)*cos(n*wo*t+angle(cn)); % Fourier Series computationend subplot(2,1,2)plot([-3 -2 -2 -1 -1 0 0 1 1 2 2 3],... % plot original y(t) [-1 -1 1 1 -1 -1 1 1 -1 -1 1 1], ':');hold;plot(t,yt);grid;xlabel('t (seconds)')ylabel('y(t)');ttle = ['EE341.01: Truncated Trigonometric Fourier Series with N = ',... num2str(N)];title(ttle);hold

Page 6: Fourier3

% Draw the amplitude spectrum from exponential Fourier Series figure(2) % put next plots on figure 2 subplot(2,1,1)stem(0,c0); % plot c0 at nwo = 0 holdfor n = -N:2:N, % loop over series index n cn = 2/(j*n*wo); % Fourier Series Coefficient stem(n*wo,abs(cn)) % plot |cn| vs nwoendfor n = -N+1:2:N-1, % loop over even series index n cn = 0; % Fourier Series Coefficient stem(n*wo,abs(cn)*180/pi); % plot |cn| vs nwoend xlabel('w (rad/s)')ylabel('|cn|')ttle = ['EE341.01: Amplitude Spectrum with N = ',num2str(N)];title(ttle);hold

Page 7: Fourier3

% Draw the phase spectrum from exponential Fourier Series subplot(2,1,2)stem(0,angle(c0)*180/pi); % plot angle of c0 at nwo = 0 holdfor n = -N:2:N, % loop over odd series index n cn = 2/(j*n*wo); % Fourier Series Coefficient stem(n*wo,angle(cn)*180/pi); % plot |cn| vs nwoendfor n = -N+1:2:N-1, % loop over even series index n cn = 0; % Fourier Series Coefficient stem(n*wo,angle(cn)*180/pi); % plot |cn| vs nwoend xlabel('w (rad/s)')ylabel('angle(cn) (degrees)')ttle = ['EE341.01: Phase Spectrum with N = ',num2str(N)];title(ttle);hold

Page 8: Fourier3

-3 -2 -1 0 1 2 3-2

-1

0

1

2

t (seconds)

y(t)

EE341.01: Truncated Exponential Fourier Series with N = 11

-3 -2 -1 0 1 2 3-2

-1

0

1

2

t (seconds)

y(t)

EE341.01: Truncated Trigonometric Fourier Series with N = 11

Page 9: Fourier3

-40 -30 -20 -10 0 10 20 30 400

0.2

0.4

0.6

0.8

w (rad/s)

|cn|

EE341.01: Amplitude Spectrum with N = 11

-40 -30 -20 -10 0 10 20 30 40-100

-50

0

50

100

w (rad/s)

angl

e(cn

) (d

egre

es)

EE341.01: Phase Spectrum with N = 11

Page 10: Fourier3

KESIMETRISAN DALAM GELOMBANG PERIODIK

1. SIMETRIS GENAP2. SIMETRIS GANJIL3. SIMETRIS GELOMBANG SETENGAH

Page 11: Fourier3

SIMETRI GENAP

Page 12: Fourier3
Page 13: Fourier3

SIMETRI GANJIL

Page 14: Fourier3
Page 15: Fourier3

SIMETRI GELOMBANG SETENGAH

Page 16: Fourier3
Page 17: Fourier3

CONTOH SOAL

Page 18: Fourier3
Page 19: Fourier3
Page 20: Fourier3

SAMPAI JUMPA