summaryrefslogtreecommitdiff
path: root/2708/CH1/EX1.14/ex_1_14.sce
blob: 420eee1887b90260e91d44db41086c226f96b559 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//Example 1.4 // thickness of plate 
clc;
clear;
//given data :
u=1.5;//referactive index of glass plate
r=60;// refraction angle in degree
r=r*%pi/180;// to convert in radian
w=5890D-10;// wavelength in m
//for least thickness
t=w/(2*u*cos(r));
t=t*1D10;// to convert in angstrom
disp(t,"thickness of plate in A")