summaryrefslogtreecommitdiff
path: root/3809/CH13/EX13.5/EX13_5.sce
blob: b2c5e87e29bed802c8273610aa576949c943fd9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//Chapter 13, Example 13.5

clc
//Initialisation
ri=1000                         //resistance in ohm
rl=50                                //resistance in ohm
vi=1.82                     //input voltage
vo=15.2                  //output voltage



//Calculation

po=vo**2/rl                            //output power in watt
pi=vi**2/ri                            //input power in watt
ap1=po/pi                           //power gain

//Results
printf("Power Gain, Ap = %d",ap1)