summaryrefslogtreecommitdiff
path: root/1409/CH2/EX2.5/2_5.sce
blob: 0f2e1e31f1ded9663667e8f08ea8ac85d90a6ecd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
clc;
//page no:2-12
//Example 2.5
//Given power= 20 kilowatts and modulation % =75
Ptotal=20;
u=0.75;
ptotal=Pc*(1+(u^2/2));
Pc=Ptotal/(1+(u^2/2));
disp(+'kW',Pc,'Carrier Power is ');
Pc=15.6;
Psb=Pc*(u^2/4);
disp(+'kW',Psb,'Sideband power is ');
//As the power in both sidebands is equal
disp(+'kW',Psb,'Upper Sideband power is ');
disp(+'kW',Psb,'Lower Sideband power is ');