From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 1223/CH15/EX15.13/Ex15_13.sce | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 1223/CH15/EX15.13/Ex15_13.sce (limited to '1223/CH15/EX15.13') diff --git a/1223/CH15/EX15.13/Ex15_13.sce b/1223/CH15/EX15.13/Ex15_13.sce new file mode 100755 index 000000000..207a5f139 --- /dev/null +++ b/1223/CH15/EX15.13/Ex15_13.sce @@ -0,0 +1,12 @@ +clear; +clc; +//Example 15.13 +Rl=10;//load resistance +Pl=20;//power delivered to the load +Ps=20;//(W) +Vp=sqrt(2*Rl*Pl); +printf('\npeak output voltage=%.2f V\n',Vp) +Ip=Vp/Rl; +printf('\npeak load current =%.2fA\n',Ip) +Vs=%pi*Rl*Ps/Vp; +printf('\nrequired supply voltage=%.2f V\n',Vs) -- cgit