blob: 798fb7b1a407191a583fd973cdb43f9f9537a1e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//Example_a_7_19 page no:285
clc;
i=((100/(4+%i*10))-((5*4*%i)/(4+%i*10)));
Voc=100-(4*(3.55-1.48*%i));
Isc=25+50*%i;
Zth=Voc/Isc;
Z=conj(Zth);
disp(Z,"the value of load that will receive maximum power is (in ohm)");
I=Voc/(Zth+Z);
Imag=sqrt(real(I)^2+imag(I)^2);
P=Imag^2*real(Z);
disp(P,"the maximum power delivered to the load is (in W)");
//power values varies with textbook hence textbook uses rounded off values
|