blob: 07cc0fffc72dd0729a7884f0310e9071a9e9b70d (
plain)
1
2
3
4
5
6
7
|
//Chapter 10, Problem 19
clc;
E1=1.0186; //emf of standard cell
I1=400e-3; //balance length when using standard cell
I2=650e-3; //balance length when using dry cell
E2=E1*(I2/I1); //calculating emf of dry cell
printf("e.m.f of dry cell = %f V",E2);
|