summaryrefslogtreecommitdiff
path: root/1409/CH2/EX2.6/2_6.sce
diff options
context:
space:
mode:
Diffstat (limited to '1409/CH2/EX2.6/2_6.sce')
-rw-r--r--1409/CH2/EX2.6/2_6.sce9
1 files changed, 9 insertions, 0 deletions
diff --git a/1409/CH2/EX2.6/2_6.sce b/1409/CH2/EX2.6/2_6.sce
new file mode 100644
index 000000000..a972f55a5
--- /dev/null
+++ b/1409/CH2/EX2.6/2_6.sce
@@ -0,0 +1,9 @@
+clc;
+//page no: 2-14
+//Example-2.6
+//Given Total antenna current is 5A, and modulation index is 0.6
+Itotal=5;
+u=0.6;
+//Itotal=Ic*sqrt(1+(u^2/2));
+Ic=Itotal/sqrt(1+(u^2/2));
+disp(+'A',Ic,'Antenna current when only carrier is sent is ');