summaryrefslogtreecommitdiff
path: root/3537/CH1/EX1.49/Ex1_49.sce
blob: a21a9f01ec6be94f596af11e24460b44d2b79fa2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//Example 1_49
clc();
clear;
//To find the thickness of the thinnest film
u=1.33
lemda=6000                    //units in angstroam
lemda=6000*10^-8              //units in cm
i=0                          //units in degrees
r=0                          //units in degrees
n=1
t=(n*lemda)/(2*u*cos(r))
printf("Thickness of the thinnest film is %.7f cm",t)