diff options
Diffstat (limited to '608/CH35/EX35.07/35_07.sce')
-rwxr-xr-x | 608/CH35/EX35.07/35_07.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/608/CH35/EX35.07/35_07.sce b/608/CH35/EX35.07/35_07.sce new file mode 100755 index 000000000..7e57609a1 --- /dev/null +++ b/608/CH35/EX35.07/35_07.sce @@ -0,0 +1,13 @@ +//Problem 35.07: Determine the optimum value of load resistance for maximum power transfer if the load is connected to an amplifier of output resistance 448 ohm through a transformer with a turns ratio of 8:1.
+
+//initializing the variables:
+Ro = 448; // in ohm
+tr = 8; // turn ratio N1/N2
+
+//calculation:
+//The equivalent input resistance r of the transformer must be Ro for maximum power transfer.
+r = Ro
+RL = r*(1/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 |