From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 2498/CH4/EX4.36/ex4_36.sce | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100755 2498/CH4/EX4.36/ex4_36.sce (limited to '2498/CH4/EX4.36/ex4_36.sce') 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."); + -- cgit