diff options
Diffstat (limited to '3507/CH21/EX21.1/Ex21_1.sce')
-rw-r--r-- | 3507/CH21/EX21.1/Ex21_1.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/3507/CH21/EX21.1/Ex21_1.sce b/3507/CH21/EX21.1/Ex21_1.sce new file mode 100644 index 000000000..49644cd47 --- /dev/null +++ b/3507/CH21/EX21.1/Ex21_1.sce @@ -0,0 +1,15 @@ +//chapter21
+//example21.1
+//page456
+
+Vcc=10 // V
+Vbe=0.7 // V
+Rb=47d3 // ohm
+Rc=1d3 // ohm
+gain=100
+
+Ic_sat=Vcc/Rc
+Ib=Ic_sat/gain
+V_plus=Ib*Rb+Vbe
+
+printf("voltage required to saturate transistor = +%.3f V \n",V_plus)
|