summaryrefslogtreecommitdiff
path: root/3651/CH4/EX4.8/8.sce
blob: d6ac49552a3410c6ac1344b226d0867d363fafea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//Variable declaration
e=1.6*10**-19
E=1                    //(V/m)
rho=1.54*10**-8
n=5.8*10**28
m=9.1*10**-31
//Calculations
T=m/(rho*n*e**2)
Me=(e*T)/m
Vd=Me*E

//Result 
printf('Relaxation time =%0.3f *10**-14 second  \n ',(T*10**14))
printf('Mobility =%0.3f  *10**-3 m**2/volt-s \n ',(Me*10**3))
printf('Drift Velocity=%0.3f m/s  \n ',(Vd*100))