summaryrefslogtreecommitdiff
path: root/3515/CH3/EX3.6
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /3515/CH3/EX3.6
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '3515/CH3/EX3.6')
-rw-r--r--3515/CH3/EX3.6/Ex3_6.sce25
1 files changed, 25 insertions, 0 deletions
diff --git a/3515/CH3/EX3.6/Ex3_6.sce b/3515/CH3/EX3.6/Ex3_6.sce
new file mode 100644
index 000000000..4a0b97d56
--- /dev/null
+++ b/3515/CH3/EX3.6/Ex3_6.sce
@@ -0,0 +1,25 @@
+// Exa 3.6
+format('v',7);
+clc;
+clear;
+close;
+// Given data
+V_CC= 12;// in V
+V_BE= 0.7;// in V
+bita= 100;
+R_C= 10;// in kΩ
+R_C= R_C*10^3;// in Ω
+R_B= 100;// in kΩ
+R_B= R_B*10^3;// in Ω
+I_BQ= (V_CC-V_BE)/((1+bita)*R_C+R_B);// in A
+I_CQ= bita*I_BQ;// in A
+V_CEQ= V_CC-(I_CQ+I_BQ)*R_C;// in volt
+// For dc load line
+// When
+I_C=0;
+V_CE= V_CC-(I_C+I_BQ)*R_C;// in volt
+// When
+V_CE= 0;
+I_C= (V_CC-I_BQ*R_C)/R_C;//in A
+disp("Q- point values for circuit is "+string(V_CEQ)+" V and "+string(I_CQ*10^3)+" mA")
+