diff options
Diffstat (limited to '226/CH6/EX6.3/example3_sce.sce')
-rwxr-xr-x | 226/CH6/EX6.3/example3_sce.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/226/CH6/EX6.3/example3_sce.sce b/226/CH6/EX6.3/example3_sce.sce new file mode 100755 index 000000000..766f304f8 --- /dev/null +++ b/226/CH6/EX6.3/example3_sce.sce @@ -0,0 +1,14 @@ +//chapter 6
+//example 6.2
+//page 251
+printf("\n")
+printf("given")
+Vce=4.5;Ib=40*10^-6;
+disp("from current characteristic at Vce=4.5V and Ib=40uA")
+Ic=4*10^-3;Ib=30*10^-6;
+hFE=Ic/Ib;
+printf(" the value of hFE is %d\n",hFE)
+disp("from output characteristic at Vce=4.5 and Ib=40uA")
+Ic=400*10^-3;Vce=6;
+hoe=(Ic/Vce)*10^6;
+printf("tye value of hoe is %3.2fuS\n",hoe)
\ No newline at end of file |