summaryrefslogtreecommitdiff
path: root/1871/CH4/EX4.4
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1871/CH4/EX4.4
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 '1871/CH4/EX4.4')
-rwxr-xr-x1871/CH4/EX4.4/Ch04Ex4.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/1871/CH4/EX4.4/Ch04Ex4.sce b/1871/CH4/EX4.4/Ch04Ex4.sce
new file mode 100755
index 000000000..506a1b521
--- /dev/null
+++ b/1871/CH4/EX4.4/Ch04Ex4.sce
@@ -0,0 +1,11 @@
+// Scilab code Ex4.4 : Pg:140 (2008)
+clc;clear;
+I1 = 1.44; // Intensity of first wave
+I2 = 4.00; // Intensity of second wave
+I = 0.90; // Intensity of resultant wave
+// As I_delta = I1 + I2 + 2*sqrt(I1*I2)*cos(delta), solving for delta
+delta = acosd((I-I1-I2)/(2*sqrt(I1*I2)));
+printf("\nThe lowest phase difference between the waves at interfering point = %3d degree", delta);
+
+// Result
+// The lowest phase difference between the waves at interfering point = 161 degree \ No newline at end of file