diff options
Diffstat (limited to '2459/CH11/EX11.12')
-rw-r--r-- | 2459/CH11/EX11.12/Ex11_12.PNG | bin | 0 -> 6695 bytes | |||
-rw-r--r-- | 2459/CH11/EX11.12/Ex11_12.sce | 16 |
2 files changed, 16 insertions, 0 deletions
diff --git a/2459/CH11/EX11.12/Ex11_12.PNG b/2459/CH11/EX11.12/Ex11_12.PNG Binary files differnew file mode 100644 index 000000000..270baeba8 --- /dev/null +++ b/2459/CH11/EX11.12/Ex11_12.PNG diff --git a/2459/CH11/EX11.12/Ex11_12.sce b/2459/CH11/EX11.12/Ex11_12.sce new file mode 100644 index 000000000..8793e5102 --- /dev/null +++ b/2459/CH11/EX11.12/Ex11_12.sce @@ -0,0 +1,16 @@ +//chapter11
+//example11.12
+//page210
+
+Rc=800d-3 // kilo ohm
+V_Rc=0.5 // V
+Vcc=8 // V
+alpha=0.96
+
+Vce=Vcc-V_Rc
+Ic=V_Rc/Rc // mA
+gain_beta=alpha/(1-alpha)
+Ib=Ic/gain_beta
+
+printf("collector emitter voltage = %.3f V \n",Vce)
+printf("base current = %.3f mA \n",Ib)
|