summaryrefslogtreecommitdiff
path: root/3754/CH27/EX27.7/27_7.sce
blob: a15ae20eb6cbec4c33e87123e734610a23aed975 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
clear//

//Variables 

VCC = 20.0                       //Supply voltage (in volts)
VCEQ = 10.0                      //Collector-to-emitter voltage (in volts)
ICQ = 600.0 * 10**-3             //Collector current (in Ampere)
RL = 16.0                        //Load resistance (in ohm)
Ip = 300.0 * 10**-3              //Output current variation (in Ampere)

//Calculation

Pindc = VCC * ICQ                //dc power supplied (in watt)
PRLdc = ICQ**2 * RL              //dc power consumed by load resistor (in watt)  
I = Ip / 2**0.5                  //r.m.s. value of Collector current (in Ampere) 
Poac = I**2 * RL                 //a.c. power across load resistor (in ohm) 
Ptrdc = Pindc - PRLdc            //dc power delievered to transistor (in watt)
Pcdc = Ptrdc - Poac              //dc power wasted in transistor collector (in watt) 
no = Poac / Pindc                //Overall efficiency
nc = Poac / Ptrdc                //Collector efficiency  

//Result

printf("\n Power supplied by the d.c. source to the amplifier circuit is  %0.3f  W.",Pindc)
printf("\n D.C. power consumed by the load resistor is  %0.3f  W.",PRLdc)
printf("\n A.C. power developed across the load resistor is  %0.3f  W.",Poac)
printf("\n D.C. power delivered to the transistor is  %0.3f  W.",Ptrdc)
printf("\n D.C. power wasted in the transistor collector is  %0.3f  W.",Pcdc)
printf("\n Overall efficiency is  %0.3f .",no)
printf("\n Collector efficiency is  %0.1f percentage.",nc * 100)