summaryrefslogtreecommitdiff
path: root/3753/CH1/EX1.4/Ex1_4.sce
blob: 32e33a179dee0479e8155072f36ae3599d469554 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//Example number 1.4, Page number 1.36

clc;clear;close


//Variable declaration
lamda=5893*10**-10           //Angstroms to mts
x=4*10**-2 // unitless
Beta=1*10**-3 // unitless

//Calculation
t=(lamda*x)/(2*Beta)

//Result
printf("t=%0.3f micron",(t*10**6))