diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1757/CH5/EX5.16 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '1757/CH5/EX5.16')
-rwxr-xr-x | 1757/CH5/EX5.16/5_16.sce | 25 |
1 files changed, 25 insertions, 0 deletions
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 ]');
|