diff options
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.
|