summaryrefslogtreecommitdiff
path: root/3665/CH9/EX9.3/Ex9_3.sce
blob: d95d9dafa57798f5494ff691ca53970bc39c9624 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
clc//
//
//

//Variable declaration
w=5*10^-6;     //thickness(m)
vsat=10^5;     //velocity(m/s)

//Calculation
tow_drift=w/vsat;     //transit time(s)

//Result
printf("\n transit time is %0.3f s",tow_drift)