From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 2459/CH1/EX1.6/Ex1_6.sce | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 2459/CH1/EX1.6/Ex1_6.sce (limited to '2459/CH1/EX1.6/Ex1_6.sce') diff --git a/2459/CH1/EX1.6/Ex1_6.sce b/2459/CH1/EX1.6/Ex1_6.sce new file mode 100644 index 000000000..d09f8b850 --- /dev/null +++ b/2459/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) -- cgit