You are on page 1of 3

1.

Sistem AVR sebelum diberi Kompensasi ;


Source code Matlab;

Ga = tf([12],[0.101 1]);
Ge = tf([1],[0.5 1]);
Gg = tf([1],[1 1]);
Gr = tf([1],[0.01 1]);
Gos = Ga*Ge*Gr;
H2 = Gos/(1+Gos*Gr);
step (H2)
2. Sistem AVR setelah diberi Kompensasi ;
Source code Matlab;

Ga = tf([12],[0.101 1]);
Ge = tf([1],[0.5 1]);
Gg = tf([1],[1 1]);
Gr = tf([1],[0.01 1]);
K = tf([1],[24.0416 1]);
Gos = Ga*Ge*Gg*K;
H2 = Gos/(1+Gos*Gr);
step (H2)
Hasil Perhitungan ;

You might also like