diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /1319/CH2/EX2.17/2_17.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '1319/CH2/EX2.17/2_17.sce')
-rw-r--r-- | 1319/CH2/EX2.17/2_17.sce | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/1319/CH2/EX2.17/2_17.sce b/1319/CH2/EX2.17/2_17.sce new file mode 100644 index 000000000..ef0157c39 --- /dev/null +++ b/1319/CH2/EX2.17/2_17.sce @@ -0,0 +1,36 @@ +//To determine the value of RL for Max power transfer
+
+clc;
+clear;
+
+Vs=10/sqrt(2); // RMS Value of Voltage
+
+//Resistances of the circuit from the Source side
+R1=10;
+R2=15;
+R3=20;
+R4=5;
+R5=10;
+
+Ref1=R3+(R1*R2/(R1+R2));
+Ref2=R5+(Ref1*R4/(Ref1+R4));
+
+Rab=Ref2;
+
+// Characteristic Loop Equation of the first two loops for current flowing in clockwise direction
+//25i1-15i2 = 10/(2^0.5)
+//-15i1+40i2 = 0
+
+Z=[10 25;-15 40];
+V=[Vs;0];
+I=inv(Z)*V;
+i1=I(1);
+i2=I(2);
+
+Vth=i2*R4;
+
+Powtrns=(Vth^2)/(4*Rab);
+
+printf('The value of resistance RL for maximum power transfer = %g ohms\n',Rab)
+printf('The value of power transfered = %g mW\n',Powtrns*1000)
+
|