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 --- 2129/CH5/EX5.8.1/ex5_8_1.sce | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 2129/CH5/EX5.8.1/ex5_8_1.sce (limited to '2129/CH5/EX5.8.1') diff --git a/2129/CH5/EX5.8.1/ex5_8_1.sce b/2129/CH5/EX5.8.1/ex5_8_1.sce new file mode 100755 index 000000000..626f82f3c --- /dev/null +++ b/2129/CH5/EX5.8.1/ex5_8_1.sce @@ -0,0 +1,15 @@ +// Exa 5.8.1 +clc; +clear; +close; +// Given data +V_EE = 8;// in V +V_BE = 0.7;// in V +R_E = 1.5;// in k ohm +I_E = (V_EE - V_BE)/R_E;// in mA +I_C = I_E;// in mA +disp(I_C,"The value of I_C in mA is"); +V_CC = 18;// in V +R_C = 1.2;// in kΩ +V_CB = V_CC - (I_C * R_C);// in V +disp(V_CB,"The value of V_CB in V is"); -- cgit