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 /2882/CH14/EX14.9 | |
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 '2882/CH14/EX14.9')
-rwxr-xr-x | 2882/CH14/EX14.9/Ex14_9.sce | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/2882/CH14/EX14.9/Ex14_9.sce b/2882/CH14/EX14.9/Ex14_9.sce new file mode 100755 index 000000000..517588511 --- /dev/null +++ b/2882/CH14/EX14.9/Ex14_9.sce @@ -0,0 +1,22 @@ +//Tested on Windows 7 Ultimate 32-bit
+//Chapter 14 Operational Amplifiers Pg no. 431 and 432
+clear;
+clc;
+
+//Given
+
+A=175000;//open loop voltage gain
+Zin=1.5D6;//input impedance in ohms
+Zout=70;//output impedance in ohms
+Ri=8.2D3;//resistance Ri in ohms
+Rf=180D3;//feedback resistance in ohms
+
+//Solution
+
+X=Ri/(Ri+Rf);//voltage divider ratio
+Zin_n=Zin*(1+A*X);//input impedance in ohms
+Zout_n=Zout/(1+A*X);//output impedance in ohms
+Av_cl=1/X;//closed loop voltage gain
+printf("Input impedance Zin = %.f Mega-ohms\n ",Zin_n/10^6);
+printf("Output impedance Zout = %.4f ohms\n ",Zout_n);
+printf("Closed loop voltage gain (Av)cl = %.f",Av_cl);
|