diff options
Diffstat (limited to '3763/CH5/EX5.2/Ex5_2.sce')
-rw-r--r-- | 3763/CH5/EX5.2/Ex5_2.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/3763/CH5/EX5.2/Ex5_2.sce b/3763/CH5/EX5.2/Ex5_2.sce new file mode 100644 index 000000000..056f7c4b0 --- /dev/null +++ b/3763/CH5/EX5.2/Ex5_2.sce @@ -0,0 +1,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) |