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 /2528/CH5/EX5.10/Ex5_10.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 '2528/CH5/EX5.10/Ex5_10.sce')
-rwxr-xr-x | 2528/CH5/EX5.10/Ex5_10.sce | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/2528/CH5/EX5.10/Ex5_10.sce b/2528/CH5/EX5.10/Ex5_10.sce new file mode 100755 index 000000000..ecc101b3d --- /dev/null +++ b/2528/CH5/EX5.10/Ex5_10.sce @@ -0,0 +1,23 @@ +
+//clear//
+//Example5.10:"Output voltage""
+//Page 158
+//figure 5.24
+clear;
+clc;
+Rf=20000; // in Ohm
+Ri=5000; //in ohm
+Av=-Rf/Ri;
+Vin=3*10^-3; //in Volt
+Vout=Av*Vin;
+disp("V",Vout,"Vout");
+
+//411 typical apecs
+Vos=0.8*10^-3; //in Volt
+Ios=25*10^-12; //in Amp
+Ib=50*10^-12; //in Amp
+Anoise=1+Rf/Ri;
+Roff=0;
+Vout=(Vos*Anoise)+(Ib*Roff*Anoise+Ib*Rf);
+disp("V",Vout,"Vout");
+//Result
|