diff options
Diffstat (limited to '1409/CH2/EX2.15/2_15.sce')
-rw-r--r-- | 1409/CH2/EX2.15/2_15.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/1409/CH2/EX2.15/2_15.sce b/1409/CH2/EX2.15/2_15.sce new file mode 100644 index 000000000..4e7f1ff55 --- /dev/null +++ b/1409/CH2/EX2.15/2_15.sce @@ -0,0 +1,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 ');
|