diff options
Diffstat (limited to '3769/CH27/EX27.14')
-rw-r--r-- | 3769/CH27/EX27.14/Ex27_14.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/3769/CH27/EX27.14/Ex27_14.sce b/3769/CH27/EX27.14/Ex27_14.sce new file mode 100644 index 000000000..87f87d55d --- /dev/null +++ b/3769/CH27/EX27.14/Ex27_14.sce @@ -0,0 +1,16 @@ +clear +//Given +Vcc=8 //V +V=0.5 //V +Rc=800.0 //ohm +a=0.96 + +//Calculation +Vce=Vcc-V +Ic=V/Rc*10**3 +B=a/(1-a) +Ib=Ic/B + +//Result +printf("\n (i) Collector-emitter voltage is %0.3f V",Vce) +printf("\n (ii) Base current is %0.3f mA",Ib) |