blob: 1b6be0420ab7a0f455f3b59bffe34d9a36369fab (
plain)
1
2
3
4
5
6
7
8
9
|
clc,clear
printf('Example 7.2\n\n')
I=10 //strength of current
T=20*60 //time of flow of current in seconds
W=13.42 //weight of silver deposited in grams
Z= W/(I*T) //Electrochemical equivalent of silver
printf('Electrochemical equivalent of silver = %.6f g/coulomb',Z)
|