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 /1430/CH4/EX4.9 | |
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 '1430/CH4/EX4.9')
-rw-r--r-- | 1430/CH4/EX4.9/exa4_9.sce | 8 | ||||
-rw-r--r-- | 1430/CH4/EX4.9/exa4_9.txt | 10 |
2 files changed, 18 insertions, 0 deletions
diff --git a/1430/CH4/EX4.9/exa4_9.sce b/1430/CH4/EX4.9/exa4_9.sce new file mode 100644 index 000000000..00debd3c2 --- /dev/null +++ b/1430/CH4/EX4.9/exa4_9.sce @@ -0,0 +1,8 @@ +// Example 4.9
+// Mesh Analysis with a Supernode
+// From figure 4.31, Applying KVL in Supermesh we get,
+disp("6*(i_1-5)+10*i_1+3*(i_1+4)-20=0")
+// Rearrangements gives
+disp("(6+10+3)*i_1=6*5-(3*4)+20")
+i_1=linsolve((6+10+3),-((6*5)-(3*4)+20))// Linear equation solver
+disp(i_1,"Current through the Upper Portion of the Supermesh(in Amps)=")
diff --git a/1430/CH4/EX4.9/exa4_9.txt b/1430/CH4/EX4.9/exa4_9.txt new file mode 100644 index 000000000..d830d694a --- /dev/null +++ b/1430/CH4/EX4.9/exa4_9.txt @@ -0,0 +1,10 @@ +
+-->exec('C:\Users\sangeet\Documents\Scilab\Circuits\Chapter 4\exa4.9.sce', -1)
+
+ 6*(i_1-5)+10*i_1+3*(i_1+4)-20=0
+
+ (6+10+3)*i_1=6*5-(3*4)+20
+
+ Current through the Upper Portion of the Supermesh(in Amps)=
+
+ 2.
|