From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 2702/CH4/EX4.7/Ex_4_7.sce | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 2702/CH4/EX4.7/Ex_4_7.sce (limited to '2702/CH4/EX4.7/Ex_4_7.sce') diff --git a/2702/CH4/EX4.7/Ex_4_7.sce b/2702/CH4/EX4.7/Ex_4_7.sce new file mode 100644 index 000000000..2af582cf9 --- /dev/null +++ b/2702/CH4/EX4.7/Ex_4_7.sce @@ -0,0 +1,18 @@ +// Exa 4.7 +clc; +clear; +close; +// Given data +V_CM= 0; +V_BE= -0.7;// in volt +v_E= V_CM-V_BE;// in volt +disp(v_E,"Value of v_E in volts is : ") + +I_E= (5-0.7)/10^3;// in A +v_B1= 0.5;// in V +v_B2= 0;// in V +// Due to Q1 is off; therefore +v_C1= -5;// in V +v_C2= I_E*10^3-5;// in V +disp(v_C1,"Value of v_C1 in volts is : ") +disp(v_C2,"Value of v_C2 in volts is : ") -- cgit