blob: 2ec82705a085f4b8f28819b7d5c5123136e59f52 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//chapter19
//example19.9
//page422
// block diagram is for understanding purpose inly.It is not required to solve the example
m=1
eta=0.72
// carrier is not affected by modulating signal so its power level remains unchanged before and after modulation
Pc=40 // kW
Ps=0.5*m^2*Pc
P_audio=Ps/eta
printf("carrier power after modulation = %.3f kW \n",Pc)
printf("required audio power = %.3f kW \n",P_audio)
|