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/CH5/EX5.18/example18_sce.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 '226/CH5/EX5.18/example18_sce.sce')
-rwxr-xr-x | 226/CH5/EX5.18/example18_sce.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/226/CH5/EX5.18/example18_sce.sce b/226/CH5/EX5.18/example18_sce.sce new file mode 100755 index 000000000..ef0eb7a2c --- /dev/null +++ b/226/CH5/EX5.18/example18_sce.sce @@ -0,0 +1,21 @@ +//chapter 5
+//example 5.18
+//page 221
+printf("\n")
+printf("given")
+Icbo1=15*10^-9;// at 25C
+S=101;
+disp("chnage in temp")
+T=105-25
+disp(" n=T in 10 step")
+n=T/10
+Icbo2=Icbo1*2^n
+Icbo=Icbo2-Icbo1
+disp(" for base bais")
+Ic=S*Icbo
+disp(" for collector to base bais")
+S=56;
+Ic=S*Icbo
+disp(" for voltage divider bais")
+S=8.2;
+Ic=S*Icbo
\ No newline at end of file |