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 /2330/CH10/EX10.5/ex10_5.sce | |
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 '2330/CH10/EX10.5/ex10_5.sce')
-rwxr-xr-x | 2330/CH10/EX10.5/ex10_5.sce | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/2330/CH10/EX10.5/ex10_5.sce b/2330/CH10/EX10.5/ex10_5.sce new file mode 100755 index 000000000..6f11af733 --- /dev/null +++ b/2330/CH10/EX10.5/ex10_5.sce @@ -0,0 +1,22 @@ +// Example 10.5
+format('v',6)
+clc;
+clear;
+close;
+// given data
+V_E= 1.43;// in V
+R_E= 100;// in Ω
+R_L= 100;// in Ω
+R_C= 1*10^3;// in Ω
+bita= 200;
+Vt= 25*10^-3;// in V
+I_E= V_E/R_E;// in A
+I_CQ= I_E;// in A
+Zin= bita*R_L;// in Ω
+r_desh_e= Vt/I_CQ;// in Ω
+// The voltage gain of the driver stage
+A= (R_C*Zin/(R_C+Zin))/(R_E+r_desh_e);
+disp(A,"The voltage gain of the driver stage is : ")
+// On ignoring Zin and r_desh_e,
+A= R_C/R_E;
+disp(A,"On ignoring the value of Zin and r''e, the voltage gain is : ")
|