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.11 | |
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.11')
-rw-r--r-- | 1319/CH2/EX2.11/2_11.sce | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/1319/CH2/EX2.11/2_11.sce b/1319/CH2/EX2.11/2_11.sce new file mode 100644 index 000000000..b81674ece --- /dev/null +++ b/1319/CH2/EX2.11/2_11.sce @@ -0,0 +1,38 @@ +//To find the current through the branch AB
+
+clc;
+clear;
+
+Zl=2; // Resistor Across AB
+
+// Voltage Sources
+V1=20;
+V2=10;
+
+//Resistances in order as seen from 20 V side exculding the resistance between A and B
+R1=2;
+R2=2;
+R3=2;
+R4=4;
+R5=4;
+
+// Characteristic Equation
+//10i1-4i2 =10
+//-4i1+8i2 =10
+
+Z=[10 -4; -4 8]; // Resistance Matrix
+V=[10;10]; // Effective Voltages Matrix
+I=inv(Z)*V; // Current Matrix
+i1=I(1);
+i2=I(2);
+
+Vth=V1-(i1*(R1+R2));
+
+Reff=R4*R5/(R4+R5); // Effective resistance of R4 and R5 (Parallel)
+Rt1=Reff+R3; // Effective Resistance on right side of AB
+Rt2=R1+R2; // Effective Resistance on left side of AB
+Zth=Rt1*Rt2/(Rt1+Rt2);
+
+Current= Vth/(Zl+Zth); // Current Through branch AB
+
+printf('The Current through branch AB = %g A\n',Current)
|