summaryrefslogtreecommitdiff
path: root/1397/CH1/EX1.12/1_12.sce
diff options
context:
space:
mode:
Diffstat (limited to '1397/CH1/EX1.12/1_12.sce')
-rwxr-xr-x1397/CH1/EX1.12/1_12.sce9
1 files changed, 9 insertions, 0 deletions
diff --git a/1397/CH1/EX1.12/1_12.sce b/1397/CH1/EX1.12/1_12.sce
new file mode 100755
index 000000000..ae0302829
--- /dev/null
+++ b/1397/CH1/EX1.12/1_12.sce
@@ -0,0 +1,9 @@
+//clc();
+clear;
+// To determine the thickness of the glass plate
+lambda=6000*10^(-8); //wavelength of parallel beam of light in centimetres
+mew=1.5; //refractive index of glass plate
+r=50; //angle of refraction in degrees
+n=1; //for least thickness
+t=(n*lambda)/(2*mew*cosd(r));
+printf("the least thickness of the glass plate in centimetres which will appear dark by reflection is %f cm",t);