diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3856/CH8/EX8.4 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3856/CH8/EX8.4')
-rw-r--r-- | 3856/CH8/EX8.4/Ex8_4.sce | 24 | ||||
-rw-r--r-- | 3856/CH8/EX8.4/Ex8_4.txt | 2 |
2 files changed, 26 insertions, 0 deletions
diff --git a/3856/CH8/EX8.4/Ex8_4.sce b/3856/CH8/EX8.4/Ex8_4.sce new file mode 100644 index 000000000..ad65d9fe7 --- /dev/null +++ b/3856/CH8/EX8.4/Ex8_4.sce @@ -0,0 +1,24 @@ +//Calculate the Equivalent Conductance of Chloride ion at infinite dilution ,How long it will take for the ion to travell between two electrodes
+
+//Example 8.4
+
+clc;
+
+clear;
+
+Uneg=7.91*10^-4; //Mobility of Chloride ion in cm^2 s^-1 V^-1
+
+F=96500; //Faraday's constant in C mol^-1
+
+Lemdaneg=F*Uneg; //Equivalent conductance of the ion at infinite dilution in C s^-1 V^-1 mol^-1 cm^2 (ohm^-1 mol^-1 cm^2 or ohm^-1 equiv^-1 cm^2)
+
+printf("(a)Equivalent Conductance = %.1f ohm^-1 equiv^-1 cm^2",Lemdaneg);
+E=20; //Electric field in V cm^-1
+
+Vneg=E*Uneg; //Ionic velocity of the ion in cm s^-1
+
+d=4; //Distance between two electrodes in cm
+
+t=(d/Vneg)/60; //Time taken by an ion to travel between two electrode in min
+
+printf("\n(b)Time taken = %.1f min",t);
diff --git a/3856/CH8/EX8.4/Ex8_4.txt b/3856/CH8/EX8.4/Ex8_4.txt new file mode 100644 index 000000000..48084b273 --- /dev/null +++ b/3856/CH8/EX8.4/Ex8_4.txt @@ -0,0 +1,2 @@ + (a)Equivalent Conductance = 76.3 ohm^-1 equiv^-1 cm^2
+(b)Time taken = 4.2 min
\ No newline at end of file |