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 --- 3809/CH13/EX13.4/EX13_4.sce | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 3809/CH13/EX13.4/EX13_4.sce (limited to '3809/CH13/EX13.4/EX13_4.sce') diff --git a/3809/CH13/EX13.4/EX13_4.sce b/3809/CH13/EX13.4/EX13_4.sce new file mode 100644 index 000000000..4580066df --- /dev/null +++ b/3809/CH13/EX13.4/EX13_4.sce @@ -0,0 +1,19 @@ +//Chapter 13, Example 13.1 + +clc +//Initialisation' +ri=10**3 //resistance in ohm +rs=100 //resistance in ohm +rl=50 //resistance in ohm +ro=10 //resistance in ohm +vs=2 //voltage +ao=10 //output gain + +//Calculation +vi=(ri/(rs+ri))*vs //input voltage +vo=ao*vi*(rl/(ro+rl)) //output voltage +po=vo**2/rl //output power in watt + +//Results +printf("Output Power = %.1f W",po) + -- cgit