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 /2342/CH6/EX6.10 | |
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 '2342/CH6/EX6.10')
-rwxr-xr-x | 2342/CH6/EX6.10/EX6_10.sce | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/2342/CH6/EX6.10/EX6_10.sce b/2342/CH6/EX6.10/EX6_10.sce new file mode 100755 index 000000000..ae3a4dc1e --- /dev/null +++ b/2342/CH6/EX6.10/EX6_10.sce @@ -0,0 +1,22 @@ +// Exa 6.10
+format('v',6)
+clc;
+clear;
+close;
+// Given data
+Beta= 100;
+V_CC= 12;// in V
+V_BE= 0;// in V
+I_B= 0.3*10^-3;// in A
+R_C= 300;// in Ω
+// Applying KVL for input side, V_CC= I_B*R_B+V_BE or
+R_B= (V_CC-V_BE)/I_B;// in Ω
+R_B= R_B*10^-3;// in k ohm
+disp(R_B,"The value of base resistor in kΩ is : ")
+I_C= Beta*I_B;// in A
+// The collector to emitter voltage
+V_CE= V_CC-I_C*R_C;// in V
+disp(V_CE,"The collector to emitter voltage in V is : ")
+// The stability factor,
+S= 1+Beta;
+disp(S,"The stability factor is : ")
|