summaryrefslogtreecommitdiff
path: root/Working_Examples/293/CH3/EX3.13/eg3_13.sce
diff options
context:
space:
mode:
Diffstat (limited to 'Working_Examples/293/CH3/EX3.13/eg3_13.sce')
-rwxr-xr-xWorking_Examples/293/CH3/EX3.13/eg3_13.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/Working_Examples/293/CH3/EX3.13/eg3_13.sce b/Working_Examples/293/CH3/EX3.13/eg3_13.sce
new file mode 100755
index 0000000..7de1797
--- /dev/null
+++ b/Working_Examples/293/CH3/EX3.13/eg3_13.sce
@@ -0,0 +1,15 @@
+//circuit parameters
+//voltage sources
+E1 = 120;
+E2 = 65;
+//resistances
+R1 = 40;
+R2 = 11;
+R3 = 60;
+
+I = (E1/R1) + (E2/R3); //norton's current source
+Req = R1*R3/(R1 + R3); //equivalent resistance
+
+I2 = I*Req/(Req + R2); //current flowing through R2
+
+disp(I2,"current flowing through R2 = ") \ No newline at end of file