summaryrefslogtreecommitdiff
path: root/3556/CH4/EX4.13/Ex4_13.sce
diff options
context:
space:
mode:
Diffstat (limited to '3556/CH4/EX4.13/Ex4_13.sce')
-rw-r--r--3556/CH4/EX4.13/Ex4_13.sce38
1 files changed, 38 insertions, 0 deletions
diff --git a/3556/CH4/EX4.13/Ex4_13.sce b/3556/CH4/EX4.13/Ex4_13.sce
new file mode 100644
index 000000000..f2925dfe0
--- /dev/null
+++ b/3556/CH4/EX4.13/Ex4_13.sce
@@ -0,0 +1,38 @@
+clc
+// Fundamental of Electric Circuit
+// Charles K. Alexander and Matthew N.O Sadiku
+// Mc Graw Hill of New York
+// 5th Edition
+
+// Part 1 : DC Circuits
+// Chapter 4 : Circuit Theorems
+// Example 4 - 13
+
+clear; clc; close;
+//
+// Given data
+R2 = 2.00;
+R3 = 3.00;
+R6 = 6.00;
+R12 = 12.00;
+Vth = 22.00;
+//
+// Calculations
+// Series R2 and R3
+Rs1 = R2 + R3;
+// Parallel R6 and R12
+Rp1 = (R6*R12)/(R6 + R12);
+// Resistance Total
+Rt = Rs1 + Rp1;
+// Calculations Maximum Power
+Pmax = (Vth^2)/(4*Rt);
+//
+// Display the result
+disp("Example 4-13 Solution : ");
+printf(" \n Rth = Rl = %.3f Ohm",Rt)
+printf(" \n Pmax = Maximum Power = %.3f Watt",Pmax)
+
+
+
+
+