blob: af0ca40048a28b0a7f1a4c2fdc498ab6d7d11dcc (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//Example 1_18
clc();
clear;
//To calculate the smallest thickness of the plate
lemda=5890 //units in angstroam
lemda=5890*10^-10 //units in mts
u=1.5
n=1
r=60 //units in degree
t=(n*lemda)/(2*u*cos(r*%pi/180))*10^10
printf("Thickness of the glass plate is %.0f angstroam",t)
|