diff options
Diffstat (limited to '3507/CH11/EX11.3/Ex11_3.sce')
-rw-r--r-- | 3507/CH11/EX11.3/Ex11_3.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/3507/CH11/EX11.3/Ex11_3.sce b/3507/CH11/EX11.3/Ex11_3.sce new file mode 100644 index 000000000..b08301db2 --- /dev/null +++ b/3507/CH11/EX11.3/Ex11_3.sce @@ -0,0 +1,16 @@ +//chapter11
+//example11.3
+//page205
+
+alpha=0.9
+Ie=1 //mA
+
+// since alpha=Ic/Ie we get
+
+Ic=alpha*Ie
+
+// since Ie=Ic+Ib we get
+
+Ib=Ie-Ic
+
+printf("base current = %.3f mA \n",Ib)
|