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 /317/CH18/EX18.7/example7.sce | |
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 '317/CH18/EX18.7/example7.sce')
-rwxr-xr-x | 317/CH18/EX18.7/example7.sce | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/317/CH18/EX18.7/example7.sce b/317/CH18/EX18.7/example7.sce new file mode 100755 index 000000000..ec3379dd4 --- /dev/null +++ b/317/CH18/EX18.7/example7.sce @@ -0,0 +1,32 @@ +// find closed-loop voltage gain, bandwidth and output voltage
+// Electronic Principles
+// By Albert Malvino , David Bates
+// Seventh Edition
+// The McGraw-Hill Companies
+// Example 18-7, page 678
+
+clear; clc; close;
+
+// Given data
+R1=1.5*10^3;// in ohms from the given figure
+Rf=75*10^3;// in ohms from the given figure
+Vin=10^-2;// input voltage in mVpp
+f1=10^3;// frequency in hertz
+f2=10^6;// frequency in hertz
+funity=10^6;// unity gain frequency in hertz
+
+// Calculations
+Avcl=-Rf/R1;// closed loop voltage gain
+f2cl=funity/-Avcl;// closed-loop bandwidth
+Vout1=Avcl*Vin;// output voltage at 10^3 Hertz
+Vout2=-Vin;// output voltage at 10^6 Hertz as it is unity gain frequency in hertz
+disp(Avcl,"closed loop voltage gain=")
+disp("Hertz",f2cl,"closed loop bandwidth=")
+disp("Volts",Vout1,"output voltage 1=")
+disp("Volts",Vout2,"output voltage 2=")
+
+// Result
+// Closed loop voltage gain is -50
+// Closed loop bandwidth is 20 Khertz
+// Output voltage is -500 mVpp at 1 KHertz
+// Output voltage is -10 mVpp at 1000 KHertz
\ No newline at end of file |