summaryrefslogtreecommitdiff
path: root/Working_Examples/293/CH3/EX3.3/eg3_3.sce
diff options
context:
space:
mode:
Diffstat (limited to 'Working_Examples/293/CH3/EX3.3/eg3_3.sce')
-rwxr-xr-xWorking_Examples/293/CH3/EX3.3/eg3_3.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/Working_Examples/293/CH3/EX3.3/eg3_3.sce b/Working_Examples/293/CH3/EX3.3/eg3_3.sce
new file mode 100755
index 0000000..980d333
--- /dev/null
+++ b/Working_Examples/293/CH3/EX3.3/eg3_3.sce
@@ -0,0 +1,12 @@
+// resistances in ohms
+R1 = 25;
+R2 = 300;
+R3 = 80;
+R4 = 30;
+R5 = 60;
+
+Rcd = R5*R4/(R5 + R4);
+Rbd1 = Rcd + R3;
+Rbd = Rbd1*R2/(Rbd1 + R2);
+Req = Rbd + R1; // equivalent resistance
+disp(Req, "equivalent resistance = ") \ No newline at end of file