diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1172/CH1/EX1.14 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '1172/CH1/EX1.14')
-rwxr-xr-x | 1172/CH1/EX1.14/1_14.txt | 6 | ||||
-rwxr-xr-x | 1172/CH1/EX1.14/Example1_14.sce | 16 |
2 files changed, 22 insertions, 0 deletions
diff --git a/1172/CH1/EX1.14/1_14.txt b/1172/CH1/EX1.14/1_14.txt new file mode 100755 index 000000000..4431fb26b --- /dev/null +++ b/1172/CH1/EX1.14/1_14.txt @@ -0,0 +1,6 @@ + # Problem 14 #
+
+ Standard formula used
+ 2*t = p*lambda
+ Thickness of air film is 0.013000 cm.
+
diff --git a/1172/CH1/EX1.14/Example1_14.sce b/1172/CH1/EX1.14/Example1_14.sce new file mode 100755 index 000000000..6f8011321 --- /dev/null +++ b/1172/CH1/EX1.14/Example1_14.sce @@ -0,0 +1,16 @@ +clc
+//Given
+no_fringe = 250 // Number of fringes observed through telescope
+lambda1 = 4e-5// wavelength of incident light in cm
+lambda2 = 6.5e-5 // wavelength of incident light in cm
+
+//Sample Problem 14 Page No. 52
+printf("\n # Problem 14 # \n")
+printf(" \n Standard formula used \n 2*t = p*lambda")
+p = no_fringe * lambda1 / (lambda2- lambda1)
+t = p * lambda2 / 2
+printf("\n Thickness of air film is %f cm. ", t)
+
+
+
+
|