diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /3507/CH12/EX12.26 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '3507/CH12/EX12.26')
-rw-r--r-- | 3507/CH12/EX12.26/Ex12_26.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/3507/CH12/EX12.26/Ex12_26.sce b/3507/CH12/EX12.26/Ex12_26.sce new file mode 100644 index 000000000..94b923c6b --- /dev/null +++ b/3507/CH12/EX12.26/Ex12_26.sce @@ -0,0 +1,13 @@ +//chapter12
+//example12.26
+//page261
+
+R1=18 // kilo ohm
+R2=4.7 // kilo ohm
+Re=1 // kilo ohm
+Vcc=10 // V
+
+V_B=Vcc*R2/(R1+R2)
+
+printf("voltage at base = %.3f V \n",V_B)
+printf("The fact that V_C=10V and V_E is nearly equal to V_B reveals \nthat I_C=0 and I_E=0.So I_B drops to zero.So obvious fault is R_E is open. \n")
|