diff options
Diffstat (limited to '3840/CH5/EX5.6/Ex5_6.sce')
-rw-r--r-- | 3840/CH5/EX5.6/Ex5_6.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/3840/CH5/EX5.6/Ex5_6.sce b/3840/CH5/EX5.6/Ex5_6.sce new file mode 100644 index 000000000..45dbf9c65 --- /dev/null +++ b/3840/CH5/EX5.6/Ex5_6.sce @@ -0,0 +1,19 @@ +clear +// +// +// + +//Variable declaration +D=8.92*10**3 //density(kg/m**3) +rho=1.73*10**-8 //resistivity(ohm m) +W=63.5 //atomic weight +Na=6.02*10**26 //avagadro number +e=1.6*10**-19 //charge(c) + +//Calculation +n=D*Na/W +mew=1/(rho*n*e) //mobility(m**2/Vs) + +//Result +printf("\n mobility is %0.5f m**2/Vs",mew) +printf("\n answer given in the book is wrong") |