diff options
Diffstat (limited to '2459/CH11/EX11.7/Ex11_7.sce')
-rw-r--r-- | 2459/CH11/EX11.7/Ex11_7.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/2459/CH11/EX11.7/Ex11_7.sce b/2459/CH11/EX11.7/Ex11_7.sce new file mode 100644 index 000000000..6aa057349 --- /dev/null +++ b/2459/CH11/EX11.7/Ex11_7.sce @@ -0,0 +1,19 @@ +//chapter11
+//example11.7
+//page206
+
+Vbe=0.7 // V
+Vcc=18 // V
+Vee=8 // V
+Rc=1.2 // kilo ohm
+Re=1.5 //kilo ohm
+
+// by Kirchoff's voltage law to emitter side loop, we get Vee=Ie*Re+Vbe so
+Ie=(Vee-Vbe)/Re
+Ic=Ie // nearly
+
+// by Kirchoff's voltage law to collector side loop, we get Vcc=Ic*Rc=Vcb so
+Vcb=Vcc-Ic*Rc
+
+printf("collector curent = %.3f mA \n",Ic)
+printf("collector base voltage = %3f V \n",Vcb)
|