From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 1757/CH5/EX5.16/5_16.sce | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100755 1757/CH5/EX5.16/5_16.sce (limited to '1757/CH5/EX5.16') diff --git a/1757/CH5/EX5.16/5_16.sce b/1757/CH5/EX5.16/5_16.sce new file mode 100755 index 000000000..c6e516b66 --- /dev/null +++ b/1757/CH5/EX5.16/5_16.sce @@ -0,0 +1,25 @@ +//Example5.16 // Determine the loop gain of compensated network +clc; +clear; +close; + +C = 0.01*10^-6 ; // farad +R = 15*10^3 ; // ohm +F = 1*10^6 ; // Hz + +// the close loop gain of a compensated network is defined as +// Ac = Acl*Acom ; + +//Acom = 1/(1+%(F/FL)); + +FL = 1/(2*3.14*R*C); +disp('FL = '+string(FL/1000)+' KHz '); // Round Off Error + +// Acom = 1/(1+%j(F/FL)); +// After putting value of F ,FL we get + +// Acom = 1/(1+%j(0.9)); // 1+%j(0.9) Rectangular Form where real part is 1 and imaginary part is 0.9 + +// After converting rectangular from into polar from we get + +disp('Acom = [ magnitude = 0.68 angle = -47.7 degree ]'); -- cgit