From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 147/CH2/EX2.6/Example2_6.sce | 25 +++++++++++++++++++++++++ 147/CH2/EX2.6/Result2_6.txt | 1 + 2 files changed, 26 insertions(+) create mode 100644 147/CH2/EX2.6/Example2_6.sce create mode 100644 147/CH2/EX2.6/Result2_6.txt (limited to '147/CH2/EX2.6') diff --git a/147/CH2/EX2.6/Example2_6.sce b/147/CH2/EX2.6/Example2_6.sce new file mode 100644 index 000000000..007f351d8 --- /dev/null +++ b/147/CH2/EX2.6/Example2_6.sce @@ -0,0 +1,25 @@ +//Resistance R, Voltage V +close(); +clear; +clc; +R1 = 6;//ohm +R2 = 1; +R3 = 2; +R4 = 3; +R5 = 10; +V1 = 10;//V +V2 = 20; +//Short circuiting V1 +//Equvalent resistance across V2 'Req' +Req = R5+(R1*R2/(R1+R2)+R3+R4)/(R4*(R1*R2/(R1+R2)+R3)); +I_1 = -V2/Req; +//Short circutng V2 +A = [-(R1+R2) R2 0;R2 -(R2+R3+R4) R4;0 R4 -(R3+R4)]; +C = [-V1;0;0]; +B = inv(A)*C; +I1 = B(1,1); +I2 = B(2,1); +I3 = B(3,1); +I_2 = I3; +I = I_1+I_2; +mprintf('I = %0.2f A',I); \ No newline at end of file diff --git a/147/CH2/EX2.6/Result2_6.txt b/147/CH2/EX2.6/Result2_6.txt new file mode 100644 index 000000000..f804f7ba6 --- /dev/null +++ b/147/CH2/EX2.6/Result2_6.txt @@ -0,0 +1 @@ +I = -1.66 A \ No newline at end of file -- cgit