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.8 | |
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.8')
-rwxr-xr-x | 317/CH18/EX18.8/example8.sce | 30 | ||||
-rwxr-xr-x | 317/CH18/EX18.8/example8.txt | 1 |
2 files changed, 31 insertions, 0 deletions
diff --git a/317/CH18/EX18.8/example8.sce b/317/CH18/EX18.8/example8.sce new file mode 100755 index 000000000..19be850ad --- /dev/null +++ b/317/CH18/EX18.8/example8.sce @@ -0,0 +1,30 @@ +// find output voltage
+// Electronic Principles
+// By Albert Malvino , David Bates
+// Seventh Edition
+// The McGraw-Hill Companies
+// Example 18-8, page 679
+
+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=0;// input voltage in mVpp
+Inbias=80*10^-9;// input bias current in amperes
+Inoff=20*10^-9;// input offset current in amperes
+Vinoff=2*10^-3;// input offset voltage in volts
+Rb1=0;// in ohms
+
+// Calculations
+Rb2=R1*Rf/(R1+Rf);// in ohms
+V1err=(Rb1-Rb2)*Inbias;// unwanted dc error input in volts
+V2err=(Rb1+Rb2)*Inoff/2;// unwanted dc error input in volts
+V3err=Vinoff;// unwanted dc error input in volts
+Avcl=-Rf/R1;// cloased loop voltage gain
+Verror=Avcl*(V1err+V2err+V3err);// output error voltage in volts;
+Vout=Verror;// output voltage in volts
+disp("Volts",Verror,"output error voltage=")
+
+// Result
+// Output voltage will be (+ or -) 94.9 mVolts
\ No newline at end of file diff --git a/317/CH18/EX18.8/example8.txt b/317/CH18/EX18.8/example8.txt new file mode 100755 index 000000000..893785988 --- /dev/null +++ b/317/CH18/EX18.8/example8.txt @@ -0,0 +1 @@ +Output voltage will be (+ or -) 94.9 mVolts
\ No newline at end of file |