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 --- 2528/CH8/EX8.2/Ex8_2.sce | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100755 2528/CH8/EX8.2/Ex8_2.sce (limited to '2528/CH8/EX8.2/Ex8_2.sce') diff --git a/2528/CH8/EX8.2/Ex8_2.sce b/2528/CH8/EX8.2/Ex8_2.sce new file mode 100755 index 000000000..9c693fc0c --- /dev/null +++ b/2528/CH8/EX8.2/Ex8_2.sce @@ -0,0 +1,29 @@ +// Chapter8 +// Page.No-264 +// Example8_2 +// Figure 8.4 +// Power dissipation for Q1 +// Page.No-264 +// Example_8_2 +// Figure 8.4 +// Given +clear;clc; +Vl=11.7; //in V +Rl=20; //in Ohm +Il=Vl/Rl; +printf("\n Output Load Current Il is = %.3f A \n",Il); // Result +Vc=20; Ve=11.7; //in V +Vce=Vc-Ve; +printf("\n Output Load Voltage Vce is = %.2f V\n",Vce); // Result +Pd=Il*Vce; +printf("\n Power dissiption Pd is = %.2f W \n",Pd); // Result +Ib=0.020; //in Amp +B=Il/Ib; +printf("\n Beta is = %.2f \n",B); // Result +Pl=Il*Vl; +printf("\n Power dissiption across load ,Pl is = %.3f W \n",Pl); // Result +Vin=20; //in V +Pin=Il*Vin; //Iin=Il +printf("\n Input Power dissiption ,Pin is = %.2f W \n",Pin); // Result +n=Pl/Pin; +printf("\n Efficiency is = %.3f or %.1f percent \n",n,n*100); // Result -- cgit