summaryrefslogtreecommitdiff
path: root/1991/CH3/EX3.6/6.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1991/CH3/EX3.6/6.sce
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 '1991/CH3/EX3.6/6.sce')
-rwxr-xr-x1991/CH3/EX3.6/6.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/1991/CH3/EX3.6/6.sce b/1991/CH3/EX3.6/6.sce
new file mode 100755
index 000000000..66ca751af
--- /dev/null
+++ b/1991/CH3/EX3.6/6.sce
@@ -0,0 +1,16 @@
+clc
+clear
+//input
+k=16
+w=23
+//calculation
+//1.wavelength
+l=2*%pi/k
+//output
+printf("the wavelength is %3.3f m",l)
+//2.wavespeed
+v=(l*w)/(2*%pi)
+printf("\nthe wavespeed is %3.3f m/s",v)
+//3.pase difference
+pha=(0.5*2*%pi)/0.39 // phase difference of molecules 0.5m apart
+printf("\n the phase difference is %3.3f radians",pha)