summaryrefslogtreecommitdiff
path: root/992/CH3/EX3.1
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /992/CH3/EX3.1
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '992/CH3/EX3.1')
-rwxr-xr-x992/CH3/EX3.1/EX3_1.sce19
-rwxr-xr-x992/CH3/EX3.1/ex3_1.txt19
-rwxr-xr-x992/CH3/EX3.1/ex3_1ans.txt5
3 files changed, 43 insertions, 0 deletions
diff --git a/992/CH3/EX3.1/EX3_1.sce b/992/CH3/EX3.1/EX3_1.sce
new file mode 100755
index 000000000..293e9c306
--- /dev/null
+++ b/992/CH3/EX3.1/EX3_1.sce
@@ -0,0 +1,19 @@
+
+//Exa:3.1
+clc;
+clear;
+close;
+//Given:
+w1=4.8;//in KHz
+v1=2.4;
+v2=7.2;
+fm=0.5;//in KHz
+w2=w1*v2/v1;//in KHz
+v3=10;
+w3=w1*v3/v1;
+m1=w1/fm;
+m2=w2/fm;
+m3=w3/fm;
+printf("\n 1)deviation = %f KHz and modulation index = %f",w1,m1);
+printf("\n 2)deviation = %f KHz and modulation index = %f",w2,m2);
+printf("\n 3)deviation = %f KHz and modulation index = %f",w3,m3); \ No newline at end of file
diff --git a/992/CH3/EX3.1/ex3_1.txt b/992/CH3/EX3.1/ex3_1.txt
new file mode 100755
index 000000000..f97eadf8c
--- /dev/null
+++ b/992/CH3/EX3.1/ex3_1.txt
@@ -0,0 +1,19 @@
+//Caption:Program to calculate deviation and modulation index.
+//Exa:3.1
+clc;
+clear;
+close;
+//Given:
+w1=4.8;//in KHz
+v1=2.4;
+v2=7.2;
+fm=0.5;//in KHz
+w2=w1*v2/v1;//in KHz
+v3=10;
+w3=w1*v3/v1;
+m1=w1/fm;
+m2=w2/fm;
+m3=w3/fm;
+printf("\n 1)deviation = %f KHz and modulation index = %f",w1,m1);
+printf("\n 2)deviation = %f KHz and modulation index = %f",w2,m2);
+printf("\n 3)deviation = %f KHz and modulation index = %f",w3,m3); \ No newline at end of file
diff --git a/992/CH3/EX3.1/ex3_1ans.txt b/992/CH3/EX3.1/ex3_1ans.txt
new file mode 100755
index 000000000..1e1ed4f4a
--- /dev/null
+++ b/992/CH3/EX3.1/ex3_1ans.txt
@@ -0,0 +1,5 @@
+
+ 1)deviation = 4.800000 KHz and modulation index = 9.600000
+ 2)deviation = 14.400000 KHz and modulation index = 28.800000
+ 3)deviation = 20.000000 KHz and modulation index = 40.000000
+ Execution done. \ No newline at end of file