blob: 31e7b1a4ffa21708b5a79afbaa588daccd6c477a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//chapter15
//example15.5
//page328
Pdc=10 // W
Po=4 // W
eta=(Po/Pdc)*100
// maximum power dissipation in a transistor occurs under zero signal conditions so
P=Pdc
printf("collector efficiency = %.3f percent \n",eta)
printf("power rating of transistor = %.3f W \n",P)
|