summaryrefslogtreecommitdiff
path: root/2498/CH4/EX4.36/ex4_36.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2498/CH4/EX4.36/ex4_36.sce
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 '2498/CH4/EX4.36/ex4_36.sce')
-rwxr-xr-x2498/CH4/EX4.36/ex4_36.sce23
1 files changed, 23 insertions, 0 deletions
diff --git a/2498/CH4/EX4.36/ex4_36.sce b/2498/CH4/EX4.36/ex4_36.sce
new file mode 100755
index 000000000..cbfd730fd
--- /dev/null
+++ b/2498/CH4/EX4.36/ex4_36.sce
@@ -0,0 +1,23 @@
+// Exa 4.36
+format('v',5)
+clc;
+clear;
+close;
+// Given data
+V_CC = 20;// in V
+R_C = 3.3;// in k ohm
+R_C = R_C * 10^3;// in ohm
+R_B = 1;// in Mohm
+R_B = R_B * 10^6;// in ohm
+V_CE = V_CC;// in V
+I_C = V_CC/R_C;// in A
+I_C=I_C*10^3;// in mA
+// Plotting of the DC load line,
+plot([V_CE,0],[0,I_C]);
+xlabel("V_CE in volts.");
+ylabel("I_C in mA.");
+title("DC load line.")
+disp(I_C,"At saturation, the value of I_C in mA is : ")
+disp(V_CE,"At cut off, the value of V_CE in volts is : ")
+disp("DC load line shown in figure.");
+