summaryrefslogtreecommitdiff
path: root/3507/CH1/EX1.6/Ex1_6.sce
diff options
context:
space:
mode:
Diffstat (limited to '3507/CH1/EX1.6/Ex1_6.sce')
-rw-r--r--3507/CH1/EX1.6/Ex1_6.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/3507/CH1/EX1.6/Ex1_6.sce b/3507/CH1/EX1.6/Ex1_6.sce
new file mode 100644
index 000000000..d09f8b850
--- /dev/null
+++ b/3507/CH1/EX1.6/Ex1_6.sce
@@ -0,0 +1,17 @@
+//chapter1
+//example1.6
+//page14
+
+//for maximum power transfer, resistance of load and amplifier should match
+//so we take load=15 ohm
+
+Rl=15 // ohm
+Ri=15 // ohm
+V=12 // V
+
+Rt=Rl+Ri
+I=V/Rt
+P=I^2*Rl
+
+printf("for maximum power transfer load must equal amplifier resistance \nso required load = %d ohm\n \n",Rl)
+printf("power delivered to load = %.3f W",P)