summaryrefslogtreecommitdiff
path: root/3763/CH5/EX5.2/Ex5_2.sce
blob: 056f7c4b070009b5cbe3b593c3e001479b223634 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
clear
//
//
//

//Variable declaration
e=1.602*10**-19
m=9.1*10**-31  //mass(kg)
tow=2*10**-14    //time(s)
n=8.5*10**28    

//Calculation
sigma=n*e**2*tow/m    //electrical conductivity(ohm-1 m-1)

//Result
printf("\n electrical conductivity is %0.1f  *10**7 ohm-1 m-1",sigma/10**7)