summaryrefslogtreecommitdiff
path: root/608/CH13/EX13.22
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /608/CH13/EX13.22
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '608/CH13/EX13.22')
-rwxr-xr-x608/CH13/EX13.22/13_22.sce24
1 files changed, 24 insertions, 0 deletions
diff --git a/608/CH13/EX13.22/13_22.sce b/608/CH13/EX13.22/13_22.sce
new file mode 100755
index 000000000..d54a5d9f2
--- /dev/null
+++ b/608/CH13/EX13.22/13_22.sce
@@ -0,0 +1,24 @@
+//Problem 13.22: Find the value of the load resistor RL shown in Figure 13.51(a) that gives maximum power dissipation and determine the value of this power.
+
+//initializing the variables:
+V = 15; // in volts
+R1 = 3; // in ohms
+R2 = 12; // in ohms
+
+//calculation:
+//Resistance RL is removed from the circuit as shown in Figure 13.51(b).
+//The p.d. across AB is the same as the p.d. across the 12 ohm resistor.
+E = (R2/(R1 + R2))*V
+//Removing the source of e.m.f. gives the circuit of Figure 13.51(c),
+//from which resistance, r
+r = R1*R2/(R1 + R2)
+//The equivalent Th´evenin’s circuit supplying terminals AB is shown in Figure 13.51(d), from which, current I = E/(r + RL)
+//For maximum power, RL = r
+RL = r
+I = E/(r + RL)
+//Power, P, dissipated in load RL, P
+P = RL*I^2
+
+printf("\n\n Result \n\n")
+printf("\n (a) the value of the load resistor RL is %.1f ohm",RL)
+printf("\n (b) maximum power dissipation = %.0f W",P) \ No newline at end of file