summaryrefslogtreecommitdiff
path: root/1409/CH2/EX2.15/2_15.sce
blob: 4e7f1ff55669f6986ba071e5486393c145137da6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
clc;
//page no:2-27
//Exmaple-2.15
//Given modulation index is 0.5 and antenna current is 12A
u=0.5;
It=12;
Ic=It/sqrt(1+(u^2/2));
disp(+'A',Ic,'Ic=');
U=0.9;
Ic=11.31;
It=Ic*sqrt(1+(U^2/2));
disp(+'A',It,'Antenna current is ');