diff options
Diffstat (limited to '3507/CH11/EX11.6/Ex11_6.sce')
-rw-r--r-- | 3507/CH11/EX11.6/Ex11_6.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/3507/CH11/EX11.6/Ex11_6.sce b/3507/CH11/EX11.6/Ex11_6.sce new file mode 100644 index 000000000..082cceecb --- /dev/null +++ b/3507/CH11/EX11.6/Ex11_6.sce @@ -0,0 +1,17 @@ +//chapter11
+//example11.6
+//page205
+
+alpha=0.95
+V_Rc=2 // V
+Rc=2 //kilo ohm
+
+Ic=V_Rc/Rc // mA
+
+// since alpha=Ic/Ie
+Ie=Ic/alpha
+
+// since Ie=Ib+Ic
+Ib=Ie-Ic
+
+printf("base current = %.3f mA \n",Ib)
|