diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /3428/CH15/EX9.15.24/Ex9_15_24.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '3428/CH15/EX9.15.24/Ex9_15_24.sce')
-rw-r--r-- | 3428/CH15/EX9.15.24/Ex9_15_24.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/3428/CH15/EX9.15.24/Ex9_15_24.sce b/3428/CH15/EX9.15.24/Ex9_15_24.sce new file mode 100644 index 000000000..b441837e2 --- /dev/null +++ b/3428/CH15/EX9.15.24/Ex9_15_24.sce @@ -0,0 +1,13 @@ +//Section-9,Example-1,Page no.-E.51 +//To calculate the ionic mobility of K+ ions. +clc; +l=0.04 +t=4000 +I=6*10^-3 +A=0.3*10^-4 +k=1.0 +v=l/t //Velocity of the ion(ms^-1) +F_s=I/(A*k) //Field strength(Vm^-1) +I_mo=v/F_s +disp(I_mo,'Ionic mobility of K+ ion(m^2V^-1s^-1)') + |