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.8 | |
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.8')
-rw-r--r-- | 1445/CH1/EX1.8/ch1_ex_8.sce | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/1445/CH1/EX1.8/ch1_ex_8.sce b/1445/CH1/EX1.8/ch1_ex_8.sce new file mode 100644 index 000000000..fe06ea422 --- /dev/null +++ b/1445/CH1/EX1.8/ch1_ex_8.sce @@ -0,0 +1,26 @@ +//CHAPTER 1- D.C. CIRCUIT ANALYSIS AND NETWORK THEOREMS +//Example 8 + +disp("CHAPTER 1"); +disp("EXAMPLE 8"); + +//VARIABLE INITIALIZATION +I=2; //current source in Amperes +r1=1/2; //in Ohms +r2=1/2; //in Ohms + +//SOLUTION +//current source 2 A is converted into two 1V sources +v1=I*r1; +v2=I*r2; +disp(sprintf("The voltage sources after conversion are %d V and %d V",v1,v2)); +//(5/2)I1+(-1)I2=0........eq (1) +//(-1)I1+(7/2)I2=2........eq (2) +//using matrix method to solve the set of equations +A=[5/2 -1;-1 7/2]; +b=[2;2]; +x=inv(A)*b; +x=x(2,:); +disp(sprintf("The current in 2Ω resistor is %f A",x)); + +//END |