diff options
Diffstat (limited to '2465/CH9/EX9.11/Example_11.sce')
-rw-r--r-- | 2465/CH9/EX9.11/Example_11.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/2465/CH9/EX9.11/Example_11.sce b/2465/CH9/EX9.11/Example_11.sce new file mode 100644 index 000000000..3c674c678 --- /dev/null +++ b/2465/CH9/EX9.11/Example_11.sce @@ -0,0 +1,17 @@ +//Chapter-9,Example 11,Page 222
+clc();
+close();
+
+u= 0.196 //speed of Ag+
+
+v=1 //speed of NO3-
+
+t_Ag=u/(u+v) //transport number of Ag+ ions
+
+t_NO3= 1-t_Ag //transportnumber of NO3- ions
+
+printf('the transport number of Ag+ ions is %.3f',t_Ag)
+
+printf('\n the transport number of NO3+ ions is %.3f',t_NO3)
+
+//mistake in textbook
|