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 --- 2342/CH6/EX6.10/EX6_10.sce | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100755 2342/CH6/EX6.10/EX6_10.sce (limited to '2342/CH6/EX6.10') diff --git a/2342/CH6/EX6.10/EX6_10.sce b/2342/CH6/EX6.10/EX6_10.sce new file mode 100755 index 000000000..ae3a4dc1e --- /dev/null +++ b/2342/CH6/EX6.10/EX6_10.sce @@ -0,0 +1,22 @@ +// Exa 6.10 +format('v',6) +clc; +clear; +close; +// Given data +Beta= 100; +V_CC= 12;// in V +V_BE= 0;// in V +I_B= 0.3*10^-3;// in A +R_C= 300;// in Ω +// Applying KVL for input side, V_CC= I_B*R_B+V_BE or +R_B= (V_CC-V_BE)/I_B;// in Ω +R_B= R_B*10^-3;// in k ohm +disp(R_B,"The value of base resistor in kΩ is : ") +I_C= Beta*I_B;// in A +// The collector to emitter voltage +V_CE= V_CC-I_C*R_C;// in V +disp(V_CE,"The collector to emitter voltage in V is : ") +// The stability factor, +S= 1+Beta; +disp(S,"The stability factor is : ") -- cgit