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 /1319/CH2/EX2.16/2_16.sce | |
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 '1319/CH2/EX2.16/2_16.sce')
-rw-r--r-- | 1319/CH2/EX2.16/2_16.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/1319/CH2/EX2.16/2_16.sce b/1319/CH2/EX2.16/2_16.sce new file mode 100644 index 000000000..7a21c59c0 --- /dev/null +++ b/1319/CH2/EX2.16/2_16.sce @@ -0,0 +1,19 @@ +// To determine the current in the 2 ohm resistor using superposition theorem
+
+clc;
+clear;
+
+// Voltage Sources
+V1=5;
+V2=10;
+
+// Since both Voltage sources are connected in parallel and are unequal
+R1=%inf; // As seen by 5V Source
+R2=%inf; // As seen by 10V Source
+
+I1=V1/R1; // Current Drawn from 5V supply
+I2=V2/R2; // Current Drawn from 10V supply
+
+I=I1+I2; // Current through 2 ohms resistor
+
+printf('The Current flowing in the 2 ohm resistor = %g A\n',I)
|