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 /1445/CH1/EX1.20 | |
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 '1445/CH1/EX1.20')
-rw-r--r-- | 1445/CH1/EX1.20/ch1_ex_20.sce | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/1445/CH1/EX1.20/ch1_ex_20.sce b/1445/CH1/EX1.20/ch1_ex_20.sce new file mode 100644 index 000000000..8eb5d8390 --- /dev/null +++ b/1445/CH1/EX1.20/ch1_ex_20.sce @@ -0,0 +1,32 @@ +//CHAPTER 1- D.C. CIRCUIT ANALYSIS AND NETWORK THEOREMS +//Example 20 + +disp("CHAPTER 1"); +disp("EXAMPLE 20"); + +//VARIABLE INITIALIZATION +I=20; //current source in Amperes +v1=10; //voltage source in Volts +v2=40; //voltage source in Volts +r1=8; //in Ohms +r2=5; //in Ohms +r3=4; //in Ohms +r4=12; //in Ohms + +//SOLUTION +req=r1+r2; +rn=(req*r3)/(req+r3); +//finding In by mesh analysis +//(17)I2+(-4)I3=110.......eq (1) +//(1)I2+(-1)I3=-10........eq (2) +//solving the equations by matrix mehod +A=[17 -4;1 -1]; +b=[110;-10]; +x=inv(A)*b; +I2=x(1,:); //to access the 1st element of 2X1 matrix +I3=x(2,:); //to access the 2nd element of 2X1 matrix +In=I3; +I=(rn*In)/(rn+r4); +disp(sprintf("By Norton Theorem, the value of I is %f A",I)); + +//END |