diff options
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
|