summaryrefslogtreecommitdiff
path: root/608/CH20/EX20.22/20_22.sce
diff options
context:
space:
mode:
Diffstat (limited to '608/CH20/EX20.22/20_22.sce')
-rwxr-xr-x608/CH20/EX20.22/20_22.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/608/CH20/EX20.22/20_22.sce b/608/CH20/EX20.22/20_22.sce
new file mode 100755
index 000000000..c30b07558
--- /dev/null
+++ b/608/CH20/EX20.22/20_22.sce
@@ -0,0 +1,13 @@
+//Problem 20.22: Determine the optimum value of load resistance for maximum power transfer if the load is connected to an amplifier of output resistance 150 ohm through a transformer with a turns ratio of 5:1..
+
+//initializing the variables:
+tr = 5; // turn ratio
+R1 = 150; // in Ohms
+
+//calculation:
+//The equivalent input resistance, R1 of the transformer needs to be 150 ohm for maximum power transfer.
+//R1 = RL*(tr^2)
+RL = R1/(tr^2)
+
+printf("\n\n Result \n\n")
+printf("\n the optimum value of load resistance is %.0f ohm", RL) \ No newline at end of file