blob: fb5a98929b36bfe68ed45af8bbfd8a4783d874b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
clear//
//Variables
Pcdc = 10.0 //Power rating of amplifier (in watt)
n = 0.785 //Maximum overall efficiency
//Calculation
PT = 2 * Pcdc //Total power dissipation of two transistors (in watt)
Poac = (PT * n) / (1-n) //Maximum power output (in watt)
//Result
printf("\n Maximum power output is %0.2f W.",Poac)
|