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 /2594/CH7/EX7.5 | |
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 '2594/CH7/EX7.5')
-rwxr-xr-x | 2594/CH7/EX7.5/Ex7_5.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/2594/CH7/EX7.5/Ex7_5.sce b/2594/CH7/EX7.5/Ex7_5.sce new file mode 100755 index 000000000..66a7fafd0 --- /dev/null +++ b/2594/CH7/EX7.5/Ex7_5.sce @@ -0,0 +1,11 @@ +clc
+Db=10
+disp("Db = "+string(Db)+" cm^2/s") //initializiation the value of one of parametere of the transistor.
+Bt=0.95
+disp("Bt = "+string(Bt)) //initializiation the value of base transport factor of the transistor.
+tb=10^-7
+disp("tb = "+string(tb)+" s") //initializiation the value of one of parametere of the transistor.
+Lp=(sqrt(Db*tb))
+disp("Lp=(sqrt(Db*tb)))="+string(Lp)+" cm")//calculation
+WB=(Lp*(acosh(1/Bt)))
+disp("WB=(Lp*(acosh(1/Bt)))="+string(WB)+" cm")//calculation
|