summaryrefslogtreecommitdiff
path: root/147/CH1/EX1.4
diff options
context:
space:
mode:
Diffstat (limited to '147/CH1/EX1.4')
-rw-r--r--147/CH1/EX1.4/Example1_4.sce18
-rw-r--r--147/CH1/EX1.4/Result1_4.txt1
2 files changed, 19 insertions, 0 deletions
diff --git a/147/CH1/EX1.4/Example1_4.sce b/147/CH1/EX1.4/Example1_4.sce
new file mode 100644
index 000000000..87ab958f3
--- /dev/null
+++ b/147/CH1/EX1.4/Example1_4.sce
@@ -0,0 +1,18 @@
+//Resistance R
+close();
+clear;
+clc;
+R1 = 1;//ohm
+R2 = 2;
+R3 = 3;
+R4 = 6;
+R5 = 6;
+R6 = 16;
+R7 = 8;
+//Resistance between cd 'Rcd'
+Rcd = (R2*R3*R4)/(R2*R3+R3*R4+R4*R2);
+Raes = R1+Rcd+R5;
+Rae = Raes*R7/(Raes+R7);
+//Resistance between ab 'Rab'
+Rab = Rae+R6;
+mprintf('Rab = %0.0f ohm',Rab); \ No newline at end of file
diff --git a/147/CH1/EX1.4/Result1_4.txt b/147/CH1/EX1.4/Result1_4.txt
new file mode 100644
index 000000000..eac5b9771
--- /dev/null
+++ b/147/CH1/EX1.4/Result1_4.txt
@@ -0,0 +1 @@
+Rab = 20 ohm \ No newline at end of file