summaryrefslogtreecommitdiff
path: root/1445/CH1/EX1.48
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /1445/CH1/EX1.48
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '1445/CH1/EX1.48')
-rw-r--r--1445/CH1/EX1.48/ch1_ex_48.sce32
1 files changed, 32 insertions, 0 deletions
diff --git a/1445/CH1/EX1.48/ch1_ex_48.sce b/1445/CH1/EX1.48/ch1_ex_48.sce
new file mode 100644
index 000000000..b3955c327
--- /dev/null
+++ b/1445/CH1/EX1.48/ch1_ex_48.sce
@@ -0,0 +1,32 @@
+//CHAPTER 1- D.C. CIRCUIT ANALYSIS AND NETWORK THEOREMS
+//Example 48
+
+disp("CHAPTER 1");
+disp("EXAMPLE 48");
+
+//VARIABLE INITIALIZATION
+v1=2.05; //1st cell in Volts
+v2=2.15; //2nd cell in Volts
+r1=0.05; //in Ohms
+r2=0.04; //in Ohms
+r3=1; //in Ohms
+
+//SOLUTION
+//(r3+r1)I1+(r3)I2=v1......eq (1)
+//(r3)I1+(r3+r2)I2=v2......eq (2)
+req1=r3+r1;
+req2=r3+r2;
+A=[req1 r3;r3 req2];
+b=[v1;v2];
+x=inv(A)*b;
+I1=x(1,:); //to access the 1st element of 2X1 matrix
+I2=x(2,:); //to access the 2nd element of 2X1 matrix
+I=I1+I2;
+pd=I*r3;
+disp(sprintf("Current through B1 is %f A",I1));
+disp(sprintf("Current through B2 is %f A",I2));
+disp(sprintf("Potential difference across AC is %f V",pd));
+
+//END
+
+