blob: bef89626afb20b99dfb64e22114a5c4b5ebdef94 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//Example_a_3_4 page no:133
clc;
Rab=4;
V12=0;
V5=5*4;
V3=4*3;
Vab=V12+V5+V3;
I12=0;
I5=5;
I3=3;
Iab=I12+I5+I3;
disp(Vab,"the thevenin voltage is (in V)");
disp(Rab,"the thevenin resistance is (in ohm)");
disp(Iab,"the norton current is (in A)");
disp(Rab,"the norton resistance is (in ohm)");
|