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 /226/CH6/EX6.13 | |
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 '226/CH6/EX6.13')
-rwxr-xr-x | 226/CH6/EX6.13/example13_sce.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/226/CH6/EX6.13/example13_sce.sce b/226/CH6/EX6.13/example13_sce.sce new file mode 100755 index 000000000..8e9800511 --- /dev/null +++ b/226/CH6/EX6.13/example13_sce.sce @@ -0,0 +1,16 @@ +//chapter 6
+//example 6.13
+//page 279
+printf("\n")
+printf("given")
+Io=50*10^-9;Vbe=.7;Vbc=-10;Af=.995;Ar=.5;Vt=26*10^-3;n=2;Vd=-10;
+x=Vd/(n*Vt);
+Idc=(Io*((2.73^-x)-1))*10^9;
+Idc=Io*(-1)
+y=Vbe/(n*Vt);
+Ide=Io*((2.73^y)-1)
+I1=Af*Ide
+I2=Ar*Idc
+Ic=I1-Idc
+Ie=Ide-I2
+Ib=Ie-Ic
\ No newline at end of file |