blob: d9d2e4a1ef0c08bd8a29fdf0f94bedf3fa885d5d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//Example_a_3_14 page no:143
clc;
V=10;
R1=2;
R2=4;
R3=3;
I5=2.14*(4/12);
Rt=10/2.14
I2=10/4.67;//in A
I3=10/9.33;//in A
I2=1.07*(4/6);//in A
ratio=10/0.71;
disp(ratio,"the ration of voltage to current is");
disp("the ratio is same in both cases and the reciprocity theorem is verified");
|