summaryrefslogtreecommitdiff
path: root/2465/CH9/EX9.11/Example_11.sce
blob: 3c674c67852c3e1cda0ada8ad5e3b3036398c4bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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